Merge "support grabHandleColor property to TextField/TextEditor" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / buttons / push-button-impl.cpp
1 /*
2  * Copyright (c) 2021 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 #include "push-button-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/scripting/scripting.h>
23 #include <dali/integration-api/debug.h>
24 #include <dali/public-api/object/type-registry-helper.h>
25 #include <dali/public-api/object/type-registry.h>
26
27 // INTERNAL INCLUDES
28 #include <dali-toolkit/devel-api/controls/control-depth-index-ranges.h>
29 #include <dali-toolkit/devel-api/visual-factory/visual-factory.h>
30 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
31 #include <dali-toolkit/public-api/controls/text-controls/text-label.h>
32
33 #if defined(DEBUG_ENABLED)
34 extern Debug::Filter* gLogButtonFilter;
35 #endif
36
37 namespace Dali
38 {
39 namespace Toolkit
40 {
41 namespace Internal
42 {
43 namespace
44 {
45 BaseHandle Create()
46 {
47   return Toolkit::PushButton::New();
48 }
49
50 // Properties
51
52 DALI_TYPE_REGISTRATION_BEGIN(Toolkit::PushButton, Toolkit::Button, Create)
53
54 DALI_PROPERTY_REGISTRATION(Toolkit, PushButton, "labelPadding", STRING, LABEL_PADDING)
55 DALI_PROPERTY_REGISTRATION(Toolkit, PushButton, "iconPadding", STRING, ICON_PADDING)
56
57 DALI_TYPE_REGISTRATION_END()
58
59 } // unnamed namespace
60
61 namespace
62 {
63 } // unnamed namespace
64
65 Dali::Toolkit::PushButton PushButton::New()
66 {
67   // Create the implementation, temporarily owned on stack
68   IntrusivePtr<PushButton> internalPushButton = new PushButton();
69
70   // Pass ownership to CustomActor
71   Dali::Toolkit::PushButton pushButton(*internalPushButton);
72
73   // Second-phase init of the implementation
74   // This can only be done after the CustomActor connection has been made...
75   internalPushButton->Initialize();
76
77   return pushButton;
78 }
79
80 PushButton::PushButton()
81 : Button(),
82   mIconAlignment(RIGHT)
83 {
84 }
85
86 PushButton::~PushButton()
87 {
88 }
89
90 void PushButton::OnInitialize()
91 {
92   Button::OnInitialize();
93
94   // Push button requires the Leave event.
95   Actor self = Self();
96   self.SetProperty(Actor::Property::LEAVE_REQUIRED, true);
97
98   DevelControl::SetAccessibilityConstructor(self, [](Dali::Actor actor) {
99     return std::unique_ptr<Dali::Accessibility::Accessible>(
100       new AccessibleImpl(actor, Dali::Accessibility::Role::PUSH_BUTTON));
101   });
102 }
103
104 void PushButton::SetIconAlignment(const PushButton::IconAlignment iconAlignment)
105 {
106   mIconAlignment = iconAlignment;
107   Button::Align labelAlignment;
108   switch(iconAlignment)
109   {
110     case RIGHT:
111     {
112       labelAlignment = Button::BEGIN;
113       break;
114     }
115     case TOP:
116     {
117       labelAlignment = Button::BOTTOM;
118       break;
119     }
120     case BOTTOM:
121     {
122       labelAlignment = Button::TOP;
123       break;
124     }
125     case LEFT:
126     default:
127       labelAlignment = Button::END;
128       break;
129   }
130
131   Button::SetLabelAlignment(labelAlignment);
132 }
133
134 const PushButton::IconAlignment PushButton::GetIconAlignment() const
135 {
136   return mIconAlignment;
137 }
138
139 void PushButton::SetProperty(BaseObject* object, Property::Index propertyIndex, const Property::Value& value)
140 {
141   Toolkit::PushButton pushButton = Toolkit::PushButton::DownCast(Dali::BaseHandle(object));
142
143   if(pushButton)
144   {
145     PushButton& pushButtonImpl(GetImplementation(pushButton));
146
147     // Properties remain here for Tizen 3.0 legacy requirements. Are now in Button base class
148
149     switch(propertyIndex)
150     {
151       case Toolkit::PushButton::Property::LABEL_PADDING:
152       {
153         Vector4 padding(value.Get<Vector4>());
154         pushButtonImpl.Button::SetLabelPadding(Padding(padding.x, padding.y, padding.z, padding.w));
155         break;
156       }
157       case Toolkit::PushButton::Property::ICON_PADDING:
158       {
159         Vector4 padding(value.Get<Vector4>());
160         pushButtonImpl.Button::SetForegroundPadding(Padding(padding.x, padding.y, padding.z, padding.w));
161         break;
162       }
163     }
164   }
165 }
166
167 Property::Value PushButton::GetProperty(BaseObject* object, Property::Index propertyIndex)
168 {
169   Property::Value value;
170
171   Toolkit::PushButton pushButton = Toolkit::PushButton::DownCast(Dali::BaseHandle(object));
172
173   if(pushButton)
174   {
175     PushButton& pushButtonImpl(GetImplementation(pushButton));
176
177     switch(propertyIndex)
178     {
179       case Toolkit::PushButton::Property::LABEL_PADDING:
180       {
181         Padding padding = pushButtonImpl.Button::GetLabelPadding();
182         value           = Vector4(padding.x, padding.y, padding.top, padding.bottom);
183         break;
184       }
185       case Toolkit::PushButton::Property::ICON_PADDING:
186       {
187         Padding padding = pushButtonImpl.Button::GetForegroundPadding();
188         value           = Vector4(padding.x, padding.y, padding.top, padding.bottom);
189         break;
190       }
191     }
192   }
193
194   return value;
195 }
196
197 Dali::Accessibility::States PushButton::AccessibleImpl::CalculateStates()
198 {
199   auto tmp                                 = Button::AccessibleImpl::CalculateStates();
200   auto slf                                 = Toolkit::Button::DownCast(self);
201   tmp[Dali::Accessibility::State::PRESSED] = slf.GetProperty<bool>(Toolkit::Button::Property::SELECTED);
202   return tmp;
203 }
204
205 void PushButton::OnStateChange(State newState)
206 {
207   // TODO: replace it with OnPropertySet hook once Button::Property::SELECTED will be consistently used
208   if(Dali::Accessibility::IsUp() && (newState == SELECTED_STATE || newState == UNSELECTED_STATE))
209   {
210     Dali::Accessibility::Accessible::Get(Self())->EmitStateChanged(
211       Dali::Accessibility::State::PRESSED, newState == SELECTED_STATE ? 1 : 0, 0);
212
213     if(Self().GetProperty<bool>(Toolkit::Button::Property::TOGGLABLE))
214     {
215       Dali::Accessibility::Accessible::Get(Self())->EmitStateChanged(
216         Dali::Accessibility::State::CHECKED, newState == SELECTED_STATE ? 1 : 0, 0);
217     }
218   }
219 }
220
221 } // namespace Internal
222
223 } // namespace Toolkit
224
225 } // namespace Dali