Merge "Typo fixed in Control implementation doc." into tizen
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / push-button.cpp
1 /*
2  * Copyright (c) 2014 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/push-button.h>
21
22 // INTERNAL INCLUDES
23
24 #include <dali-toolkit/internal/controls/buttons/push-button-impl.h>
25
26 namespace Dali
27 {
28
29 namespace Toolkit
30 {
31
32 PushButton::PushButton()
33 : Button()
34 {
35 }
36
37 PushButton::PushButton( Internal::PushButton& implementation )
38 : Button( implementation )
39 {
40 }
41
42 PushButton::PushButton( const PushButton& pushButton )
43 : Button( pushButton )
44 {
45 }
46
47 PushButton& PushButton::operator=( const PushButton& pushButton )
48 {
49   if( &pushButton != this )
50   {
51     Button::operator=( pushButton );
52   }
53   return *this;
54 }
55
56 PushButton::PushButton( Dali::Internal::CustomActor* internal )
57 : Button( internal )
58 {
59   VerifyCustomActorPointer<Internal::PushButton>(internal);
60 }
61
62 PushButton::~PushButton()
63 {
64 }
65
66 PushButton PushButton::New()
67 {
68   return Internal::PushButton::New();
69 }
70
71 PushButton PushButton::DownCast( BaseHandle handle )
72 {
73   return Control::DownCast<PushButton, Internal::PushButton>(handle);
74 }
75
76 void PushButton::SetButtonImage( Image image )
77 {
78   Dali::Toolkit::GetImplementation( *this ).SetButtonImage( image );
79 }
80
81 void PushButton::SetButtonImage( Actor image )
82 {
83   Dali::Toolkit::GetImplementation( *this ).SetButtonImage( image );
84 }
85
86 Actor PushButton::GetButtonImage() const
87 {
88   return Dali::Toolkit::GetImplementation( *this ).GetButtonImage();
89 }
90
91 void PushButton::SetBackgroundImage( Image image )
92 {
93   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( image );
94 }
95
96 void PushButton::SetBackgroundImage( Actor image )
97 {
98   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( image );
99 }
100
101 Actor PushButton::GetBackgroundImage() const
102 {
103   return Dali::Toolkit::GetImplementation( *this ).GetBackgroundImage();
104 }
105
106 void PushButton::SetSelectedImage( Image image )
107 {
108   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( image );
109 }
110
111 void PushButton::SetSelectedImage( Actor image )
112 {
113   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( image );
114 }
115
116 Actor PushButton::GetSelectedImage() const
117 {
118   return Dali::Toolkit::GetImplementation( *this ).GetSelectedImage();
119 }
120
121 void PushButton::SetDisabledBackgroundImage( Image image )
122 {
123   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( image );
124 }
125
126 void PushButton::SetDisabledBackgroundImage( Actor image )
127 {
128   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( image );
129 }
130
131 Actor PushButton::GetDisabledBackgroundImage() const
132 {
133   return Dali::Toolkit::GetImplementation( *this ).GetDisabledBackgroundImage();
134 }
135
136 void PushButton::SetDisabledImage( Image image )
137 {
138   Dali::Toolkit::GetImplementation( *this ).SetDisabledImage( image );
139 }
140
141 void PushButton::SetDisabledImage( Actor image )
142 {
143   Dali::Toolkit::GetImplementation( *this ).SetDisabledImage( image );
144 }
145
146 Actor PushButton::GetDisabledImage() const
147 {
148   return Dali::Toolkit::GetImplementation( *this ).GetDisabledImage();
149 }
150
151 } // namespace Toolkit
152
153 } // namespace Dali