X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fbuttons%2Fbutton.h;h=cce1c66adb23a75f975c2981cbb8105acf10a238;hp=f5c2701a35429cbeae7aa4b90ce2dcb223b7ae37;hb=a073ebfd862b49692c8e6d7dff2b128e62a4f6df;hpb=07bbc876b9b069903dd4ed86c9dd5f2f66fc3b86 diff --git a/dali-toolkit/public-api/controls/buttons/button.h b/dali-toolkit/public-api/controls/buttons/button.h index f5c2701..cce1c66 100644 --- a/dali-toolkit/public-api/controls/buttons/button.h +++ b/dali-toolkit/public-api/controls/buttons/button.h @@ -32,7 +32,7 @@ namespace Internal DALI_INTERNAL class Button; } /** - * @addtogroup dali-toolkit-controls-buttons + * @addtogroup dali_toolkit_controls_buttons * @{ */ @@ -69,17 +69,17 @@ class Button; * Is not mandatory set all images. A button could be defined only by setting its \e background image or by setting its \e background and \e selected images. * * Signals - * | %Signal Name | Method | - * |-------------------|-----------------------------| - * | pressed | @ref PressedSignal() | - * | released | @ref ReleasedSignal() | - * | clicked | @ref ClickedSignal() | - * | state-changed | @ref StateChangedSignal() | + * | %Signal Name | Method | + * |------------------|-----------------------------| + * | pressed | @ref PressedSignal() | + * | released | @ref ReleasedSignal() | + * | clicked | @ref ClickedSignal() | + * | stateChanged | @ref StateChangedSignal() | * * Actions - * | %Action Name | %Button method called | - * |-------------------|-----------------------------| - * | button-click | %DoClickAction() | + * | %Action Name | %Button method called | + * |------------------|-----------------------------| + * | buttonClick | %DoClickAction() | */ class DALI_IMPORT_API Button : public Control { @@ -102,20 +102,20 @@ public: enum { DISABLED = PROPERTY_START_INDEX, ///< name "disabled", @see SetDisabled(), type bool - AUTO_REPEATING, ///< name "auto-repeating", @see SetAutoRepeating(), type bool - INITIAL_AUTO_REPEATING_DELAY, ///< name "initial-auto-repeating-delay", @see SetInitialAutoRepeatingDelay(), type float - NEXT_AUTO_REPEATING_DELAY, ///< name "next-auto-repeating-delay", @see SetNextAutoRepeatingDelay(), type float + AUTO_REPEATING, ///< name "autoRepeating", @see SetAutoRepeating(), type bool + INITIAL_AUTO_REPEATING_DELAY, ///< name "initialAutoRepeatingDelay", @see SetInitialAutoRepeatingDelay(), type float + NEXT_AUTO_REPEATING_DELAY, ///< name "nextAutoRepeatingDelay", @see SetNextAutoRepeatingDelay(), type float TOGGLABLE, ///< name "togglable", @see SetTogglableButton(), type bool SELECTED, ///< name "selected", @see SetSelected(), type bool - UNSELECTED_STATE_IMAGE, ///< name "unselected-state-image", @see SetUnselectedImage(), type std::string - SELECTED_STATE_IMAGE, ///< name "selected-state-image", @see SetSelectedImage(), type std::string - DISABLED_STATE_IMAGE, ///< name "disabled-state-image", @see SetDisabledImage(), type std::string - UNSELECTED_COLOR, ///< name "unselected-color", type Vector4 - SELECTED_COLOR, ///< name "selected-color", type Vector4 + UNSELECTED_STATE_IMAGE, ///< name "unselectedStateImage", @see SetUnselectedImage(), type std::string + SELECTED_STATE_IMAGE, ///< name "selectedStateImage", @see SetSelectedImage(), type std::string + DISABLED_STATE_IMAGE, ///< name "disabledStateImage", @see SetDisabledImage(), type std::string + UNSELECTED_COLOR, ///< name "unselectedColor", type Vector4 + SELECTED_COLOR, ///< name "selectedColor", type Vector4 LABEL, ///< name "label", type Property::Map // Deprecated properties: - LABEL_TEXT, ///< name "label-text", @see SetLabelText(), type std::string + LABEL_TEXT, ///< name "labelText", @see SetLabelText(), type std::string }; }; @@ -326,31 +326,46 @@ public: // Deprecated API /** - * @deprecated Sets the label with an actor. + * @deprecated DALi 1.0.50 + * + * @brief Sets the label with an actor. + * * @param[in] label The actor to use as a label */ void SetLabel( Actor label ); /** - * @deprecated Sets the button image. + * @deprecated DALi 1.0.50 + * + * @brief Sets the button image. + * * @param[in] image The button image. */ void SetButtonImage( Image image ); /** - * @deprecated Sets the selected image. + * @deprecated DALi 1.0.50 + * + * @brief Sets the selected image. + * * @param[in] image The selected image. */ void SetSelectedImage( Image image ); /** - * @deprecated Gets the button image. + * @deprecated DALi 1.0.50 + * + * @brief Gets the button image. + * * @return An actor with the button image. */ Actor GetButtonImage() const; /** - * @deprecated Gets the selected image. + * @deprecated DALi 1.0.50 + * + * @brief Gets the selected image. + * * @return An actor with the selected image. */ Actor GetSelectedImage() const;