ef247f881f77b8ebba1d8e8ea1d4b25a99a48c96
[platform/core/uifw/dali-demo.git] / examples / layouting / absolute-example.h
1 #ifndef DALI_DEMO_ABSOLUTE_EXAMPLE_H
2 #define DALI_DEMO_ABSOLUTE_EXAMPLE_H
3
4 /*
5  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 #include <string>
22 #include <dali/dali.h>
23 #include <dali-toolkit/dali-toolkit.h>
24 #include "example.h"
25
26 using namespace Dali;
27 using namespace Dali::Toolkit;
28
29 namespace Demo
30 {
31
32 /**
33  * @file absolute-example.hcpp
34  * @brief Example of a Linear Layout with padding applied, enables updating of padding values for
35  * one of the children.
36  */
37 class AbsoluteExample final: public ConnectionTracker, public Example
38 {
39 public:
40   static const unsigned int NUMBER_OF_IMAGE_VIEWS = 4;
41
42   // Constructor
43   AbsoluteExample();
44
45   // Creates a Absolute Layout Example and displays it.
46   virtual void Create() override;
47
48   // Remove and destroy this layout
49   virtual void Remove() override;
50
51 private:
52
53   // Callback when change size button is pressed
54   bool ChangeSizeClicked( Toolkit::Button button );
55
56 private:
57
58   Toolkit::Control           mRootLayoutControl;
59   Toolkit::Control           mAbsoluteLayoutContainer;
60   Toolkit::ImageView         mImageViews[ NUMBER_OF_IMAGE_VIEWS ];
61   bool                       mLayoutSizeToggleStatus;
62   Toolkit::PushButton        mToggleButton;
63 };
64
65 } // namespace Demo
66
67 #endif // DALI_DEMO_ABSOLUTE_EXAMPLE_H