Merge "Fixed a problem where text size exceeds maximum texture size." into devel...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / control / control-data-impl.h
1 #ifndef DALI_TOOLKIT_CONTROL_DATA_IMPL_H
2 #define DALI_TOOLKIT_CONTROL_DATA_IMPL_H
3
4 /*
5  * Copyright (c) 2017 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 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry.h>
23 #include <dali-toolkit/devel-api/controls/control-devel.h>
24 #include <string>
25
26 // INTERNAL INCLUDES
27 #include <dali-toolkit/internal/visuals/visual-resource-observer.h>
28 #include <dali-toolkit/public-api/controls/control-impl.h>
29 #include <dali/devel-api/common/owner-container.h>
30 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
31 #include <dali-toolkit/internal/controls/tooltip/tooltip.h>
32 #include <dali-toolkit/internal/builder/style.h>
33 #include <dali-toolkit/internal/builder/dictionary.h>
34
35 namespace Dali
36 {
37
38 namespace Toolkit
39 {
40
41 namespace Internal
42 {
43
44  /**
45   * Struct used to store Visual within the control, index is a unique key for each visual.
46   */
47 struct RegisteredVisual
48 {
49   Property::Index index;
50   Toolkit::Visual::Base visual;
51   bool enabled : 1;
52   bool pending : 1;
53
54   RegisteredVisual( Property::Index aIndex, Toolkit::Visual::Base &aVisual, bool aEnabled, bool aPendingReplacement )
55   : index(aIndex), visual(aVisual), enabled(aEnabled), pending( aPendingReplacement )
56   {
57   }
58 };
59
60 typedef Dali::OwnerContainer< RegisteredVisual* > RegisteredVisualContainer;
61
62
63 /**
64  * @brief Holds the Implementation for the internal control class
65  */
66 class Control::Impl : public ConnectionTracker, public Visual::ResourceObserver
67 {
68
69 public:
70
71   /**
72    * @brief Retrieves the implementation of the internal control class.
73    * @param[in] internalControl A ref to the control whose internal implementation is required
74    * @return The internal implementation
75    */
76   static Control::Impl& Get( Internal::Control& internalControl );
77
78   /**
79    * @copydoc Get( Internal::Control& )
80    */
81   static const Control::Impl& Get( const Internal::Control& internalControl );
82
83   /**
84    * @brief Constructor.
85    * @param[in] controlImpl The control which own this implementation
86    */
87   Impl( Control& controlImpl );
88
89   /**
90    * @brief Destructor.
91    */
92   ~Impl();
93
94   /**
95    * @brief Called when a pinch is detected.
96    * @param[in] actor The actor the pinch occurred on
97    * @param[in] pinch The pinch gesture details
98    */
99   void PinchDetected(Actor actor, const PinchGesture& pinch);
100
101   /**
102    * @brief Called when a pan is detected.
103    * @param[in] actor The actor the pan occurred on
104    * @param[in] pinch The pan gesture details
105    */
106   void PanDetected(Actor actor, const PanGesture& pan);
107
108   /**
109    * @brief Called when a tap is detected.
110    * @param[in] actor The actor the tap occurred on
111    * @param[in] pinch The tap gesture details
112    */
113   void TapDetected(Actor actor, const TapGesture& tap);
114
115   /**
116    * @brief Called when a long-press is detected.
117    * @param[in] actor The actor the long-press occurred on
118    * @param[in] pinch The long-press gesture details
119    */
120   void LongPressDetected(Actor actor, const LongPressGesture& longPress);
121
122   /**
123    * @brief Called when a resource is ready.
124    * @param[in] object The visual whose resources are ready
125    * @note Overriding method in Visual::ResourceObserver.
126    */
127   virtual void ResourceReady( Visual::Base& object );
128
129   /**
130    * @copydoc Dali::Toolkit::DevelControl::RegisterVisual()
131    */
132   void RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual );
133
134   /**
135    * @copydoc Dali::Toolkit::DevelControl::RegisterVisual()
136    */
137   void RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, int depthIndex );
138
139   /**
140    * @copydoc Dali::Toolkit::DevelControl::RegisterVisual()
141    */
142   void RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled );
143
144   /**
145    * @copydoc Dali::Toolkit::DevelControl::RegisterVisual()
146    */
147   void RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, bool enabled, int depthIndex );
148
149   /**
150    * @copydoc Dali::Toolkit::DevelControl::UnregisterVisual()
151    */
152   void UnregisterVisual( Property::Index index );
153
154   /**
155    * @copydoc Dali::Toolkit::DevelControl::GetVisual()
156    */
157   Toolkit::Visual::Base GetVisual( Property::Index index ) const;
158
159   /**
160    * @copydoc Dali::Toolkit::DevelControl::EnableVisual()
161    */
162   void EnableVisual( Property::Index index, bool enable );
163
164   /**
165    * @copydoc Dali::Toolkit::DevelControl::IsVisualEnabled()
166    */
167   bool IsVisualEnabled( Property::Index index ) const;
168
169   /**
170    * @brief Stops observing the given visual.
171    * @param[in] visual The visual to stop observing
172    */
173   void StopObservingVisual( Toolkit::Visual::Base& visual );
174
175   /**
176    * @brief Starts observing the given visual.
177    * @param[in] visual The visual to start observing
178    */
179   void StartObservingVisual( Toolkit::Visual::Base& visual);
180
181   /**
182    * @copydoc Dali::Toolkit::DevelControl::CreateTransition()
183    */
184   Dali::Animation CreateTransition( const Toolkit::TransitionData& transitionData );
185
186   /**
187    * @brief Function used to set control properties.
188    * @param[in] object The object whose property to set
189    * @param[in] index The index of the property to set
190    * @param[in] value The value of the property to set
191    */
192   static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value );
193
194   /**
195    * @brief Function used to retrieve the value of control properties.
196    * @param[in] object The object whose property to get
197    * @param[in] index The index of the property to get
198    * @return The value of the property
199    */
200   static Property::Value GetProperty( BaseObject* object, Property::Index index );
201
202   /**
203    * @brief Sets the state of the control.
204    * @param[in] newState The state to set
205    * @param[in] withTransitions Whether to show a transition when changing to the new state
206    */
207   void SetState( DevelControl::State newState, bool withTransitions=true );
208
209   /**
210    * @brief Sets the sub-state of the control.
211    * @param[in] newState The sub-state to set
212    * @param[in] withTransitions Whether to show a transition when changing to the new sub-state
213    */
214   void SetSubState( const std::string& subStateName, bool withTransitions=true );
215
216   /**
217    * @brief Replaces visuals and properties from the old state to the new state.
218    * @param[in] oldState The old state
219    * @param[in] newState The new state
220    * @param[in] subState The current sub state
221    */
222   void ReplaceStateVisualsAndProperties( const StylePtr oldState, const StylePtr newState, const std::string& subState );
223
224   /**
225    * @brief Removes a visual from the control's container.
226    * @param[in] visuals The container of visuals
227    * @param[in] visualName The name of the visual to remove
228    */
229   void RemoveVisual( RegisteredVisualContainer& visuals, const std::string& visualName );
230
231   /**
232    * @brief Removes several visuals from the control's container.
233    * @param[in] visuals The container of visuals
234    * @param[in] removeVisuals The visuals to remove
235    */
236   void RemoveVisuals( RegisteredVisualContainer& visuals, DictionaryKeys& removeVisuals );
237
238   /**
239    * @brief Copies the visual properties that are specific to the control instance into the instancedProperties container.
240    * @param[in] visuals The control's visual container
241    * @param[out] instancedProperties The instanced properties are added to this container
242    */
243   void CopyInstancedProperties( RegisteredVisualContainer& visuals, Dictionary<Property::Map>& instancedProperties );
244
245   /**
246    * @brief On state change, ensures visuals are moved or created appropriately.
247    *
248    * Go through the list of visuals that are common to both states.
249    * If they are different types, or are both image types with different
250    * URLs, then the existing visual needs moving and the new visual needs creating
251    *
252    * @param[in] stateVisualsToChange The visuals to change
253    * @param[in] instancedProperties The instanced properties @see CopyInstancedProperties
254    */
255   void RecreateChangedVisuals( Dictionary<Property::Map>& stateVisualsToChange, Dictionary<Property::Map>& instancedProperties );
256
257   /**
258    * @brief Whether the resource is ready
259    * @return True if the resource is read.
260    */
261   bool IsResourceReady() const;
262
263   /**
264    * @copydoc CustomActorImpl::OnStageDisconnection()
265    */
266   void OnStageDisconnection();
267
268   /**
269    * @brief Sets the margin.
270    * @param[in] margin Margin is a collections of extent ( start, end, top, bottom )
271    */
272   void SetMargin( Extents margin );
273
274   /**
275    * @brief Returns the value of margin
276    * @return The value of margin
277    */
278   Extents GetMargin() const;
279
280   /**
281    * @brief Sets the padding.
282    * @param[in] padding Padding is a collections of extent ( start, end, top, bottom ).
283    */
284   void SetPadding( Extents padding );
285
286   /**
287    * @brief Returns the value of padding
288    * @return The value of padding
289    */
290   Extents GetPadding() const;
291
292 private:
293
294   /**
295    * Used as an alternative to boolean so that it is obvious whether a visual is enabled/disabled.
296    */
297   struct VisualState
298   {
299     enum Type
300     {
301       DISABLED = 0, ///< Visual disabled.
302       ENABLED = 1   ///< Visual enabled.
303     };
304   };
305
306   /**
307    * Used as an alternative to boolean so that it is obvious whether a visual's depth value has been set or not by the caller.
308    */
309   struct DepthIndexValue
310   {
311     enum Type
312     {
313       NOT_SET = 0, ///< Visual depth value not set by caller.
314       SET = 1      ///< Visual depth value set by caller.
315     };
316   };
317
318   /**
319    * @brief Adds the visual to the list of registered visuals.
320    * @param[in] index The Property index of the visual, used to reference visual
321    * @param[in,out] visual The visual to register, which can be altered in this function
322    * @param[in] enabled false if derived class wants to control when visual is set on stage
323    * @param[in] depthIndexValueSet Set to true if the depthIndex has actually been set manually
324    * @param[in] depthIndex The visual's depth-index is set to this
325    *
326    * @note Registering a visual with an index that already has a registered visual will replace it. The replacement will
327    *       occur once the replacement visual is ready (loaded).
328    */
329   void RegisterVisual( Property::Index index, Toolkit::Visual::Base& visual, VisualState::Type enabled, DepthIndexValue::Type depthIndexValueSet, int depthIndex = 0 );
330
331 public:
332
333   Control& mControlImpl;
334   DevelControl::State mState;
335   std::string mSubStateName;
336
337   int mLeftFocusableActorId;       ///< Actor ID of Left focusable control.
338   int mRightFocusableActorId;      ///< Actor ID of Right focusable control.
339   int mUpFocusableActorId;         ///< Actor ID of Up focusable control.
340   int mDownFocusableActorId;       ///< Actor ID of Down focusable control.
341
342   RegisteredVisualContainer mVisuals;     ///< Stores visuals needed by the control, non trivial type so std::vector used.
343   std::string mStyleName;
344   Vector4 mBackgroundColor;               ///< The color of the background visual
345   Vector3* mStartingPinchScale;           ///< The scale when a pinch gesture starts, TODO: consider removing this
346   Extents mMargin;                        ///< The margin values
347   Extents mPadding;                       ///< The padding values
348   Toolkit::Control::KeyEventSignalType mKeyEventSignal;
349   Toolkit::Control::KeyInputFocusSignalType mKeyInputFocusGainedSignal;
350   Toolkit::Control::KeyInputFocusSignalType mKeyInputFocusLostSignal;
351   Toolkit::Control::ResourceReadySignalType mResourceReadySignal;
352
353   // Gesture Detection
354   PinchGestureDetector mPinchGestureDetector;
355   PanGestureDetector mPanGestureDetector;
356   TapGestureDetector mTapGestureDetector;
357   LongPressGestureDetector mLongPressGestureDetector;
358
359   // Tooltip
360   TooltipPtr mTooltip;
361
362   ControlBehaviour mFlags : CONTROL_BEHAVIOUR_FLAG_COUNT;    ///< Flags passed in from constructor.
363   bool mIsKeyboardNavigationSupported :1;  ///< Stores whether keyboard navigation is supported by the control.
364   bool mIsKeyboardFocusGroup :1;           ///< Stores whether the control is a focus group.
365
366   RegisteredVisualContainer mRemoveVisuals;         ///< List of visuals that are being replaced by another visual once ready
367
368   // Properties - these need to be members of Internal::Control::Impl as they access private methods/data of Internal::Control and Internal::Control::Impl.
369   static const PropertyRegistration PROPERTY_1;
370   static const PropertyRegistration PROPERTY_2;
371   static const PropertyRegistration PROPERTY_3;
372   static const PropertyRegistration PROPERTY_4;
373   static const PropertyRegistration PROPERTY_5;
374   static const PropertyRegistration PROPERTY_6;
375   static const PropertyRegistration PROPERTY_7;
376   static const PropertyRegistration PROPERTY_8;
377   static const PropertyRegistration PROPERTY_9;
378   static const PropertyRegistration PROPERTY_10;
379   static const PropertyRegistration PROPERTY_11;
380   static const PropertyRegistration PROPERTY_12;
381   static const PropertyRegistration PROPERTY_13;
382   static const PropertyRegistration PROPERTY_14;
383 };
384
385
386 } // namespace Internal
387
388 } // namespace Toolkit
389
390 } // namespace Dali
391
392 #endif // DALI_TOOLKIT_CONTROL_DATA_IMPL_H