[3.0] Changed control defaults to listen to style change
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / control-impl.h
1 #ifndef DALI_TOOLKIT_CONTROL_IMPL_H
2 #define DALI_TOOLKIT_CONTROL_IMPL_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/adaptor-framework/style-change.h>
23 #include <dali/public-api/events/long-press-gesture.h>
24 #include <dali/public-api/events/pan-gesture.h>
25 #include <dali/public-api/events/pinch-gesture.h>
26 #include <dali/public-api/events/tap-gesture.h>
27 #include <dali/public-api/object/property-index-ranges.h>
28 #include <dali/public-api/object/type-info.h>
29
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/public-api/controls/control.h>
32
33 namespace Dali
34 {
35
36 namespace Toolkit
37 {
38 /**
39  * @addtogroup dali_toolkit_controls
40  * @{
41  */
42
43 class StyleManager;
44
45 namespace Internal
46 {
47 /**
48  * @brief This is the internal base class for all controls.
49  *
50  * It will provide some common functionality required by all controls.
51  * Implements ConnectionTrackerInterface so that signals (typically connected to member functions) will
52  * be disconnected automatically when the control is destroyed.
53  * @SINCE_1_0.0
54  */
55 class DALI_IMPORT_API Control : public CustomActorImpl, public ConnectionTrackerInterface
56 {
57 public:
58
59   class Extension; ///< Forward declare future extension interface
60
61   // Creation & Destruction
62
63   /**
64    * @brief Create a new ControlImpl instance that does not require touch by default.
65    *
66    * If touch is required then the user can connect to this class' touch signal.
67    * @SINCE_1_0.0
68    * @return A handle to the ControlImpl instance.
69    */
70   static Toolkit::Control New();
71
72   /**
73    * @brief Virtual destructor.
74    * @SINCE_1_0.0
75    */
76   virtual ~Control();
77
78   // Styling
79
80   /**
81    * @copydoc Dali::Toolkit::Control::SetStyleName
82    */
83   void SetStyleName( const std::string& styleName );
84
85   /**
86    * @copydoc Dali::Toolkit::Control::GetStyleName
87    */
88   const std::string& GetStyleName() const;
89
90   // Background
91
92   /**
93    * @copydoc Dali::Toolkit::Control::SetBackgroundColor
94    */
95   void SetBackgroundColor( const Vector4& color );
96
97   /**
98    * @copydoc Dali::Toolkit::Control::GetBackgroundColor
99    */
100   Vector4 GetBackgroundColor() const;
101
102   /**
103    * @copydoc Dali::Toolkit::Control::SetBackgroundImage
104    */
105   void SetBackgroundImage( Image image );
106
107   /**
108    * @brief Set the background with a property map.
109    *
110    * @SINCE_1_0.0
111    * @param[in] map The background property map.
112    */
113   void SetBackground(const Property::Map& map);
114
115   /**
116    * @copydoc Dali::Toolkit::Control::ClearBackground
117    */
118   void ClearBackground();
119
120   // Gesture Detection
121
122   /**
123    * @brief Allows deriving classes to enable any of the gesture detectors that are available.
124    *
125    * Gesture detection can be enabled one at a time or in bitwise format as shown:
126    * @code
127    * EnableGestureDetection(Gesture::Type(Gesture::Pinch | Gesture::Tap | Gesture::Pan));
128    * @endcode
129    * @SINCE_1_0.0
130    * @param[in]  type  The gesture type(s) to enable.
131    */
132   void EnableGestureDetection( Gesture::Type type );
133
134   /**
135    * @brief Allows deriving classes to disable any of the gesture detectors.
136    *
137    * Like EnableGestureDetection, this can also be called using bitwise or.
138    * @SINCE_1_0.0
139    * @param[in]  type  The gesture type(s) to disable.
140    * @see EnableGetureDetection
141    */
142   void DisableGestureDetection( Gesture::Type type );
143
144   /**
145    * @brief If deriving classes wish to fine tune pinch gesture
146    * detection then they can access the gesture detector through this
147    * API and modify the detection.
148    *
149    * @SINCE_1_0.0
150    * @return The pinch gesture detector.
151    * @pre Pinch detection should have been enabled via EnableGestureDetection().
152    * @see EnableGestureDetection
153    */
154   PinchGestureDetector GetPinchGestureDetector() const;
155
156   /**
157    * @brief If deriving classes wish to fine tune pan gesture
158    * detection then they can access the gesture detector through this
159    * API and modify the detection.
160    *
161    * @SINCE_1_0.0
162    * @return The pan gesture detector.
163    * @pre Pan detection should have been enabled via EnableGestureDetection().
164    * @see EnableGestureDetection
165    */
166   PanGestureDetector GetPanGestureDetector() const;
167
168   /**
169    * @brief If deriving classes wish to fine tune tap gesture
170    * detection then they can access the gesture detector through this
171    * API and modify the detection.
172    *
173    * @SINCE_1_0.0
174    * @return The tap gesture detector.
175    * @pre Tap detection should have been enabled via EnableGestureDetection().
176    * @see EnableGestureDetection
177    */
178   TapGestureDetector GetTapGestureDetector() const;
179
180   /**
181    * @brief If deriving classes wish to fine tune long press gesture
182    * detection then they can access the gesture detector through this
183    * API and modify the detection.
184    *
185    * @SINCE_1_0.0
186    * @return The long press gesture detector.
187    * @pre Long press detection should have been enabled via EnableGestureDetection().
188    * @see EnableGestureDetection
189    */
190   LongPressGestureDetector GetLongPressGestureDetector() const;
191
192   // Keyboard Navigation
193
194   /**
195    * @brief Sets whether this control supports two dimensional
196    * keyboard navigation (i.e. whether it knows how to handle the
197    * keyboard focus movement between its child actors).
198    *
199    * The control doesn't support it by default.
200    * @SINCE_1_0.0
201    * @param[in] isSupported Whether this control supports two dimensional keyboard navigation.
202    */
203   void SetKeyboardNavigationSupport( bool isSupported );
204
205   /**
206    * @brief Gets whether this control supports two dimensional keyboard navigation.
207    *
208    * @SINCE_1_0.0
209    * @return true if this control supports two dimensional keyboard navigation.
210    */
211   bool IsKeyboardNavigationSupported();
212
213   // Key Input
214
215   /**
216    * @copydoc Toolkit::Control::SetKeyInputFocus()
217    */
218   void SetKeyInputFocus();
219
220   /**
221    * @copydoc Toolkit::Control::HasKeyInputFocus()
222    */
223   bool HasKeyInputFocus();
224
225   /**
226    * @copydoc Toolkit::Control::ClearKeyInputFocus()
227    */
228   void ClearKeyInputFocus();
229
230   // Keyboard Focus
231
232   /**
233    * @brief Sets whether this control is a focus group for keyboard navigation.
234    *
235    * (i.e. the scope of keyboard focus movement
236    * can be limitied to its child actors). The control is not a focus group by default.
237    * @SINCE_1_0.0
238    * @param[in] isFocusGroup Whether this control is set as a focus group for keyboard navigation.
239    */
240   void SetAsKeyboardFocusGroup( bool isFocusGroup );
241
242   /**
243    * @brief Gets whether this control is a focus group for keyboard navigation.
244    *
245    * @SINCE_1_0.0
246    * @return true if this control is set as a focus group for keyboard navigation.
247    */
248   bool IsKeyboardFocusGroup();
249
250   /**
251    * @internal
252    * @brief Called by the AccessibilityManager to activate the Control.
253    * @SINCE_1_0.0
254    */
255   DALI_INTERNAL void AccessibilityActivate();
256
257   /**
258    * @internal
259    * @brief Called by the KeyboardFocusManager.
260    * @SINCE_1_0.0
261    */
262   DALI_INTERNAL void KeyboardEnter();
263
264   // Signals
265
266   /**
267    * @copydoc Dali::Toolkit::Control::KeyEventSignal()
268    */
269   Toolkit::Control::KeyEventSignalType& KeyEventSignal();
270
271   /**
272    * @copydoc Dali::Toolkit::Control::KeyInputFocusGainedSignal()
273    */
274   Toolkit::Control::KeyInputFocusSignalType& KeyInputFocusGainedSignal();
275
276   /**
277    * @copydoc Dali::Toolkit::Control::KeyInputFocusLostSignal()
278    */
279   Toolkit::Control::KeyInputFocusSignalType& KeyInputFocusLostSignal();
280
281   /**
282    * @internal
283    * @brief Called by the KeyInputFocusManager to emit key event signals.
284    *
285    * @SINCE_1_0.0
286    * @param[in] event The key event.
287    * @return True if the event was consumed.
288    */
289   DALI_INTERNAL bool EmitKeyEventSignal( const KeyEvent& event );
290
291 protected: // For derived classes to call
292
293   /**
294    * @brief Emits KeyInputFocusGained signal if true else emits KeyInputFocusLost signal
295    *
296    * Should be called last by the control after it acts on the Input Focus change.
297    *
298    * @SINCE_1_0.0
299    * @param[in] focusGained True if gained, False if lost
300    */
301   void EmitKeyInputFocusSignal( bool focusGained );
302
303 protected: // From CustomActorImpl, not to be used by application developers
304
305   /**
306    * @copydoc CustomActorImpl::OnStageConnection()
307    * @note If overridden, then an up-call to Control::OnStageConnection MUST be made at the start.
308    */
309   virtual void OnStageConnection( int depth );
310
311   /**
312    * @copydoc CustomActorImpl::OnStageDisconnection()
313    * @note If overridden, then an up-call to Control::OnStageDisconnection MUST be made at the end.
314    */
315   virtual void OnStageDisconnection();
316
317   /**
318    * @copydoc CustomActorImpl::OnChildAdd()
319    * @note If overridden, then an up-call to Control::OnChildAdd MUST be made at the start.
320    */
321   virtual void OnChildAdd( Actor& child );
322
323   /**
324    * @copydoc CustomActorImpl::OnChildRemove()
325    * @note If overridden, then an up-call to Control::OnChildRemove MUST be made at the end.
326    */
327   virtual void OnChildRemove( Actor& child );
328
329   /**
330    * @copydoc CustomActorImpl::OnSizeSet()
331    * @note If overridden, then an up-call to Control::OnSizeSet MUST be made at the start.
332    */
333   virtual void OnSizeSet( const Vector3& targetSize );
334
335   /**
336    * @copydoc CustomActorImpl::OnSizeAnimation()
337    * @note If overridden, then an up-call to Control::OnSizeAnimation MUST be made at the start.
338    */
339   virtual void OnSizeAnimation( Animation& animation, const Vector3& targetSize );
340
341   /**
342    * @copydoc CustomActorImpl::OnTouchEvent()
343    */
344   virtual bool OnTouchEvent( const TouchEvent& event );
345
346   /**
347    * @copydoc CustomActorImpl::OnHoverEvent()
348    */
349   virtual bool OnHoverEvent( const HoverEvent& event );
350
351   /**
352    * @copydoc CustomActorImpl::OnKeyEvent()
353    */
354   virtual bool OnKeyEvent( const KeyEvent& event );
355
356   /**
357    * @copydoc CustomActorImpl::OnWheelEvent()
358    */
359   virtual bool OnWheelEvent( const WheelEvent& event );
360
361   /**
362    * @copydoc CustomActorImpl::OnRelayout()
363    */
364   virtual void OnRelayout( const Vector2& size, RelayoutContainer& container );
365
366   /**
367    * @copydoc CustomActorImpl::OnSetResizePolicy()
368    */
369   virtual void OnSetResizePolicy( ResizePolicy::Type policy, Dimension::Type dimension );
370
371   /**
372    * @copydoc CustomActorImpl::GetNaturalSize()
373    */
374   virtual Vector3 GetNaturalSize();
375
376   /**
377    * @copydoc CustomActorImpl::CalculateChildSize()
378    */
379   virtual float CalculateChildSize( const Dali::Actor& child, Dimension::Type dimension );
380
381   /**
382    * @copydoc CustomActorImpl::GetHeightForWidth()
383    */
384   virtual float GetHeightForWidth( float width );
385
386   /**
387    * @copydoc CustomActorImpl::GetWidthForHeight()
388    */
389   virtual float GetWidthForHeight( float height );
390
391   /**
392    * @copydoc CustomActorImpl::RelayoutDependentOnChildren()
393    */
394   virtual bool RelayoutDependentOnChildren( Dimension::Type dimension = Dimension::ALL_DIMENSIONS );
395
396   /**
397    * @copydoc CustomActorImpl::OnCalculateRelayoutSize()
398    */
399   virtual void OnCalculateRelayoutSize( Dimension::Type dimension );
400
401   /**
402    * @copydoc CustomActorImpl::OnLayoutNegotiated()
403    */
404   virtual void OnLayoutNegotiated( float size, Dimension::Type dimension );
405
406 protected: // Helpers for deriving classes
407
408   // Construction
409
410   /**
411    * @brief Flags for the constructor
412    * @SINCE_1_0.0
413    */
414   enum ControlBehaviour
415   {
416     CONTROL_BEHAVIOUR_DEFAULT            = 0, ///< Default behaviour: Size negotiation is enabled & listens to Style Change signal, but doesn't receive event callbacks. @SINCE_1_2_10
417     REQUIRES_STYLE_CHANGE_SIGNALS        = 1 << ( CustomActorImpl::ACTOR_FLAG_COUNT + 0 ),     ///< True if needs to monitor style change signals such as theme/font change @SINCE_1_0.0 @DEPRECATED_1_2_10
418     REQUIRES_KEYBOARD_NAVIGATION_SUPPORT = 1 << ( CustomActorImpl::ACTOR_FLAG_COUNT + 1 ),     ///< True if needs to support keyboard navigation @SINCE_1_0.0
419
420     DISABLE_STYLE_CHANGE_SIGNALS         = 1 << ( CustomActorImpl::ACTOR_FLAG_COUNT + 2 ),     ///< True if control should not monitor style change signals @SINCE_1_2_10
421
422     LAST_CONTROL_BEHAVIOUR_FLAG
423   };
424
425   static const int CONTROL_BEHAVIOUR_FLAG_COUNT = Log< LAST_CONTROL_BEHAVIOUR_FLAG - 1 >::value + 1;      ///< Total count of flags
426
427   /**
428    * @brief Control constructor
429    *
430    * @SINCE_1_0.0
431    * @param[in] behaviourFlags Behavioural flags from ControlBehaviour enum
432    */
433   Control( ControlBehaviour behaviourFlags );
434
435   /**
436    * @brief Second phase initialization.
437    * @SINCE_1_0.0
438    */
439   void Initialize();
440
441 public: // API for derived classes to override
442
443   // Lifecycle
444
445   /**
446    * @brief This method is called after the Control has been initialized.
447    *
448    * Derived classes should do any second phase initialization by overriding this method.
449    * @SINCE_1_0.0
450    */
451   virtual void OnInitialize();
452
453   /**
454    * @DEPRECATED_1_1.30. Override OnChildAdd instead.
455    *
456    * @brief Called whenever an Actor is added to the control.
457    *
458    * Could be overridden by derived classes.
459    *
460    * @SINCE_1_0.0
461    * @param[in] child The added actor.
462    */
463   virtual void OnControlChildAdd( Actor& child );
464
465   /**
466    * @DEPRECATED_1_1.30. Override OnChildRemove instead.
467    *
468    * @brief Called whenever an Actor is removed from the control.
469    *
470    * Could be overridden by derived classes.
471    *
472    * @SINCE_1_0.0
473    * @param[in] child The removed actor.
474    */
475   virtual void OnControlChildRemove( Actor& child );
476
477   // Styling
478
479   /**
480    * @brief This method should be overridden by deriving classes requiring notifications when the style changes.
481    *
482    * @SINCE_1_0.0
483    * @param[in] styleManager  The StyleManager object.
484    * @param[in] change  Information denoting what has changed.
485    */
486   virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change );
487
488   // Accessibility
489
490   /**
491    * @brief This method is called when the control is accessibility activated.
492    *
493    * Derived classes should override this to perform custom accessibility activation.
494    * @SINCE_1_0.0
495    * @return true if this control can perform accessibility activation.
496    */
497   virtual bool OnAccessibilityActivated();
498
499   /**
500    * @brief This method should be overridden by deriving classes when they wish to respond the accessibility
501    * pan gesture.
502    *
503    * @SINCE_1_0.0
504    * @param[in] gesture The pan gesture.
505    * @return true if the pan gesture has been consumed by this control
506    */
507   virtual bool OnAccessibilityPan( PanGesture gesture );
508
509   /**
510    * @brief This method should be overridden by deriving classes when they wish to respond the accessibility
511    * touch event.
512    *
513    * @SINCE_1_0.0
514    * @param[in] touchEvent The touch event.
515    * @return true if the touch event has been consumed by this control
516    */
517   virtual bool OnAccessibilityTouch( const TouchEvent& touchEvent );
518
519   /**
520    * @brief This method should be overridden by deriving classes when they wish to respond
521    * the accessibility up and down action (i.e. value change of slider control).
522    *
523    * @SINCE_1_0.0
524    * @param[in] isIncrease Whether the value should be increased or decreased
525    * @return true if the value changed action has been consumed by this control
526    */
527   virtual bool OnAccessibilityValueChange( bool isIncrease );
528
529   /**
530    * @brief This method should be overridden by deriving classes when they wish to respond
531    * the accessibility zoom action.
532    *
533    * @SINCE_1_0.0
534    * @return true if the zoom action has been consumed by this control
535    */
536   virtual bool OnAccessibilityZoom();
537
538   // Keyboard focus
539
540   /**
541    * @brief Called when the control gains key input focus.
542    *
543    * Should be overridden by derived classes if they need to customize what happens when focus is gained.
544    * @SINCE_1_0.0
545    */
546   virtual void OnKeyInputFocusGained();
547
548   /**
549    * @brief Called when the control loses key input focus.
550    *
551    * Should be overridden by derived classes if they need to customize what happens when focus is lost.
552    * @SINCE_1_0.0
553    */
554   virtual void OnKeyInputFocusLost();
555
556   /**
557    * @brief Gets the next keyboard focusable actor in this control towards the given direction.
558    *
559    * A control needs to override this function in order to support two dimensional keyboard navigation.
560    * @SINCE_1_0.0
561    * @param[in] currentFocusedActor The current focused actor.
562    * @param[in] direction The direction to move the focus towards.
563    * @param[in] loopEnabled Whether the focus movement should be looped within the control.
564    * @return the next keyboard focusable actor in this control or an empty handle if no actor can be focused.
565    */
566   virtual Actor GetNextKeyboardFocusableActor( Actor currentFocusedActor, Toolkit::Control::KeyboardFocus::Direction direction, bool loopEnabled );
567
568   /**
569    * @brief Informs this control that its chosen focusable actor will be focused.
570    *
571    * This allows the application to preform any actions if wishes
572    * before the focus is actually moved to the chosen actor.
573    *
574    * @SINCE_1_0.0
575    * @param[in] commitedFocusableActor The commited focusable actor.
576    */
577   virtual void OnKeyboardFocusChangeCommitted( Actor commitedFocusableActor );
578
579   /**
580    * @brief This method is called when the control has enter pressed on it.
581    *
582    * Derived classes should override this to perform custom actions.
583    * @SINCE_1_0.0
584    * @return true if this control supported this action.
585    */
586   virtual bool OnKeyboardEnter();
587
588   // Gestures
589
590   /**
591    * @brief Called whenever a pinch gesture is detected on this control.
592    *
593    * This can be overridden by deriving classes when pinch detection
594    * is enabled.  The default behaviour is to scale the control by the
595    * pinch scale.
596    *
597    * @SINCE_1_0.0
598    * @param[in]  pinch  The pinch gesture.
599    * @note If overridden, then the default behaviour will not occur.
600    * @note Pinch detection should be enabled via EnableGestureDetection().
601    * @see EnableGestureDetection
602    */
603   virtual void OnPinch( const PinchGesture& pinch );
604
605   /**
606    * @brief Called whenever a pan gesture is detected on this control.
607    *
608    * This should be overridden by deriving classes when pan detection
609    * is enabled.
610    *
611    * @SINCE_1_0.0
612    * @param[in]  pan  The pan gesture.
613    * @note There is no default behaviour with panning.
614    * @note Pan detection should be enabled via EnableGestureDetection().
615    * @see EnableGestureDetection
616    */
617   virtual void OnPan( const PanGesture& pan );
618
619   /**
620    * @brief Called whenever a tap gesture is detected on this control.
621    *
622    * This should be overridden by deriving classes when tap detection
623    * is enabled.
624    *
625    * @SINCE_1_0.0
626    * @param[in]  tap  The tap gesture.
627    * @note There is no default behaviour with a tap.
628    * @note Tap detection should be enabled via EnableGestureDetection().
629    * @see EnableGestureDetection
630    */
631   virtual void OnTap( const TapGesture& tap );
632
633   /**
634    * @brief Called whenever a long press gesture is detected on this control.
635    *
636    * This should be overridden by deriving classes when long press
637    * detection is enabled.
638    *
639    * @SINCE_1_0.0
640    * @param[in]  longPress  The long press gesture.
641    * @note There is no default behaviour associated with a long press.
642    * @note Long press detection should be enabled via EnableGestureDetection().
643    * @see EnableGestureDetection
644    */
645   virtual void OnLongPress( const LongPressGesture& longPress );
646
647   // From ConnectionTrackerInterface
648
649   /**
650    * @copydoc ConnectionTrackerInterface::SignalConnected
651    */
652   virtual void SignalConnected( SlotObserver* slotObserver, CallbackBase* callback );
653
654   /**
655    * @copydoc ConnectionTrackerInterface::SignalDisconnected
656    */
657   virtual void SignalDisconnected( SlotObserver* slotObserver, CallbackBase* callback );
658
659   /**
660    * @brief Retrieve the extension for this control
661    *
662    * @SINCE_1_0.0
663    * @return The extension if available, NULL otherwise
664    */
665   virtual Extension* GetControlExtension()
666   {
667     return NULL;
668   }
669
670 private:
671
672   // Undefined
673   DALI_INTERNAL Control( const Control& );
674   DALI_INTERNAL Control& operator=( const Control& );
675
676   class Impl;
677   Impl* mImpl;
678
679 };
680
681 /**
682  * @brief Get implementation from the handle.
683  *
684  * @SINCE_1_0.0
685  * @param handle
686  * @return implementation
687  * @pre handle is initialized and points to a control
688  */
689 DALI_IMPORT_API Internal::Control& GetImplementation( Dali::Toolkit::Control& handle );
690
691 /**
692  * @brief Get implementation from the handle.
693  *
694  * @SINCE_1_0.0
695  * @param handle
696  * @return implementation
697  * @pre handle is initialized and points to a control
698  */
699 DALI_IMPORT_API const Internal::Control& GetImplementation( const Dali::Toolkit::Control& handle );
700
701 } // namespace Internal
702
703 /**
704  * @}
705  */
706 } // namespace Toolkit
707
708 } // namespace Dali
709
710 #endif // DALI_TOOLKIT_CONTROL_IMPL_H