X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fcontrols%2Fbuttons%2Fcheck-box-button.h;h=4ae4608c2243ff8653e2303fc50d4756b538b8b9;hb=dea624eb348a4926d8761c8a1364f03f9f71acf5;hp=9322a466c5b94d8dd08143b054b86fc994f091c4;hpb=c01f2590ed7bb00d9b3600511d08dc420261ed46;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/controls/buttons/check-box-button.h b/dali-toolkit/public-api/controls/buttons/check-box-button.h index 9322a46..4ae4608 100644 --- a/dali-toolkit/public-api/controls/buttons/check-box-button.h +++ b/dali-toolkit/public-api/controls/buttons/check-box-button.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_CHECK_BOX_BUTTON_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 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. @@ -61,7 +61,7 @@ class CheckBoxButton; * CheckBoxButton button = CheckBoxButton::New(); * button.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); * button.SetProperty( Button::Property::LABEL, "Check" ); - * button.SetSize( 200, 40 ); + * button.SetProperty( Actor::Property::SIZE, Vector2( 200, 40 ); * button.SetBackgroundColor( Color::WHITE ); * Stage::GetCurrent().Add( button ); * @@ -97,6 +97,14 @@ public: CheckBoxButton( const CheckBoxButton& checkBox ); /** + * @brief Move constructor + * @SINCE_1_9.23 + * + * @param[in] rhs A reference to the moved handle + */ + CheckBoxButton( CheckBoxButton&& rhs ); + + /** * @brief Assignment operator. * @SINCE_1_0.0 * @param[in] checkBox Handle to an object @@ -105,6 +113,15 @@ public: CheckBoxButton& operator=( const CheckBoxButton& checkBox ); /** + * @brief Move assignment + * @SINCE_1_9.23 + * + * @param[in] rhs A reference to the moved handle + * @return A reference to this + */ + CheckBoxButton& operator=( CheckBoxButton&& rhs ); + + /** * @brief Destructor. * * This is non-virtual since derived Handle types must not contain data or virtual methods.