GridLayout example
[platform/core/uifw/dali-demo.git] / examples / layouting / padding-example.h
1 #ifndef DALI_DEMO_PADDING_EXAMPLE_H
2 #define DALI_DEMO_PADDING_EXAMPLE_H
3
4 /*
5  * Copyright (c) 2018 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
25 #include "example.h"
26
27 using namespace Dali;
28 using namespace Dali::Toolkit;
29
30 namespace Demo
31 {
32
33 /**
34  * @file padding-example.hcpp
35  * @brief Example of a Linear Layout with padding applied, enables updating of padding values for
36  * one of the children.
37  */
38 class PaddingExample final: public ConnectionTracker, public Example
39 {
40 public:
41
42   static const unsigned int NUMBER_OF_IMAGE_VIEWS = 3;
43
44   // Constructor
45   PaddingExample();
46
47   // Create a Linear layout of ImagesViews, one with a Margin, One with padding.
48   void Create() override;
49
50   // Remove created Layout
51   void Remove() override;
52
53 private:
54
55   // Change Paddding callback
56   bool ChangePaddingClicked( Toolkit::Button button );
57
58 private:
59
60   Toolkit::Control           mHorizontalBox;
61   Toolkit::ImageView         mImageViews[ NUMBER_OF_IMAGE_VIEWS ];
62   bool                       mImageViewToggleStatus[ NUMBER_OF_IMAGE_VIEWS ];
63   Toolkit::PushButton        mToggleButton;
64
65 };
66
67 } // namespace Demo
68
69 #endif // DALI_DEMO_PADDING_EXAMPLE_H