[dali_1.2.23] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / visuals / visual-properties-devel.h
1 #ifndef DALI_TOOLKIT_DEVEL_API_VISUALS_VISUAL_PROPERTIES_DEVEL_H
2 #define DALI_TOOLKIT_DEVEL_API_VISUALS_VISUAL_PROPERTIES_DEVEL_H
3
4 /*
5  * Copyright (c) 2016 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/visuals/visual-properties.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace DevelVisual
31 {
32
33 /**
34  * @brief All the visual types.
35  */
36 enum Type
37 {
38   BORDER    = Dali::Toolkit::Visual::BORDER,
39   COLOR     = Dali::Toolkit::Visual::COLOR,
40   GRADIENT  = Dali::Toolkit::Visual::GRADIENT,
41   IMAGE     = Dali::Toolkit::Visual::IMAGE,
42   MESH      = Dali::Toolkit::Visual::MESH,
43   PRIMITIVE = Dali::Toolkit::Visual::PRIMITIVE,
44   WIREFRAME = Dali::Toolkit::Visual::WIREFRAME,
45
46   TEXT      = WIREFRAME + 1, ///< Renders text.
47 };
48
49 namespace Property
50 {
51
52 enum Type
53 {
54   TYPE   = Dali::Toolkit::Visual::Property::TYPE,
55   SHADER = Dali::Toolkit::Visual::Property::SHADER,
56
57   /**
58    * @brief The transform used by the visual.
59    * @details Name "transform", type Property::Map.
60    *
61    * @note Optional.
62    * @see DevelVisual::Transform::Property
63    */
64   TRANSFORM = SHADER + 1,
65
66   /**
67    * @brief Enables/disables premultiplied alpha.
68    * The premultiplied alpha is false by default unless this behaviour is modified
69    * by the derived Visual type.
70    *
71    * @details Name "premultipliedAlpha", type Property::Boolean.
72    *
73    * @note Optional.
74    */
75   PREMULTIPLIED_ALPHA = SHADER + 2,
76
77   /**
78    * @brief Mix color is a blend color for any visual.
79    * @details Name "mixColor", type Property::VECTOR4
80    *
81    * @note Optional
82    */
83   MIX_COLOR = SHADER + 3,
84 };
85
86 } //namespace Property
87
88 namespace Transform
89 {
90
91 namespace Property
92 {
93
94 enum Type
95 {
96   /**
97    * @brief Offset of the visual. It can be either relative (percentage of the parent)
98    * or absolute (in world units).
99    * @details Name "offset", type Property::VECTOR2
100    */
101   OFFSET,
102
103   /**
104    * @brief Size of the visual. It can be either relative (percentage of the parent)
105    * or absolute (in world units).
106    * @details Name "size", type Property::VECTOR2
107    */
108   SIZE,
109
110   /**
111    * @brief The origin of the visual within its control area.
112    * @details Name "origin", type Align::Type (Property::INTEGER) or Property::STRING.
113    * @see Toolkit::Align
114    */
115   ORIGIN,
116
117   /**
118    * @brief The anchor-point of the visual
119    * @details Name "anchorPoint", type Align::Type (Property::INTEGER) or Property::STRING.
120    * @see Toolkit::Align
121    */
122   ANCHOR_POINT,
123
124   /**
125    * @brief Indicates which components of the offset and size are relative
126    * (percentage of the parent) or absolute (in world units).
127    * 0 indicates the component is relative, and 1 absolute.
128    * @details Name "offsetSizeMode", type Property::VECTOR4
129    */
130   OFFSET_SIZE_MODE
131 };
132
133 } //namespace Property
134
135 } // namespace Transform
136
137 } // namespace DevelVisual
138
139 } // namespace Toolkit
140
141 } // namespace Dali
142
143 #endif // DALI_TOOLKIT_DEVEL_API_VISUALS_VISUAL_PROPERTIES_DEVEL_H