Formatting API
[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 namespace Toolkit
29 {
30 RadioButton::RadioButton()
31 : Button()
32 {
33 }
34
35 RadioButton::RadioButton(Internal::RadioButton& implementation)
36 : Button(implementation)
37 {
38 }
39
40 RadioButton::RadioButton(const RadioButton& radioButton) = default;
41
42 RadioButton::RadioButton(RadioButton&& rhs) = default;
43
44 RadioButton& RadioButton::operator=(const RadioButton& radioButton) = default;
45
46 RadioButton& RadioButton::operator=(RadioButton&& rhs) = default;
47
48 RadioButton::RadioButton(Dali::Internal::CustomActor* internal)
49 : Button(internal)
50 {
51   VerifyCustomActorPointer<Internal::RadioButton>(internal);
52 }
53
54 RadioButton::~RadioButton()
55 {
56 }
57
58 RadioButton RadioButton::New()
59 {
60   return Internal::RadioButton::New();
61 }
62
63 RadioButton RadioButton::New(const std::string& label)
64 {
65   RadioButton radioButton = Internal::RadioButton::New();
66   radioButton.SetProperty(Toolkit::Button::Property::LABEL, label);
67   return radioButton;
68 }
69
70 RadioButton RadioButton::DownCast(BaseHandle handle)
71 {
72   return Control::DownCast<RadioButton, Internal::RadioButton>(handle);
73 }
74
75 } // namespace Toolkit
76
77 } // namespace Dali