1 #ifndef DALI_DEMO_ABSOLUTE_EXAMPLE_H
2 #define DALI_DEMO_ABSOLUTE_EXAMPLE_H
5 * Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
22 #include <dali/dali.h>
23 #include <dali-toolkit/dali-toolkit.h>
27 using namespace Dali::Toolkit;
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.
37 class AbsoluteExample: public ConnectionTracker, public Example
40 static const unsigned int NUMBER_OF_IMAGE_VIEWS = 4;
44 // Creates a Absolute Layout Example and displays it.
45 virtual void Create() override;
47 // Remove and destroy this layout
48 virtual void Remove() override;
53 // Callback when change size button is pressed
54 bool ChangeSizeClicked( Toolkit::Button button );
58 Toolkit::Control mRootLayoutControl;
59 Toolkit::Control mAbsoluteLayoutContainer;
60 Toolkit::ImageView mImageViews[ NUMBER_OF_IMAGE_VIEWS ];
61 bool mLayoutSizeToggleStatus;
62 Toolkit::PushButton mToggleButton;
67 #endif // DALI_DEMO_ABSOLUTE_EXAMPLE_H