X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fbuttons%2Fradio-button-impl.cpp;h=79ff3207b58ac666b3a39345875743a43c9249a5;hp=2bcb9014bf350695c01179beee11178452a68e50;hb=43c5e7a1be2bb4b6eeb0755ad58aa20baa0095d1;hpb=2ddfbb9e23a7c3fc30e604236c41e0ef6d2ed6a2 diff --git a/dali-toolkit/internal/controls/buttons/radio-button-impl.cpp b/dali-toolkit/internal/controls/buttons/radio-button-impl.cpp index 2bcb901..79ff320 100644 --- a/dali-toolkit/internal/controls/buttons/radio-button-impl.cpp +++ b/dali-toolkit/internal/controls/buttons/radio-button-impl.cpp @@ -20,12 +20,22 @@ #include "radio-button-impl.h" // EXTERNAL INCLUDES -#include +#include #include -#include +#include -using namespace Dali; -using namespace Dali::Toolkit::Internal; +#if defined(DEBUG_ENABLED) + extern Debug::Filter* gLogButtonFilter; +#endif + +namespace Dali +{ + +namespace Toolkit +{ + +namespace Internal +{ namespace { @@ -37,10 +47,6 @@ BaseHandle Create() TypeRegistration typeRegistration( typeid( Toolkit::RadioButton ), typeid( Toolkit::Button ), Create); -const char* const UNSELECTED_BUTTON_IMAGE_DIR = DALI_IMAGE_DIR "radio-button-unselected.png"; -const char* const SELECTED_BUTTON_IMAGE_DIR = DALI_IMAGE_DIR "radio-button-selected.png"; - -const Vector3 DISTANCE_BETWEEN_IMAGE_AND_LABEL(5.0f, 0.0f, 0.0f); } Dali::Toolkit::RadioButton RadioButton::New() @@ -59,188 +65,55 @@ Dali::Toolkit::RadioButton RadioButton::New() } RadioButton::RadioButton() - : mSelected(false) { - mUnselectedImage = Dali::Image::New( UNSELECTED_BUTTON_IMAGE_DIR ); - mSelectedImage = Dali::Image::New( SELECTED_BUTTON_IMAGE_DIR ); - - mRadioIcon = Dali::ImageActor::New( mUnselectedImage ); + SetTogglableButton(true); } RadioButton::~RadioButton() { } -void RadioButton::SetLabel(const std::string& label) +void RadioButton::OnInitialize() { - TextActor textActor = TextActor::DownCast( mLabel ); - if( textActor ) - { - textActor.SetText( label ); - } - else - { - Toolkit::TextView newTextView = Toolkit::TextView::New( label ); - SetLabel( newTextView ); - } - - RelayoutRequest(); + Button::OnInitialize(); } -void RadioButton::SetLabel(Actor label) +bool RadioButton::OnToggleReleased() { - if( mLabel != label ) + // Radio button overrides toggle release (button up) as doesn't allow un-selection to be performed on it directly. + bool stateChanged = false; + if( !IsSelected() ) { - if( mLabel ) - { - mRadioIcon.Remove( mLabel ); - } - - if( label ) - { - label.SetParentOrigin( ParentOrigin::CENTER_RIGHT ); - label.SetAnchorPoint( AnchorPoint::CENTER_LEFT ); - label.MoveBy( DISTANCE_BETWEEN_IMAGE_AND_LABEL ); - mRadioIcon.Add( label ); - } - - mLabel = label; - - RelayoutRequest(); + Button::SetSelected( true ); // Set button to selected as previously unselected + stateChanged = true; } + return stateChanged; } -Actor RadioButton::GetLabel() const +void RadioButton::OnStateChange( State newState ) { - return mLabel; -} + // Radio button can be part of a group, if a button in the group is selected then all others should be unselected + DALI_LOG_INFO( gLogButtonFilter, Debug::Verbose, "RadioButton::OnStateChange state(%d)\n", newState ); -void RadioButton::SetSelected(bool selected) -{ - if( mSelected != selected ) + if ( SELECTED_STATE == newState ) { - if( selected ) + Actor parent = Self().GetParent(); + if( parent ) { - Actor parent = Self().GetParent(); - if( parent ) + for( unsigned int i = 0; i < parent.GetChildCount(); ++i ) { - for( unsigned int i = 0; i < parent.GetChildCount(); ++i ) + Dali::Toolkit::RadioButton radioButtonChild = Dali::Toolkit::RadioButton::DownCast( parent.GetChildAt( i ) ); + if( radioButtonChild && radioButtonChild != Self() ) { - Dali::Toolkit::RadioButton rbChild = Dali::Toolkit::RadioButton::DownCast(parent.GetChildAt(i)); - - if( rbChild ) - { - rbChild.SetSelected(false); - } + radioButtonChild.SetSelected( false ); } } - - mSelected = true; - mRadioIcon.SetImage(mSelectedImage); - } - else - { - mSelected = false; - mRadioIcon.SetImage(mUnselectedImage); } - - // Raise state changed signal - Toolkit::RadioButton handle( GetOwner() ); - mStateChangedSignal.Emit( handle, mSelected ); - - RelayoutRequest(); } } -bool RadioButton::IsSelected()const -{ - return mSelected; -} - -void RadioButton::ToggleState() -{ - SetSelected(!mSelected); -} - -void RadioButton::OnRelayout( const Vector2& /*size*/, ActorSizeContainer& container ) -{ - Vector3 newSize( mRadioIcon.GetNaturalSize() ); - - if( mLabel ) - { - // Offset the label from the radio button image - newSize.width += DISTANCE_BETWEEN_IMAGE_AND_LABEL.width; +} // namespace Internal - // Find the size of the control using size negotiation - Vector3 actorNaturalSize( mLabel.GetNaturalSize() ); - Control::Relayout( mLabel, Vector2( actorNaturalSize.width, actorNaturalSize.height ), container ); +} // namespace Toolkit - Vector3 actorSize( mLabel.GetSize() ); - newSize.width += actorSize.width; - newSize.height = std::max( newSize.height, actorSize.height ); - } - - Self().SetSize( newSize ); -} - -void RadioButton::OnInitialize() -{ - mRadioIcon.SetAnchorPoint( AnchorPoint::CENTER_LEFT ); - mRadioIcon.SetParentOrigin( ParentOrigin::CENTER_LEFT ); - Self().Add( mRadioIcon ); - - RelayoutRequest(); -} - -void RadioButton::OnButtonUp() -{ - // Don't allow selection on an already selected radio button - if( !mSelected ) - { - ToggleState(); - } -} - -void RadioButton::SetProperty(BaseObject* object, Property::Index propertyIndex, const Property::Value& value) -{ - Toolkit::RadioButton radioButton = Toolkit::RadioButton::DownCast( Dali::BaseHandle( object ) ); - - if( radioButton ) - { - RadioButton& radioButtonImpl( GetImplementation( radioButton ) ); - - if ( propertyIndex == Toolkit::Button::PROPERTY_TOGGLED ) - { - radioButtonImpl.SetSelected( value.Get< bool >( ) ); - } - else if ( propertyIndex == Toolkit::Button::PROPERTY_LABEL_ACTOR ) - { - radioButtonImpl.SetLabel( Scripting::NewActor( value.Get< Property::Map >( ) ) ); - } - } -} - -Property::Value RadioButton::GetProperty(BaseObject* object, Property::Index propertyIndex) -{ - Property::Value value; - - Toolkit::RadioButton radioButton = Toolkit::RadioButton::DownCast( Dali::BaseHandle(object) ); - - if( radioButton ) - { - RadioButton& radioButtonImpl( GetImplementation( radioButton ) ); - - if ( propertyIndex == Toolkit::Button::PROPERTY_TOGGLED ) - { - value = radioButtonImpl.mSelected; - } - else if ( propertyIndex == Toolkit::Button::PROPERTY_LABEL_ACTOR ) - { - Property::Map map; - Scripting::CreatePropertyMap( radioButtonImpl.mLabel, map ); - value = map; - } - } - - return value; -} +} // namespace Dali