[dali_2.3.19] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / check-box-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 "check-box-button.h"
21
22 // INTERNAL INCLUDES
23
24 #include <dali-toolkit/internal/controls/buttons/check-box-button-impl.h>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 CheckBoxButton::CheckBoxButton()
31 : Button()
32 {
33 }
34
35 CheckBoxButton::CheckBoxButton(const CheckBoxButton& checkBox) = default;
36
37 CheckBoxButton::CheckBoxButton(CheckBoxButton&& rhs) noexcept = default;
38
39 CheckBoxButton& CheckBoxButton::operator=(const CheckBoxButton& checkBox) = default;
40
41 CheckBoxButton& CheckBoxButton::operator=(CheckBoxButton&& rhs) noexcept = default;
42
43 CheckBoxButton::~CheckBoxButton()
44 {
45 }
46
47 CheckBoxButton CheckBoxButton::New()
48 {
49   return Internal::CheckBoxButton::New();
50 }
51
52 CheckBoxButton CheckBoxButton::DownCast(BaseHandle handle)
53 {
54   return Control::DownCast<CheckBoxButton, Internal::CheckBoxButton>(handle);
55 }
56
57 CheckBoxButton::CheckBoxButton(Internal::CheckBoxButton& implementation)
58 : Button(implementation)
59 {
60 }
61
62 CheckBoxButton::CheckBoxButton(Dali::Internal::CustomActor* internal)
63 : Button(internal)
64 {
65   VerifyCustomActorPointer<Internal::CheckBoxButton>(internal);
66 }
67
68 } // namespace Toolkit
69
70 } // namespace Dali