Size negotiation patch 4: Remove SetRelayoutEnabled
[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   Actor imageActor = ImageActor::New( image );
80   Dali::Toolkit::GetImplementation( *this ).SetButtonImage( imageActor );
81 }
82
83 void PushButton::SetButtonImage( Actor image )
84 {
85   Dali::Toolkit::GetImplementation( *this ).SetButtonImage( image );
86 }
87
88 Actor PushButton::GetButtonImage() const
89 {
90   return Dali::Toolkit::GetImplementation( *this ).GetButtonImage();
91 }
92
93 void PushButton::SetBackgroundImage( Image image )
94 {
95   Actor imageActor = ImageActor::New( image );
96   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( imageActor );
97 }
98
99 void PushButton::SetBackgroundImage( Actor image )
100 {
101   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( image );
102 }
103
104 Actor PushButton::GetBackgroundImage() const
105 {
106   return Dali::Toolkit::GetImplementation( *this ).GetBackgroundImage();
107 }
108
109 void PushButton::SetSelectedImage( Image image )
110 {
111   Actor imageActor = ImageActor::New( image );
112   imageActor.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS );
113   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( imageActor );
114 }
115
116 void PushButton::SetSelectedImage( Actor image )
117 {
118   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( image );
119 }
120
121 Actor PushButton::GetSelectedImage() const
122 {
123   return Dali::Toolkit::GetImplementation( *this ).GetSelectedImage();
124 }
125
126 void PushButton::SetSelectedBackgroundImage( Image image )
127 {
128   Dali::Toolkit::GetImplementation( *this ).SetSelectedBackgroundImage( ImageActor::New( image ) );
129 }
130
131 void PushButton::SetSelectedBackgroundImage( Actor image )
132 {
133   Dali::Toolkit::GetImplementation( *this ).SetSelectedBackgroundImage( image );
134 }
135
136 Actor PushButton::GetSelectedBackgroundImage() const
137 {
138   return Dali::Toolkit::GetImplementation( *this ).GetSelectedBackgroundImage();
139 }
140
141 void PushButton::SetDisabledBackgroundImage( Image image )
142 {
143   Actor imageActor = ImageActor::New( image );
144   imageActor.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS );
145   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( imageActor );
146 }
147
148 void PushButton::SetDisabledBackgroundImage( Actor image )
149 {
150   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( image );
151 }
152
153 Actor PushButton::GetDisabledBackgroundImage() const
154 {
155   return Dali::Toolkit::GetImplementation( *this ).GetDisabledBackgroundImage();
156 }
157
158 void PushButton::SetDisabledImage( Image image )
159 {
160   Actor imageActor = ImageActor::New( image );
161   imageActor.SetResizePolicy( ResizePolicy::USE_NATURAL_SIZE, Dimension::ALL_DIMENSIONS );
162   Dali::Toolkit::GetImplementation( *this ).SetDisabledImage( imageActor );
163 }
164
165 void PushButton::SetDisabledImage( Actor image )
166 {
167   Dali::Toolkit::GetImplementation( *this ).SetDisabledImage( image );
168 }
169
170 Actor PushButton::GetDisabledImage() const
171 {
172   return Dali::Toolkit::GetImplementation( *this ).GetDisabledImage();
173 }
174
175 } // namespace Toolkit
176
177 } // namespace Dali