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%2Fradio-button.h;h=b125ab3ad8790dab062780780dda191b25bcd048;hp=2793710b04aadb5e16e85a643fc9c40a3af2dbb4;hb=4593cc619ab0739fc8586c0c752209c555b0c8e3;hpb=b694e7e2ae624e206e1548b1a863c554eb9cd4d7 diff --git a/dali-toolkit/public-api/controls/buttons/radio-button.h b/dali-toolkit/public-api/controls/buttons/radio-button.h index 2793710..b125ab3 100644 --- a/dali-toolkit/public-api/controls/buttons/radio-button.h +++ b/dali-toolkit/public-api/controls/buttons/radio-button.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_RADIO_BUTTON_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2029 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -64,21 +64,21 @@ class RadioButton; * * // Create a group to bind two or more RadioButtons together * Actor radioGroup = Actor::New(); - * radioGroup.SetParentOrigin( ParentOrigin::CENTER ); + * radioGroup.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); * Stage::GetCurrent().Add( radioGroup ); * * // Make the first RadioButton and add it to its parent * RadioButton button1 = RadioButton::New(); * button1.SetProperty( Button::Property::LABEL, "button1" ); * button1.SetBackgroundColor( Color::WHITE ); - * button1.SetPosition( 0, -40 ); + * button1.SetProperty( Actor::Property::POSITION, Vector2( 0, -40 ) ); * radioGroup.Add( button1 ); * * // Make more RadioButtons and add them to their parent * RadioButton button2 = RadioButton::New(); * button2.SetProperty( Toolkit::Button::Property::LABEL, "button2" ); * button2.SetBackgroundColor( Color::WHITE ); - * button2.SetPosition( 0, 40 ); + * button2.SetProperty( Actor::Property::POSITION, Vector2( 0, 40 ) ); * radioGroup.Add( button2 ); * * @endcode @@ -103,6 +103,14 @@ class DALI_TOOLKIT_API RadioButton: public Button RadioButton( const RadioButton& radioButton ); /** + * @brief Move constructor + * @SINCE_1_9.23 + * + * @param[in] rhs A reference to the moved handle + */ + RadioButton( RadioButton&& rhs ); + + /** * @brief Assignment operator. * @SINCE_1_0.0 * @param[in] radioButton Handle to an object @@ -111,6 +119,15 @@ class DALI_TOOLKIT_API RadioButton: public Button RadioButton& operator=( const RadioButton& radioButton ); /** + * @brief Move assignment + * @SINCE_1_9.23 + * + * @param[in] rhs A reference to the moved handle + * @return A reference to this + */ + RadioButton& operator=( RadioButton&& rhs ); + + /** * @brief Destructor. * * This is non-virtual since derived Handle types must not contain data or virtual methods.