da4b730cbe420cb351d1d9df6291ef8b076fa6f1
[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) 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 // EXTERNAL INCLUDES
21 #include <dali/devel-api/adaptor-framework/input-method-context.h>
22
23 // INTERNAL INCLUDES
24 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
25 #include <dali-toolkit/public-api/controls/control.h>
26
27 namespace Dali
28 {
29 namespace Toolkit
30 {
31 class TransitionData;
32
33 namespace Visual
34 {
35 class Base;
36 }
37
38 namespace DevelControl
39 {
40 enum State
41 {
42   NORMAL,
43   FOCUSED,
44   DISABLED
45 };
46
47 namespace Property
48 {
49 enum
50 {
51   STYLE_NAME      = Control::Property::STYLE_NAME,
52   KEY_INPUT_FOCUS = Control::Property::KEY_INPUT_FOCUS,
53   BACKGROUND      = Control::Property::BACKGROUND,
54   MARGIN          = Control::Property::MARGIN,
55   PADDING         = Control::Property::PADDING,
56
57   /**
58    * @brief Displays a tooltip when the control is hovered over.
59    * @details Name "tooltip", type Property::STRING, Property::ARRAY or Property::MAP.
60    *          If Property::STRING, then the style specified in the stylesheet is used.
61    *          If Property::ARRAY of Visuals then all are displayed in one row.
62    *          If Property::MAP, then it should be a map of Tooltip properties.
63    * @note The tooltip is only activated if display content is received, i.e. a string (text) or visual to show.
64    *       The rest is used to just build up the style of the tooltip (i.e. background, text color/point-size etc.)
65    * @note When retrieved, a Property::MAP is returned.
66    * @see Toolkit::Tooltip
67    */
68   TOOLTIP = PADDING + 1,
69
70   /**
71    * @brief The current state of the control.
72    * @details Name "state", type DevelControl::State ( Property::INTEGER ) or Property::STRING
73    *
74    * @see DevelControl::State
75    */
76   STATE = PADDING + 2,
77
78   /**
79    * @brief The current sub state of the control.
80    * @details Name "subState", type Property::INTEGER or Property::STRING. The enumeration used is dependent on the derived control.
81    *
82    * @see DevelControl::State
83    */
84   SUB_STATE = PADDING + 3,
85
86   /**
87    * @brief The actor ID of the left focusable control.
88    * @details Name "leftFocusableActorId", type Property::INTEGER.
89    *
90    */
91   LEFT_FOCUSABLE_ACTOR_ID = PADDING + 4,
92
93   /**
94    * @brief The actor ID of the right focusable control.
95    * @details Name "rightFocusableActorId", type Property::INTEGER.
96    *
97    */
98   RIGHT_FOCUSABLE_ACTOR_ID = PADDING + 5,
99
100   /**
101    * @brief The actor ID of the up focusable control.
102    * @details Name "upFocusableActorId", type Property::INTEGER.
103    *
104    */
105   UP_FOCUSABLE_ACTOR_ID = PADDING + 6,
106
107   /**
108    * @brief The actor ID of the down focusable control.
109    * @details Name "downFocusableActorId", type Property::INTEGER.
110    *
111    */
112   DOWN_FOCUSABLE_ACTOR_ID = PADDING + 7,
113
114   /**
115    * @brief The shadow of the control.
116    * @details Name "shadow", type Property::MAP.
117    */
118   SHADOW = PADDING + 8
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.SetOnScene(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.SetOnScene(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  * @brief Add a transition effect on the control to the given animation
221  *
222  * Only generates an animator if the properties described in the transition
223  * data are staged (e.g. the visual is Enabled and the control is on stage).
224  * Otherwise the target values are stored, and will get set onto the properties
225  * when the visual is next staged.
226  *
227  * @param[in] control The control
228  * @param[in] animation The Animation to add valid transitions to
229  * @param[in] transitionData The transition data describing the effect to create
230  */
231 DALI_TOOLKIT_API void AddTransitions(Internal::Control&             control,
232                                      Dali::Animation                animation,
233                                      const Toolkit::TransitionData& transitionData);
234
235 /**
236  * @brief Create a transition effect on the control.
237  *
238  * Only generates an animation if the properties described in the transition
239  * data are staged (e.g. the visual is Enabled and the control is on stage).
240  * Otherwise the target values are stored, and will get set onto the properties
241  * when the visual is next staged.
242  *
243  * @param[in] control The control
244  * @param[in] transitionData The transition data describing the effect to create
245  * @return A handle to an animation defined with the given effect, or an empty
246  * handle if no properties match.
247  */
248 DALI_TOOLKIT_API Dali::Animation CreateTransition(Internal::Control&             control,
249                                                   const Toolkit::TransitionData& transitionData);
250
251 /**
252  * @brief Perform an action on a visual registered to this control.
253  *
254  * Visuals will have actions, this API is used to perform one of these actions with the given attributes.
255  *
256  * @param[in] control The control.
257  * @param[in] visualIndex The Property index of the visual.
258  * @param[in] actionId The action to perform.  See Visual to find supported actions.
259  * @param[in] attributes Optional attributes for the action.
260  */
261 DALI_TOOLKIT_API void DoAction(Control& control, Dali::Property::Index visualIndex, Dali::Property::Index actionId, const Dali::Property::Value attributes);
262
263 /**
264  * @brief Set input method context.
265  *
266  * @param[in] control The control.
267  * @param[in] inputMethodContext The input method context.
268  */
269 DALI_TOOLKIT_API void SetInputMethodContext(Internal::Control& control, InputMethodContext& inputMethodContext);
270
271 /**
272  * @brief Visual Event signal type
273  */
274 using VisualEventSignalType = Signal<void(Control, Dali::Property::Index, Dali::Property::Index)>;
275
276 /**
277  * @brief This signal is emitted when a visual has an event to notify.
278  *
279  * A callback of the following type may be connected:
280  * @code
281  *   void YourCallbackName( Control control, Dali::Property::Index visualIndex, Dali::Property::Index signalId );
282  * @endcode
283  * @return The signal to connect to
284  */
285 DALI_TOOLKIT_API VisualEventSignalType& VisualEventSignal(Control control);
286
287 } // namespace DevelControl
288
289 } // namespace Toolkit
290
291 } // namespace Dali
292
293 #endif // DALI_TOOLKIT_CONTROL_DEVEL_H