Merge remote-tracking branch 'origin/tizen' into new_text
[platform/core/uifw/dali-toolkit.git] / base / dali-toolkit / internal / controls / buttons / radio-button-impl.h
index 1ee813f..7685c43 100644 (file)
  *
  */
 
-// INTERNAL INCLUDES
-#include <dali/dali.h>
-
-#include <dali-toolkit/public-api/controls/text-view/text-view.h>
-
-#include <dali-toolkit/public-api/controls/buttons/radio-button.h>
-
+// EXTERNAL INCLUDES
+#include <dali/public-api/actors/image-actor.h>
 #include <dali/public-api/common/dali-vector.h>
 
+// INTERNAL INCLUDES
+#include <dali-toolkit/public-api/controls/buttons/radio-button.h>
 #include "button-impl.h"
 
 namespace Dali
@@ -102,6 +99,11 @@ class RadioButton: public Button
    */
   void ToggleState();
 
+  /**
+   * @copydoc Dali::Toolkit::Control::OnRelaidOut(Vector2 size, ActorSizeContainer& container)
+   */
+  virtual void OnRelaidOut( Vector2 size, ActorSizeContainer& container );
+
  public:
   // Properties
 
@@ -138,7 +140,7 @@ class RadioButton: public Button
 
   Image mInactiveImage;     ///< Stores the inactive image
   Image mActiveImage;       ///< Stores the active image
-  ImageActor mImageActor;   ///< Stores the current image
+  ImageActor mRadioIcon;   ///< Stores the current image
   Actor mLabel;             ///< Stores the button label
   bool mActive;             ///< Stores the active state
 } ;
@@ -168,4 +170,4 @@ inline const Toolkit::Internal::RadioButton& GetImplementation(const Toolkit::Ra
 } // namespace Toolkit
 } // namespace Dali
 
-#endif // __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__
\ No newline at end of file
+#endif // __DALI_TOOLKIT_INTERNAL_RADIO_BUTTON_H__