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