d3f21d74039bf98e2e26a2bf8d72e929e67fa19c
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / push-button.cpp
1 /*
2  * Copyright (c) 2015 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( Actor image )
78 {
79   Dali::Toolkit::GetImplementation( *this ).SetButtonImage( image );
80 }
81
82 Actor PushButton::GetButtonImage() const
83 {
84   return Dali::Toolkit::GetImplementation( *this ).GetButtonImage();
85 }
86
87 void PushButton::SetBackgroundImage( Actor image )
88 {
89   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( image );
90 }
91
92 Actor PushButton::GetBackgroundImage() const
93 {
94   return Dali::Toolkit::GetImplementation( *this ).GetBackgroundImage();
95 }
96
97 void PushButton::SetSelectedImage( Actor image )
98 {
99   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( image );
100 }
101
102 Actor PushButton::GetSelectedImage() const
103 {
104   return Dali::Toolkit::GetImplementation( *this ).GetSelectedImage();
105 }
106
107 void PushButton::SetSelectedBackgroundImage( Actor image )
108 {
109   Dali::Toolkit::GetImplementation( *this ).SetSelectedBackgroundImage( image );
110 }
111
112 Actor PushButton::GetSelectedBackgroundImage() const
113 {
114   return Dali::Toolkit::GetImplementation( *this ).GetSelectedBackgroundImage();
115 }
116
117 void PushButton::SetDisabledBackgroundImage( Actor image )
118 {
119   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( image );
120 }
121
122 Actor PushButton::GetDisabledBackgroundImage() const
123 {
124   return Dali::Toolkit::GetImplementation( *this ).GetDisabledBackgroundImage();
125 }
126
127 void PushButton::SetDisabledImage( Actor image )
128 {
129   Dali::Toolkit::GetImplementation( *this ).SetDisabledImage( image );
130 }
131
132 Actor PushButton::GetDisabledImage() const
133 {
134   return Dali::Toolkit::GetImplementation( *this ).GetDisabledImage();
135 }
136
137 } // namespace Toolkit
138
139 } // namespace Dali