X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fbuttons%2Fpush-button-impl.h;h=6417b4b0247f7b8048f19b1ee03892cda416dc4f;hb=675300a339110f245ba62117a6da5c5b581c12d1;hp=730b7466f1ee66f483f8a791ca9c9addf18cc358;hpb=87f440c3d0367ca5a7027eef8d01d79b8703cf05;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/buttons/push-button-impl.h b/dali-toolkit/internal/controls/buttons/push-button-impl.h index 730b746..6417b4b 100644 --- a/dali-toolkit/internal/controls/buttons/push-button-impl.h +++ b/dali-toolkit/internal/controls/buttons/push-button-impl.h @@ -19,7 +19,7 @@ */ // EXTERNAL INCLUDES -#include +#include // INTERNAL INCLUDES #include @@ -49,29 +49,114 @@ public: */ static Dali::Toolkit::PushButton New(); -protected: // From Button +protected: /** - * Sets the Leave signal. + * Construct a new PushButton. */ - virtual void OnButtonInitialize(); + PushButton(); -protected: // From Control + /** + * A reference counted object may only be deleted by calling Unreference() + */ + virtual ~PushButton(); + +public: + + // Properties /** - * @copydoc Control::GetNaturalSize() + * Enum for the alignment modes of the icon. */ - virtual Vector3 GetNaturalSize(); + enum IconAlignment + { + LEFT, + RIGHT, + TOP, + BOTTOM, + DEFAULT = RIGHT + }; /** - * Construct a new PushButton. + * Called when a property of an object of this type is set. + * @param[in] object The object whose property is set. + * @param[in] index The property index. + * @param[in] value The new property value. */ - PushButton(); + static void SetProperty( BaseObject* object, Property::Index index, const Property::Value& value ); /** - * A reference counted object may only be deleted by calling Unreference() + * Called to retrieve a property of an object of this type. + * @param[in] object The object whose property is to be retrieved. + * @param[in] index The property index. + * @return The current value of the property. */ - virtual ~PushButton(); + static Property::Value GetProperty( BaseObject* object, Property::Index propertyIndex ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetButtonImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetBackgroundImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetSelectedImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetSelectedBackgroundImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetDisabledBackgroundImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetDisabledImage( Actor image ); + + /** + * Deprecated API for Setting Pushbutton image using an Actor + * @param[in] image, Image Actor that has a url which can be used to create an image visual + */ + void SetDisabledSelectedImage( Actor image ); + +private: // From Button + + /** + * @copydoc Toolkit::Internal::Button::OnInitialize + */ + virtual void OnInitialize(); + +private: + + /** + * @brief Sets the alignment mode to use to align the icon to the label. + * + * @param[in] iconAlignment The alignment mode to use + */ + void SetIconAlignment( const PushButton::IconAlignment iconAlignment ); + + /** + * @brief Gets the alignment mode used to align the icon to the label. + * + * @return The alignment mode in use + */ + const PushButton::IconAlignment GetIconAlignment() const; private: @@ -80,6 +165,10 @@ private: // Undefined PushButton& operator=( const PushButton& ); + +private: + + IconAlignment mIconAlignment; ///< The alignment of the icon against the label. }; } // namespace Internal