Doxygen grouping
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / control-impl.h
index a7e2c91..b8ae6bb 100644 (file)
@@ -35,14 +35,15 @@ namespace Dali
 
 namespace Toolkit
 {
+/**
+ * @addtogroup dali-toolkit-controls
+ * @{
+ */
+
 class StyleManager;
 
 namespace Internal
 {
-class FocusManager;
-class KeyboardFocusManager;
-class KeyInputFocusManager;
-
 /**
  * @brief This is the internal base class for all controls.
  *
@@ -71,26 +72,63 @@ public:
    */
   virtual ~Control();
 
-  // Key Input
+  // Styling
 
   /**
-   * @copydoc Toolkit::Control::SetKeyInputFocus()
+   * @copydoc Dali::Toolkit::Control::SetStyleName
    */
-  void SetKeyInputFocus();
+  void SetStyleName( const std::string& styleName );
 
   /**
-   * @copydoc Toolkit::Control::HasKeyInputFocus()
+   * @copydoc Dali::Toolkit::Control::GetStyleName
    */
-  bool HasKeyInputFocus();
+  const std::string& GetStyleName() const;
+
+  // Background
 
   /**
-   * @copydoc Toolkit::Control::ClearKeyInputFocus()
+   * @copydoc Dali::Toolkit::Control::SetBackgroundColor
    */
-  void ClearKeyInputFocus();
+  void SetBackgroundColor( const Vector4& color );
+
+  /**
+   * @copydoc Dali::Toolkit::Control::GetBackgroundColor
+   */
+  Vector4 GetBackgroundColor() const;
+
+  /**
+   * @copydoc Dali::Toolkit::Control::SetBackgroundImage
+   */
+  void SetBackgroundImage( Image image );
+
+  /**
+   * @copydoc Dali::Toolkit::Control::ClearBackground
+   */
+  void ClearBackground();
 
   // Gesture Detection
 
   /**
+   * @brief Allows deriving classes to enable any of the gesture detectors that are available.
+   *
+   * Gesture detection can be enabled one at a time or in bitwise format as shown:
+   * @code
+   * EnableGestureDetection(Gesture::Type(Gesture::Pinch | Gesture::Tap | Gesture::Pan));
+   * @endcode
+   * @param[in]  type  The gesture type(s) to enable.
+   */
+  void EnableGestureDetection( Gesture::Type type );
+
+  /**
+   * @brief Allows deriving classes to disable any of the gesture detectors.
+   *
+   * Like EnableGestureDetection, this can also be called using bitwise or.
+   * @param[in]  type  The gesture type(s) to disable.
+   * @see EnableGetureDetection
+   */
+  void DisableGestureDetection( Gesture::Type type );
+
+  /**
    * @brief If deriving classes wish to fine tune pinch gesture
    * detection then they can access the gesture detector through this
    * API and modify the detection.
@@ -134,40 +172,6 @@ public:
    */
   LongPressGestureDetector GetLongPressGestureDetector() const;
 
-  // Styling
-
-  /**
-   * @copydoc Dali::Toolkit::Control::SetStyleName
-   */
-  void SetStyleName( const std::string& styleName );
-
-  /**
-   * @copydoc Dali::Toolkit::Control::GetStyleName
-   */
-  const std::string& GetStyleName() const;
-
-  // Background
-
-  /**
-   * @copydoc Dali::Toolkit::Control::SetBackgroundColor
-   */
-  void SetBackgroundColor( const Vector4& color );
-
-  /**
-   * @copydoc Dali::Toolkit::Control::GetBackgroundColor
-   */
-  Vector4 GetBackgroundColor() const;
-
-  /**
-   * @copydoc Dali::Toolkit::Control::SetBackgroundImage
-   */
-  void SetBackgroundImage( Image image );
-
-  /**
-   * @copydoc Dali::Toolkit::Control::ClearBackground
-   */
-  void ClearBackground();
-
   // Keyboard Navigation
 
   /**
@@ -178,7 +182,7 @@ public:
    * The control doesn't support it by default.
    * @param[in] isSupported Whether this control supports two dimensional keyboard navigation.
    */
-  void SetKeyboardNavigationSupport(bool isSupported);
+  void SetKeyboardNavigationSupport( bool isSupported );
 
   /**
    * @brief Gets whether this control supports two dimensional keyboard navigation.
@@ -187,12 +191,22 @@ public:
    */
   bool IsKeyboardNavigationSupported();
 
-  // Called by Focus Managers
+  // Key Input
+
+  /**
+   * @copydoc Toolkit::Control::SetKeyInputFocus()
+   */
+  void SetKeyInputFocus();
+
+  /**
+   * @copydoc Toolkit::Control::HasKeyInputFocus()
+   */
+  bool HasKeyInputFocus();
 
   /**
-   * @brief Called by the focus manager and keyboard focus manager to Activate the Control
+   * @copydoc Toolkit::Control::ClearKeyInputFocus()
    */
-  DALI_INTERNAL void Activate();
+  void ClearKeyInputFocus();
 
   // Keyboard Focus
 
@@ -203,7 +217,7 @@ public:
    * can be limitied to its child actors). The control is not a focus group by default.
    * @param[in] isFocusGroup Whether this control is set as a focus group for keyboard navigation.
    */
-  void SetAsKeyboardFocusGroup(bool isFocusGroup);
+  void SetAsKeyboardFocusGroup( bool isFocusGroup );
 
   /**
    * @brief Gets whether this control is a focus group for keyboard navigation.
@@ -213,36 +227,16 @@ public:
   bool IsKeyboardFocusGroup();
 
   /**
-   * @brief Emits KeyInputFocusGained signal if true else emits KeyInputFocusLost signal
-   *
-   * Should be called last by the control after it acts on the Input Focus change.
-   *
-   * @param[in] focusGained True if gained, False if lost
+   * @brief Called by the AccessibilityManager to activate the Control.
    */
-  void EmitKeyInputFocusSignal( bool focusGained );
-
-  // Actions & Signals
+  DALI_INTERNAL void AccessibilityActivate();
 
   /**
-   * @brief Performs actions as requested using the action name.
-   *
-   * @param[in] object The object on which to perform the action.
-   * @param[in] actionName The action to perform.
-   * @param[in] attributes The attributes with which to perfrom this action.
-   * @return true if action has been accepted by this control
+   * @brief Called by the KeyboardFocusManager.
    */
-  static bool DoAction(BaseObject* object, const std::string& actionName, const PropertyValueContainer& attributes);
+  DALI_INTERNAL void KeyboardEnter();
 
-  /**
-   * Connects a callback function with the object's signals.
-   * @param[in] object The object providing the signal.
-   * @param[in] tracker Used to disconnect the signal.
-   * @param[in] signalName The signal to connect to.
-   * @param[in] functor A newly allocated FunctorDelegate.
-   * @return True if the signal was connected.
-   * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the caller is responsible for deleting the unused functor.
-   */
-  static bool DoConnectSignal( BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor );
+  // Signals
 
   /**
    * @copydoc Dali::Toolkit::Control::KeyEventSignal()
@@ -265,14 +259,25 @@ public:
    * @param[in] event The key event.
    * @return True if the event was consumed.
    */
-  DALI_INTERNAL bool EmitKeyEventSignal(const KeyEvent& event);
+  DALI_INTERNAL bool EmitKeyEventSignal( const KeyEvent& event );
+
+protected: // For derived classes to call
+
+  /**
+   * @brief Emits KeyInputFocusGained signal if true else emits KeyInputFocusLost signal
+   *
+   * Should be called last by the control after it acts on the Input Focus change.
+   *
+   * @param[in] focusGained True if gained, False if lost
+   */
+  void EmitKeyInputFocusSignal( bool focusGained );
 
 protected: // From CustomActorImpl, not to be used by application developers
 
   /**
    * @copydoc CustomActorImpl::OnStageConnection()
    */
-  virtual void OnStageConnection();
+  virtual void OnStageConnection( int depth );
 
   /**
    * @copydoc CustomActorImpl::OnStageDisconnection()
@@ -282,42 +287,42 @@ protected: // From CustomActorImpl, not to be used by application developers
   /**
    * @copydoc CustomActorImpl::OnChildAdd()
    */
-  virtual void OnChildAdd(Actor& child);
+  virtual void OnChildAdd( Actor& child );
 
   /**
    * @copydoc CustomActorImpl::OnChildRemove()
    */
-  virtual void OnChildRemove(Actor& child);
+  virtual void OnChildRemove( Actor& child );
 
   /**
    * @copydoc CustomActorImpl::OnSizeSet()
    */
-  virtual void OnSizeSet(const Vector3& targetSize);
+  virtual void OnSizeSet( const Vector3& targetSize );
 
   /**
    * @copydoc CustomActorImpl::OnSizeAnimation()
    */
-  virtual void OnSizeAnimation(Animation& animation, const Vector3& targetSize);
+  virtual void OnSizeAnimation( Animation& animation, const Vector3& targetSize );
 
   /**
    * @copydoc CustomActorImpl::OnTouchEvent()
    */
-  virtual bool OnTouchEvent(const TouchEvent& event);
+  virtual bool OnTouchEvent( const TouchEvent& event );
 
   /**
    * @copydoc CustomActorImpl::OnHoverEvent()
    */
-  virtual bool OnHoverEvent(const HoverEvent& event);
+  virtual bool OnHoverEvent( const HoverEvent& event );
 
   /**
    * @copydoc CustomActorImpl::OnKeyEvent()
    */
-  virtual bool OnKeyEvent(const KeyEvent& event);
+  virtual bool OnKeyEvent( const KeyEvent& event );
 
   /**
-   * @copydoc CustomActorImpl::OnMouseWheelEvent()
+   * @copydoc CustomActorImpl::OnWheelEvent()
    */
-  virtual bool OnMouseWheelEvent(const MouseWheelEvent& event);
+  virtual bool OnWheelEvent( const WheelEvent& event );
 
   /**
    * @copydoc CustomActorImpl::OnRelayout()
@@ -391,28 +396,6 @@ protected: // Helpers for deriving classes
    */
   void Initialize();
 
-  // Gesture Detection
-
-  /**
-   * @brief Allows deriving classes to enable any of the gesture detectors that are available.
-   *
-   * Gesture detection can be enabled one at a time or in bitwise format as shown:
-   * @code
-   * EnableGestureDetection(Gesture::Type(Gesture::Pinch | Gesture::Tap | Gesture::Pan));
-   * @endcode
-   * @param[in]  type  The gesture type(s) to enable.
-   */
-  void EnableGestureDetection( Gesture::Type type );
-
-  /**
-   * @brief Allows deriving classes to disable any of the gesture detectors.
-   *
-   * Like EnableGestureDetection, this can also be called using bitwise or.
-   * @param[in]  type  The gesture type(s) to disable.
-   * @see EnableGetureDetection
-   */
-  void DisableGestureDetection( Gesture::Type type );
-
 public: // API for derived classes to override
 
   // Lifecycle
@@ -425,20 +408,6 @@ public: // API for derived classes to override
   virtual void OnInitialize();
 
   /**
-   * @brief Called whenever the control is added to the stage.
-   *
-   * Could be overridden by derived classes.
-   */
-  virtual void OnControlStageConnection();
-
-  /**
-   * @brief Called whenever the control is removed from the stage.
-   *
-   * Could be overridden by derived classes.
-   */
-  virtual void OnControlStageDisconnection();
-
-  /**
    * @brief Called whenever an Actor is added to the control.
    *
    * Could be overridden by derived classes.
@@ -466,23 +435,15 @@ public: // API for derived classes to override
    */
   virtual void OnStyleChange( Toolkit::StyleManager styleManager, StyleChange::Type change );
 
-  // Size negotiation
-
-  /**
-   * @brief Called whenever the Control's size is set.
-   *
-   * @param[in] size The new size.
-   */
-  virtual void OnControlSizeSet( const Vector3& size );
-
   // Accessibility
 
   /**
    * @brief This method is called when the control is accessibility activated.
    *
    * Derived classes should override this to perform custom accessibility activation.
+   * @return true if this control can perform accessibility activation.
    */
-  virtual void OnAccessibilityActivated();
+  virtual bool OnAccessibilityActivated();
 
   /**
    * @brief This method should be overridden by deriving classes when they wish to respond the accessibility
@@ -491,7 +452,7 @@ public: // API for derived classes to override
    * @param[in] gesture The pan gesture.
    * @return true if the pan gesture has been consumed by this control
    */
-  virtual bool OnAccessibilityPan(PanGesture gesture);
+  virtual bool OnAccessibilityPan( PanGesture gesture );
 
   /**
    * @brief This method should be overridden by deriving classes when they wish to respond the accessibility
@@ -500,7 +461,7 @@ public: // API for derived classes to override
    * @param[in] touchEvent The touch event.
    * @return true if the touch event has been consumed by this control
    */
-  virtual bool OnAccessibilityTouch(const TouchEvent& touchEvent);
+  virtual bool OnAccessibilityTouch( const TouchEvent& touchEvent );
 
   /**
    * @brief This method should be overridden by deriving classes when they wish to respond
@@ -509,7 +470,15 @@ public: // API for derived classes to override
    * @param[in] isIncrease Whether the value should be increased or decreased
    * @return true if the value changed action has been consumed by this control
    */
-  virtual bool OnAccessibilityValueChange(bool isIncrease);
+  virtual bool OnAccessibilityValueChange( bool isIncrease );
+
+  /**
+   * @brief This method should be overridden by deriving classes when they wish to respond
+   * the accessibility zoom action
+   *
+   * @return true if the zoom action has been consumed by this control
+   */
+  virtual bool OnAccessibilityZoom();
 
   // Keyboard focus
 
@@ -536,7 +505,7 @@ public: // API for derived classes to override
    * @param[in] loopEnabled Whether the focus movement should be looped within the control.
    * @return the next keyboard focusable actor in this control or an empty handle if no actor can be focused.
    */
-  virtual Actor GetNextKeyboardFocusableActor(Actor currentFocusedActor, Toolkit::Control::KeyboardFocusNavigationDirection direction, bool loopEnabled);
+  virtual Actor GetNextKeyboardFocusableActor( Actor currentFocusedActor, Toolkit::Control::KeyboardFocus::Direction direction, bool loopEnabled );
 
   /**
    * @brief Informs this control that its chosen focusable actor will be focused.
@@ -546,7 +515,15 @@ public: // API for derived classes to override
    *
    * @param[in] commitedFocusableActor The commited focusable actor.
    */
-  virtual void OnKeyboardFocusChangeCommitted(Actor commitedFocusableActor);
+  virtual void OnKeyboardFocusChangeCommitted( Actor commitedFocusableActor );
+
+  /**
+   * @brief This method is called when the control has enter pressed on it.
+   *
+   * Derived classes should override this to perform custom actions.
+   * @return true if this control supported this action.
+   */
+  virtual bool OnKeyboardEnter();
 
   // Gestures
 
@@ -562,7 +539,7 @@ public: // API for derived classes to override
    * @param[in]  pinch  The pinch gesture.
    * @see EnableGestureDetection
    */
-  virtual void OnPinch(const PinchGesture& pinch);
+  virtual void OnPinch( const PinchGesture& pinch );
 
   /**
    * @brief Called whenever a pan gesture is detected on this control.
@@ -628,8 +605,8 @@ public: // API for derived classes to override
 private:
 
   // Undefined
-  DALI_INTERNAL Control(const Control&);
-  DALI_INTERNAL Control& operator=(const Control&);
+  DALI_INTERNAL Control( const Control& );
+  DALI_INTERNAL Control& operator=( const Control& );
 
   class Impl;
   Impl* mImpl;
@@ -643,7 +620,7 @@ private:
  * @param handle
  * @return implementation
  */
-Internal::Control& GetImplementation( Dali::Toolkit::Control& handle );
+DALI_IMPORT_API Internal::Control& GetImplementation( Dali::Toolkit::Control& handle );
 
 /**
  * @brief Get implementation from the handle
@@ -652,10 +629,13 @@ Internal::Control& GetImplementation( Dali::Toolkit::Control& handle );
  * @param handle
  * @return implementation
  */
-const Internal::Control& GetImplementation( const Dali::Toolkit::Control& handle );
+DALI_IMPORT_API const Internal::Control& GetImplementation( const Dali::Toolkit::Control& handle );
 
 } // namespace Internal
 
+/**
+ * @}
+ */
 } // namespace Toolkit
 
 } // namespace Dali