Add some APIs into web view.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / buttons / toggle-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/devel-api/controls/buttons/toggle-button.h>
21
22 // INTERNAL INCLUDES
23
24 #include <dali-toolkit/internal/controls/buttons/toggle-button-impl.h>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 ToggleButton::ToggleButton()
31 : Button()
32 {
33 }
34
35 ToggleButton::ToggleButton(Internal::ToggleButton& implementation)
36 : Button(implementation)
37 {
38 }
39
40 ToggleButton::ToggleButton(const ToggleButton& toggleButton)
41 : Button(toggleButton)
42 {
43 }
44
45 ToggleButton& ToggleButton::operator=(const ToggleButton& toggleButton)
46 {
47   if(&toggleButton != this)
48   {
49     Button::operator=(toggleButton);
50   }
51   return *this;
52 }
53
54 ToggleButton::ToggleButton(Dali::Internal::CustomActor* internal)
55 : Button(internal)
56 {
57   VerifyCustomActorPointer<Internal::ToggleButton>(internal);
58 }
59
60 ToggleButton::~ToggleButton()
61 {
62 }
63
64 ToggleButton ToggleButton::New()
65 {
66   return Internal::ToggleButton::New();
67 }
68
69 ToggleButton ToggleButton::DownCast(BaseHandle handle)
70 {
71   return Control::DownCast<ToggleButton, Internal::ToggleButton>(handle);
72 }
73
74 } // namespace Toolkit
75
76 } // namespace Dali