Merge "Fixes crash when fontclient is unable to supply a correct bitmap" into tizen
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / buttons / check-box-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 "check-box-button.h"
21
22 // INTERNAL INCLUDES
23
24 #include <dali-toolkit/internal/controls/buttons/check-box-button-impl.h>
25 #include <dali/public-api/actors/image-actor.h>
26
27 namespace Dali
28 {
29
30 namespace Toolkit
31 {
32
33 CheckBoxButton::CheckBoxButton()
34 : Button()
35 {
36 }
37
38 CheckBoxButton::CheckBoxButton( const CheckBoxButton& checkBox )
39 : Button( checkBox )
40 {
41 }
42
43 CheckBoxButton& CheckBoxButton::operator=( const CheckBoxButton& checkBox )
44 {
45   if( &checkBox != this )
46   {
47     Button::operator=( checkBox );
48   }
49   return *this;
50 }
51
52 CheckBoxButton::~CheckBoxButton()
53 {
54 }
55
56 CheckBoxButton CheckBoxButton::New()
57 {
58   return Internal::CheckBoxButton::New();
59 }
60
61 CheckBoxButton CheckBoxButton::DownCast( BaseHandle handle )
62 {
63   return Control::DownCast<CheckBoxButton, Internal::CheckBoxButton>(handle);
64 }
65
66 void CheckBoxButton::SetBackgroundImage( Image image )
67 {
68   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( ImageActor::New( image ) );
69 }
70
71 void CheckBoxButton::SetBackgroundImage( Actor image )
72 {
73   Dali::Toolkit::GetImplementation( *this ).SetBackgroundImage( image );
74 }
75
76 Actor CheckBoxButton::GetBackgroundImage() const
77 {
78   return Dali::Toolkit::GetImplementation( *this ).GetBackgroundImage();
79 }
80
81 void CheckBoxButton::SetSelectedImage( Image image )
82 {
83   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( ImageActor::New( image ) );
84 }
85
86 void CheckBoxButton::SetSelectedImage( Actor image )
87 {
88   Dali::Toolkit::GetImplementation( *this ).SetSelectedImage( image );
89 }
90
91 Actor CheckBoxButton::GetSelectedImage() const
92 {
93   return Dali::Toolkit::GetImplementation( *this ).GetSelectedImage();
94 }
95
96 void CheckBoxButton::SetDisabledBackgroundImage( Image image )
97 {
98   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( ImageActor::New( image ) );
99 }
100
101 void CheckBoxButton::SetDisabledBackgroundImage( Actor image )
102 {
103   Dali::Toolkit::GetImplementation( *this ).SetDisabledBackgroundImage( image );
104 }
105
106 Actor CheckBoxButton::GetDisabledBackgroundImage() const
107 {
108   return Dali::Toolkit::GetImplementation( *this ).GetDisabledBackgroundImage();
109 }
110
111 void CheckBoxButton::SetDisabledSelectedImage( Image image )
112 {
113   Dali::Toolkit::GetImplementation( *this ).SetDisabledSelectedImage( ImageActor::New( image ) );
114 }
115
116 void CheckBoxButton::SetDisabledSelectedImage( Actor image )
117 {
118   Dali::Toolkit::GetImplementation( *this ).SetDisabledSelectedImage( image );
119 }
120
121 Actor CheckBoxButton::GetDisabledSelectedImage() const
122 {
123   return Dali::Toolkit::GetImplementation( *this ).GetDisabledSelectedImage();
124 }
125
126 CheckBoxButton::CheckBoxButton( Internal::CheckBoxButton& implementation )
127 : Button( implementation )
128 {
129 }
130
131 CheckBoxButton::CheckBoxButton( Dali::Internal::CustomActor* internal )
132 : Button( internal )
133 {
134   VerifyCustomActorPointer<Internal::CheckBoxButton>(internal);
135 }
136
137 } // namespace Toolkit
138
139 } // namespace Dali