[dali_2.3.19] 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) 2020 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 namespace Toolkit
27 {
28 namespace DevelButton
29 {
30 namespace Property
31 {
32 enum Type
33 {
34   /**
35        * @brief name "labelRelativeAlignment", type STRING
36        * @details Sets the position of the the label in relation to the foreground/icon if both present
37        */
38   LABEL_RELATIVE_ALIGNMENT = Dali::Toolkit::Button::Property::DISABLED_SELECTED_BACKGROUND_VISUAL + 1,
39
40   /**
41        * @brief name "labelPadding", type Vector4
42        * @details Sets the padding around the text
43        */
44   LABEL_PADDING,
45
46   /**
47        * @brief name "visualPadding", type Vector4
48        * @details Sets the padding around the foreground visual
49        */
50   VISUAL_PADDING
51 };
52 } // namespace Property
53
54 } // namespace DevelButton
55
56 } // namespace Toolkit
57
58 } // namespace Dali
59
60 #endif // DALI_TOOLKIT_BUTTON_DEVEL_H