Add move semantics to common and base Toolkit classes
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / radio-button.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19
20 #include <dali-toolkit/public-api/controls/buttons/radio-button.h>
21
22 // INTERNAL INCLUDES
23
24 #include <dali-toolkit/internal/controls/buttons/radio-button-impl.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 RadioButton::RadioButton()
33   : Button()
34 {
35 }
36
37 RadioButton::RadioButton( Internal::RadioButton& implementation )
38   : Button( implementation )
39 {
40 }
41
42 RadioButton::RadioButton( const RadioButton& radioButton ) = default;
43
44 RadioButton::RadioButton( RadioButton&& rhs ) = default;
45
46 RadioButton& RadioButton::operator=( const RadioButton& radioButton ) = default;
47
48 RadioButton& RadioButton::operator=( RadioButton&& rhs ) = default;
49
50 RadioButton::RadioButton( Dali::Internal::CustomActor* internal )
51   : Button( internal )
52 {
53   VerifyCustomActorPointer<Internal::RadioButton>( internal );
54 }
55
56 RadioButton::~RadioButton()
57 {
58 }
59
60 RadioButton RadioButton::New()
61 {
62   return Internal::RadioButton::New();
63 }
64
65 RadioButton RadioButton::New( const std::string& label )
66 {
67   RadioButton radioButton = Internal::RadioButton::New();
68   radioButton.SetProperty( Toolkit::Button::Property::LABEL, label );
69   return radioButton;
70 }
71
72 RadioButton RadioButton::DownCast( BaseHandle handle )
73 {
74   return Control::DownCast<RadioButton, Internal::RadioButton>( handle );
75 }
76
77 } // namespace Toolkit
78
79 } // namespace Dali