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