Add native dali toggle button, base on latest button using visual.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / buttons / toggle-button.cpp
1 /*
2  * Copyright (c) 2017 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
29 namespace Toolkit
30 {
31
32 ToggleButton::ToggleButton()
33 : Button()
34 {
35 }
36
37 ToggleButton::ToggleButton( Internal::ToggleButton& implementation )
38 : Button( implementation )
39 {
40 }
41
42 ToggleButton::ToggleButton( const ToggleButton& toggleButton )
43 : Button( toggleButton )
44 {
45 }
46
47 ToggleButton& ToggleButton::operator=( const ToggleButton& toggleButton )
48 {
49   if( &toggleButton != this )
50   {
51     Button::operator=( toggleButton );
52   }
53   return *this;
54 }
55
56 ToggleButton::ToggleButton( Dali::Internal::CustomActor* internal )
57 : Button( internal )
58 {
59   VerifyCustomActorPointer<Internal::ToggleButton>(internal);
60 }
61
62 ToggleButton::~ToggleButton()
63 {
64 }
65
66 ToggleButton ToggleButton::New()
67 {
68   return Internal::ToggleButton::New();
69 }
70
71 ToggleButton ToggleButton::DownCast( BaseHandle handle )
72 {
73   return Control::DownCast<ToggleButton, Internal::ToggleButton>(handle);
74 }
75
76 } // namespace Toolkit
77
78 } // namespace Dali