(Layouting) Made it easier to add new layouting examples & toggle between all
[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   // Create a Linear layout of ImagesViews, one with a Margin, One with padding.
45   void Create() override;
46
47   // Remove created Layout
48   void Remove() override;
49
50 private:
51
52   // Change Paddding callback
53   bool ChangePaddingClicked( Toolkit::Button button );
54
55 private:
56
57   Toolkit::Control           mHorizontalBox;
58   Toolkit::ImageView         mImageViews[ NUMBER_OF_IMAGE_VIEWS ];
59   bool                       mImageViewToggleStatus[ NUMBER_OF_IMAGE_VIEWS ];
60   Toolkit::PushButton        mToggleButton;
61
62 };
63
64 } // namespace Demo
65
66 #endif // DALI_DEMO_PADDING_EXAMPLE_H