Purge underscored header file barriers
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / control-devel.h
1 #ifndef DALI_TOOLKIT_CONTROL_DEVEL_H
2 #define DALI_TOOLKIT_CONTROL_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 // EXTERNAL INCLUDES
21 #include <dali/devel-api/adaptor-framework/input-method-context.h>
22
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/public-api/controls/control.h>
25 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 class TransitionData;
34
35 namespace Visual
36 {
37 class Base;
38 }
39
40 namespace DevelControl
41 {
42
43 enum State
44 {
45   NORMAL,
46   FOCUSED,
47   DISABLED
48 };
49
50 namespace Property
51 {
52
53 enum
54 {
55   STYLE_NAME        = Control::Property::STYLE_NAME,
56   BACKGROUND_COLOR  = Control::Property::BACKGROUND_COLOR,
57   BACKGROUND_IMAGE  = Control::Property::BACKGROUND_IMAGE,
58   KEY_INPUT_FOCUS   = Control::Property::KEY_INPUT_FOCUS,
59   BACKGROUND        = Control::Property::BACKGROUND,
60   MARGIN            = Control::Property::MARGIN,
61   PADDING           = Control::Property::PADDING,
62
63   /**
64    * @brief Displays a tooltip when the control is hovered over.
65    * @details Name "tooltip", type Property::STRING, Property::ARRAY or Property::MAP.
66    *          If Property::STRING, then the style specified in the stylesheet is used.
67    *          If Property::ARRAY of Visuals then all are displayed in one row.
68    *          If Property::MAP, then it should be a map of Tooltip properties.
69    * @note The tooltip is only activated if display content is received, i.e. a string (text) or visual to show.
70    *       The rest is used to just build up the style of the tooltip (i.e. background, text color/point-size etc.)
71    * @note When retrieved, a Property::MAP is returned.
72    * @see Toolkit::Tooltip
73    */
74   TOOLTIP = PADDING + 1,
75
76   /**
77    * @brief The current state of the control.
78    * @details Name "state", type DevelControl::State ( Property::INTEGER ) or Property::STRING
79    *
80    * @see DevelControl::State
81    */
82   STATE = PADDING + 2,
83
84   /**
85    * @brief The current sub state of the control.
86    * @details Name "subState", type Property::INTEGER or Property::STRING. The enumeration used is dependent on the derived control.
87    *
88    * @see DevelControl::State
89    */
90   SUB_STATE = PADDING + 3,
91
92   /**
93    * @brief The actor ID of the left focusable control.
94    * @details Name "leftFocusableActorId", type Property::INTEGER.
95    *
96    */
97   LEFT_FOCUSABLE_ACTOR_ID = PADDING + 4,
98
99   /**
100    * @brief The actor ID of the right focusable control.
101    * @details Name "rightFocusableActorId", type Property::INTEGER.
102    *
103    */
104   RIGHT_FOCUSABLE_ACTOR_ID = PADDING + 5,
105
106   /**
107    * @brief The actor ID of the up focusable control.
108    * @details Name "upFocusableActorId", type Property::INTEGER.
109    *
110    */
111   UP_FOCUSABLE_ACTOR_ID = PADDING + 6,
112
113   /**
114    * @brief The actor ID of the down focusable control.
115    * @details Name "downFocusableActorId", type Property::INTEGER.
116    *
117    */
118   DOWN_FOCUSABLE_ACTOR_ID = PADDING + 7
119 };
120
121 } // namespace Property
122
123 /**
124  * @brief Register a visual by Property Index.
125  *
126  * @param[in] control The control
127  * @param[in] index The Property index of the visual, used to reference visual
128  * @param[in] visual The visual to register
129  *
130  * @note Derived class should not call visual.SetOnStage(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage.
131  *       Use below API with enabled set to false if derived class wishes to control when visual is staged.
132  * @note If the depth-index is not set on the visual, then it is set to be above the currently registered visuals.
133  * @note If replacing a visual, then the depth-index of the visual being replaced is used for the visual.
134  */
135 DALI_TOOLKIT_API void RegisterVisual( Internal::Control& control, Dali::Property::Index index, Toolkit::Visual::Base& visual );
136
137 /**
138  * @brief Register a visual by Property Index with a depth index.
139  *
140  * @param[in] control The control
141  * @param[in] index The Property index of the visual, used to reference visual
142  * @param[in] visual The visual to register
143  * @param[in] depthIndex The visual's depth-index is set to this
144  *
145  * @note Derived class should not call visual.SetOnStage(actor). It is the responsibility of the base class to connect/disconnect registered visual to stage.
146  *       Use below API with enabled set to false if derived class wishes to control when visual is staged.
147  *
148  * @see Visual::Base::GetDepthIndex()
149  * @see Visual::Base::SetDepthIndex()
150  */
151 DALI_TOOLKIT_API void RegisterVisual( Internal::Control& control, Dali::Property::Index index, Toolkit::Visual::Base& visual, int depthIndex );
152
153 /**
154  * @brief Register a visual by Property Index with the option of enabling/disabling it.
155  *
156  * @param[in] control The control
157  * @param[in] index The Property index of the visual, used to reference visual
158  * @param[in] visual The visual to register
159  * @param[in] enabled false if derived class wants to control when visual is set on stage.
160  *
161  * @note If the depth-index is not set on the visual, then it is set to be above the currently registered visuals.
162  * @note If replacing a visual, then the depth-index of the visual being replaced is used for the visual.
163  *
164  * @see EnableVisual()
165  */
166 DALI_TOOLKIT_API void RegisterVisual( Internal::Control& control, Dali::Property::Index index, Toolkit::Visual::Base& visual, bool enabled );
167
168 /**
169  * @brief Register a visual by Property Index with a depth index with the option of enabling/disabling it.
170  *
171  * @param[in] control The control
172  * @param[in] index The Property index of the visual, used to reference visual
173  * @param[in] visual The visual to register
174  * @param[in] enabled false if derived class wants to control when visual is set on stage.
175  * @param[in] depthIndex The visual's depth-index is set to this
176  *
177  * @see EnableVisual()
178  * @see Visual::Base::GetDepthIndex()
179  * @see Visual::Base::SetDepthIndex()
180  */
181 DALI_TOOLKIT_API void RegisterVisual( Internal::Control& control, Dali::Property::Index index, Toolkit::Visual::Base& visual, bool enabled, int depthIndex );
182
183 /**
184  * @brief Erase the entry matching the given index from the list of registered visuals
185  *
186  * @param[in] control The control
187  * @param[in] index The Property index of the visual, used to reference visual
188  */
189 DALI_TOOLKIT_API void UnregisterVisual( Internal::Control& control, Dali::Property::Index index );
190
191 /**
192  * @brief Retrieve the visual associated with the given property index.
193  *
194  * @param[in] control The control
195  * @param[in] index The Property index of the visual.
196  * @return The registered visual if exist, otherwise empty handle.
197  * @note For managing object life-cycle, do not store the returned visual as a member which increments its reference count.
198  */
199 DALI_TOOLKIT_API Toolkit::Visual::Base GetVisual( const Internal::Control& control, Dali::Property::Index index );
200
201 /**
202  * @brief Sets the given visual to be displayed or not when parent staged.
203  *
204  * @param[in] control The control
205  * @param[in] index The Property index of the visual
206  * @param[in] enable flag to set enabled or disabled.
207  */
208 DALI_TOOLKIT_API void EnableVisual( Internal::Control& control, Dali::Property::Index index, bool enable );
209
210 /**
211  * @brief Queries if the given visual is to be displayed when parent staged.
212  *
213  * @param[in] control The control
214  * @param[in] index The Property index of the visual
215  * @return bool whether visual is enabled or not
216  */
217 DALI_TOOLKIT_API bool IsVisualEnabled( const Internal::Control& control, Dali::Property::Index index );
218
219
220 /**
221  * @brief Add a transition effect on the control to the given animation
222  *
223  * Only generates an animator if the properties described in the transition
224  * data are staged (e.g. the visual is Enabled and the control is on stage).
225  * Otherwise the target values are stored, and will get set onto the properties
226  * when the visual is next staged.
227  *
228  * @param[in] control The control
229  * @param[in] animation The Animation to add valid transitions to
230  * @param[in] transitionData The transition data describing the effect to create
231  */
232 DALI_TOOLKIT_API void AddTransitions( Internal::Control& control,
233                                       Dali::Animation animation,
234                                       const Toolkit::TransitionData& transitionData );
235
236 /**
237  * @brief Create a transition effect on the control.
238  *
239  * Only generates an animation if the properties described in the transition
240  * data are staged (e.g. the visual is Enabled and the control is on stage).
241  * Otherwise the target values are stored, and will get set onto the properties
242  * when the visual is next staged.
243  *
244  * @param[in] control The control
245  * @param[in] transitionData The transition data describing the effect to create
246  * @return A handle to an animation defined with the given effect, or an empty
247  * handle if no properties match.
248  */
249 DALI_TOOLKIT_API Dali::Animation CreateTransition( Internal::Control& control,
250                                                    const Toolkit::TransitionData& transitionData );
251
252 /**
253  * @brief Perform an action on a visual registered to this control.
254  *
255  * Visuals will have actions, this API is used to perform one of these actions with the given attributes.
256  *
257  * @param[in] control The control.
258  * @param[in] visualIndex The Property index of the visual.
259  * @param[in] actionId The action to perform.  See Visual to find supported actions.
260  * @param[in] attributes Optional attributes for the action.
261  */
262 DALI_TOOLKIT_API void DoAction( Control& control, Dali::Property::Index visualIndex, Dali::Property::Index actionId, const Dali::Property::Value attributes );
263
264 /**
265  * @brief Set input method context.
266  *
267  * @param[in] control The control.
268  * @param[in] inputMethodContext The input method context.
269  */
270 DALI_TOOLKIT_API void SetInputMethodContext( Internal::Control& control, InputMethodContext& inputMethodContext );
271
272 /**
273  * @brief Visual Event signal type
274  */
275 using VisualEventSignalType = Signal< void ( Control, Dali::Property::Index, Dali::Property::Index ) >;
276
277 /**
278  * @brief This signal is emitted when a visual has an event to notify.
279  *
280  * A callback of the following type may be connected:
281  * @code
282  *   void YourCallbackName( Control control, Dali::Property::Index visualIndex, Dali::Property::Index signalId );
283  * @endcode
284  * @return The signal to connect to
285  */
286 DALI_TOOLKIT_API VisualEventSignalType& VisualEventSignal( Control control );
287
288 } // namespace DevelControl
289
290 } // namespace Toolkit
291
292 } // namespace Dali
293
294 #endif // DALI_TOOLKIT_CONTROL_DEVEL_H