[dali_1.4.32] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / buttons / button-devel.h
1 #ifndef DALI_TOOLKIT_BUTTON_DEVEL_H
2 #define DALI_TOOLKIT_BUTTON_DEVEL_H
3
4 /*
5  * Copyright (c) 2019 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 // INTERNAL INCLUDES
22 #include <dali-toolkit/public-api/controls/buttons/button.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace DevelButton
31 {
32   namespace Property
33   {
34     enum Type
35     {
36       /**
37        * @brief name "labelRelativeAlignment", type STRING
38        * @details Sets the position of the the label in relation to the foreground/icon if both present
39        */
40       LABEL_RELATIVE_ALIGNMENT = Dali::Toolkit::Button::Property::DISABLED_SELECTED_BACKGROUND_VISUAL + 1,
41
42       /**
43        * @brief name "labelPadding", type Vector4
44        * @details Sets the padding around the text
45        */
46       LABEL_PADDING,
47
48       /**
49        * @brief name "visualPadding", type Vector4
50        * @details Sets the padding around the foreground visual
51        */
52       VISUAL_PADDING
53     };
54   } // namespace Property
55
56 } // namespace DevelButton
57
58 } // namespace Toolkit
59
60 } // namespace Dali
61
62 #endif // DALI_TOOLKIT_BUTTON_DEVEL_H