X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=base%2Fdali-toolkit%2Finternal%2Fcontrols%2Fbuttons%2Fradio-button-impl.h;h=dc617427f738a5ce4b88b6168d2ce1faa6dc3533;hb=88eec954ad7b59851b423be3b82a4af569f892dd;hp=5afa145511ba2006f24af2d5929fd247f4ad6773;hpb=1123d866f9342b8950fe63715f6eaa1be9a2c18f;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/base/dali-toolkit/internal/controls/buttons/radio-button-impl.h b/base/dali-toolkit/internal/controls/buttons/radio-button-impl.h index 5afa145..dc61742 100644 --- a/base/dali-toolkit/internal/controls/buttons/radio-button-impl.h +++ b/base/dali-toolkit/internal/controls/buttons/radio-button-impl.h @@ -18,15 +18,13 @@ * */ -// INTERNAL INCLUDES -#include +// EXTERNAL INCLUDES +#include +#include +// INTERNAL INCLUDES #include - #include - -#include - #include "button-impl.h" namespace Dali @@ -88,14 +86,14 @@ class RadioButton: public Button Actor GetLabel() const; /** - * @copydoc Dali::Toolkit::RadioButton::SetActive(bool active) + * @copydoc Dali::Toolkit::RadioButton::SetSelected(bool selected) */ - void SetActive(bool active); + void SetSelected(bool selected); /** - * @copydoc Dali::Toolkit::RadioButton::IsActive() + * @copydoc Dali::Toolkit::RadioButton::IsSelected() */ - bool IsActive()const; + bool IsSelected()const; /** * @copydoc Dali::Toolkit::RadioButton::ToggleState() @@ -141,11 +139,11 @@ class RadioButton: public Button // Undefined RadioButton& operator=(const RadioButton& origin); - Image mInactiveImage; ///< Stores the inactive image - Image mActiveImage; ///< Stores the active image + Image mUnselectedImage; ///< Stores the unselected image + Image mSelectedImage; ///< Stores the selected image ImageActor mRadioIcon; ///< Stores the current image - Actor mLabel; ///< Stores the button label - bool mActive; ///< Stores the active state + Actor mLabel; ///< Stores the button label + bool mSelected; ///< Stores the selected state } ; } // namespace Internal