[NUI] Fix the mismatch between the selected state and clicked event.
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / Button.Internal.cs
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 using System;
19 using System.ComponentModel;
20 using System.Diagnostics;
21 using Tizen.NUI.BaseComponents;
22 using Tizen.NUI.Components.Extension;
23 using Tizen.NUI.Accessibility; // To use AccessibilityManager
24
25 namespace Tizen.NUI.Components
26 {
27     public partial class Button
28     {
29         private ImageView overlayImage;
30         private TextLabel buttonText;
31         private ImageView buttonIcon;
32         private Vector2 size;
33
34         private EventHandler<StateChangedEventArgs> stateChangeHandler;
35
36         private bool isPressed = false;
37         private bool styleApplied = false;
38
39         /// <summary>
40         /// Get accessibility name.
41         /// </summary>
42         [EditorBrowsable(EditorBrowsableState.Never)]
43         protected override string AccessibilityGetName()
44         {
45             return Text;
46         }
47
48         /// <summary>
49         /// Prevents from showing child widgets in AT-SPI tree.
50         /// </summary>
51         [EditorBrowsable(EditorBrowsableState.Never)]
52         protected override bool AccessibilityShouldReportZeroChildren()
53         {
54             return true;
55         }
56
57         /// <summary>
58         /// The ButtonExtension instance that is injected by ButtonStyle.
59         /// </summary>
60         [EditorBrowsable(EditorBrowsableState.Never)]
61         protected ButtonExtension Extension { get; set; }
62
63         /// <summary>
64         /// Creates Button's text part.
65         /// </summary>
66         /// <return>The created Button's text part.</return>
67         [EditorBrowsable(EditorBrowsableState.Never)]
68         protected virtual TextLabel CreateText()
69         {
70             return new TextLabel(new TextLabelStyle())
71             {
72                 HorizontalAlignment = HorizontalAlignment.Center,
73                 VerticalAlignment = VerticalAlignment.Center,
74                 AccessibilityHighlightable = false,
75             };
76         }
77
78         /// <summary>
79         /// Creates Button's icon part.
80         /// </summary>
81         /// <return>The created Button's icon part.</return>
82         [EditorBrowsable(EditorBrowsableState.Never)]
83         protected virtual ImageView CreateIcon()
84         {
85             return new ImageView()
86             {
87                 AccessibilityHighlightable = false
88             };
89         }
90
91         /// <summary>
92         /// Creates Button's overlay image part.
93         /// </summary>
94         /// <return>The created Button's overlay image part.</return>
95         [EditorBrowsable(EditorBrowsableState.Never)]
96         protected virtual ImageView CreateOverlayImage()
97         {
98             return new ImageView
99             {
100                 PositionUsesPivotPoint = true,
101                 ParentOrigin = NUI.ParentOrigin.Center,
102                 PivotPoint = NUI.PivotPoint.Center,
103                 WidthResizePolicy = ResizePolicyType.FillToParent,
104                 HeightResizePolicy = ResizePolicyType.FillToParent,
105                 AccessibilityHighlightable = false
106             };
107         }
108
109         /// <summary>
110         /// Called when the Button is Clicked by a user
111         /// </summary>
112         /// <param name="eventArgs">The click information.</param>
113         [EditorBrowsable(EditorBrowsableState.Never)]
114         protected virtual void OnClicked(ClickedEventArgs eventArgs)
115         {
116         }
117
118         /// <summary>
119         /// Get Button style.
120         /// </summary>
121         /// <returns>The default button style.</returns>
122         /// <since_tizen> 8 </since_tizen>
123         protected override ViewStyle CreateViewStyle()
124         {
125             return new ButtonStyle();
126         }
127
128         /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
129         [EditorBrowsable(EditorBrowsableState.Never)]
130         protected override void OnUpdate()
131         {
132             base.OnUpdate();
133             Extension?.OnRelayout(this);
134         }
135
136         /// <inheritdoc/>
137         [EditorBrowsable(EditorBrowsableState.Never)]
138         protected override bool HandleControlStateOnTouch(Touch touch)
139         {
140             if (!IsEnabled || null == touch)
141             {
142                 return false;
143             }
144
145             PointStateType state = touch.GetState(0);
146
147             switch (state)
148             {
149                 case PointStateType.Down:
150                     isPressed = true;
151                     Extension?.SetTouchInfo(touch);
152                     UpdateState();
153                     return true;
154                 case PointStateType.Interrupted:
155                     isPressed = false;
156                     UpdateState();
157                     return true;
158                 case PointStateType.Up:
159                     {
160                         if (!isPressed)
161                         {
162                             return false;
163                         }
164
165                         isPressed = false;
166
167                         if (IsSelectable)
168                         {
169                             Extension?.SetTouchInfo(touch);
170                             IsSelected = !IsSelected;
171                         }
172                         else
173                         {
174                             Extension?.SetTouchInfo(touch);
175                             UpdateState();
176                         }
177
178                         ClickedEventArgs eventArgs = new ClickedEventArgs();
179                         OnClickedInternal(eventArgs);
180
181                         return true;
182                     }
183                 default:
184                     break;
185             }
186             return base.HandleControlStateOnTouch(touch);
187         }
188
189         /// <summary>
190         /// Update Button State.
191         /// </summary>
192         /// <since_tizen> 6 </since_tizen>
193         /// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
194         [EditorBrowsable(EditorBrowsableState.Never)]
195         protected void UpdateState()
196         {
197             if (!styleApplied) return;
198
199             ControlState sourceState = ControlState;
200             ControlState targetState;
201
202             // Normal, Disabled
203             targetState = IsEnabled ? ControlState.Normal : ControlState.Disabled;
204
205             // Selected, DisabledSelected
206             if (IsSelected) targetState += ControlState.Selected;
207
208             // Pressed, PressedSelected
209             if (isPressed) targetState += ControlState.Pressed;
210
211             // Focused, FocusedPressed, FocusedPressedSelected, DisabledFocused, DisabledSelectedFocused
212             if (IsFocused) targetState += ControlState.Focused;
213
214             if (sourceState != targetState)
215             {
216                 ControlState = targetState;
217                 OnUpdate();
218
219                 StateChangedEventArgs e = new StateChangedEventArgs
220                 {
221                     PreviousState = ControlStatesExtension.FromControlStateClass(sourceState),
222                     CurrentState = ControlStatesExtension.FromControlStateClass(targetState)
223                 };
224                 stateChangeHandler?.Invoke(this, e);
225
226                 Extension?.OnControlStateChanged(this, new ControlStateChangedEventArgs(sourceState, targetState));
227             }
228         }
229
230         /// <summary>
231         /// Dispose Button and all children on it.
232         /// </summary>
233         /// <param name="type">Dispose type.</param>
234         /// <since_tizen> 6 </since_tizen>
235         protected override void Dispose(DisposeTypes type)
236         {
237             if (disposed)
238             {
239                 return;
240             }
241
242             if (type == DisposeTypes.Explicit)
243             {
244                 Extension?.OnDispose(this);
245
246                 if (buttonIcon != null)
247                 {
248                     Utility.Dispose(buttonIcon);
249                 }
250                 if (buttonText != null)
251                 {
252                     Utility.Dispose(buttonText);
253                 }
254                 if (overlayImage != null)
255                 {
256                     Utility.Dispose(overlayImage);
257                 }
258             }
259
260             base.Dispose(type);
261         }
262
263         /// <summary>
264         /// Initializes AT-SPI object.
265         /// </summary>
266         [EditorBrowsable(EditorBrowsableState.Never)]
267         public override void OnInitialize()
268         {
269             base.OnInitialize();
270             SetAccessibilityConstructor(Role.PushButton);
271
272             AccessibilityHighlightable = true;
273             EnableControlStatePropagation = true;
274
275             AccessibilityManager.Instance.SetAccessibilityAttribute(this, AccessibilityManager.AccessibilityAttribute.Trait, "Button");
276
277             buttonText = CreateText();
278             buttonIcon = CreateIcon();
279             LayoutItems();
280
281 #if PROFILE_MOBILE
282             Feedback = true;
283 #endif
284         }
285
286         /// <inheritdoc/>
287         [EditorBrowsable(EditorBrowsableState.Never)]
288         public override void OnRelayout(Vector2 size, RelayoutContainer container)
289         {
290             if (size == null) return;
291
292             if (size.Equals(this.size))
293             {
294                 return;
295             }
296
297             this.size = new Vector2(size);
298
299             UpdateSizeAndSpacing();
300         }
301
302         /// <inheritdoc/>
303         [EditorBrowsable(EditorBrowsableState.Never)]
304         protected override void OnControlStateChanged(ControlStateChangedEventArgs controlStateChangedInfo)
305         {
306             base.OnControlStateChanged(controlStateChangedInfo);
307
308             var stateEnabled = !controlStateChangedInfo.CurrentState.Contains(ControlState.Disabled);
309
310             if (IsEnabled != stateEnabled)
311             {
312                 IsEnabled = stateEnabled;
313             }
314
315             var statePressed = controlStateChangedInfo.CurrentState.Contains(ControlState.Pressed);
316
317             if (isPressed != statePressed)
318             {
319                 isPressed = statePressed;
320             }
321         }
322
323         /// <summary>
324         /// Put sub items (e.g. buttonText, buttonIcon) to the right place.
325         /// </summary>
326         [EditorBrowsable(EditorBrowsableState.Never)]
327         protected virtual void LayoutItems()
328         {
329             if (buttonIcon == null || buttonText == null)
330             {
331                 return;
332             }
333
334             buttonIcon.Unparent();
335             buttonText.Unparent();
336             overlayImage?.Unparent();
337
338 #pragma warning disable CA2000
339             Size2D cellPadding = String.IsNullOrEmpty(buttonText.Text) ? new Size2D(0, 0) : itemSpacing;
340 #pragma warning restore CA2000
341
342             if (IconRelativeOrientation == IconOrientation.Left)
343             {
344                 Layout = new LinearLayout()
345                 {
346                     LinearOrientation = LinearLayout.Orientation.Horizontal,
347                     LinearAlignment = itemAlignment,
348                     CellPadding = cellPadding
349                 };
350
351                 Add(buttonIcon);
352                 Add(buttonText);
353             }
354             else if (IconRelativeOrientation == IconOrientation.Right)
355             {
356                 Layout = new LinearLayout()
357                 {
358                     LinearOrientation = LinearLayout.Orientation.Horizontal,
359                     LinearAlignment = itemAlignment,
360                     CellPadding = cellPadding
361                 };
362
363                 Add(buttonText);
364                 Add(buttonIcon);
365             }
366             else if (IconRelativeOrientation == IconOrientation.Top)
367             {
368                 Layout = new LinearLayout()
369                 {
370                     LinearOrientation = LinearLayout.Orientation.Vertical,
371                     LinearAlignment = itemAlignment,
372                     CellPadding = cellPadding
373                 };
374
375                 Add(buttonIcon);
376                 Add(buttonText);
377             }
378             else if (IconRelativeOrientation == IconOrientation.Bottom)
379             {
380                 Layout = new LinearLayout()
381                 {
382                     LinearOrientation = LinearLayout.Orientation.Vertical,
383                     LinearAlignment = itemAlignment,
384                     CellPadding = cellPadding
385                 };
386
387                 Add(buttonText);
388                 Add(buttonIcon);
389             }
390
391             if (overlayImage != null)
392             {
393                 overlayImage.ExcludeLayouting = true;
394                 Add(overlayImage);
395             }
396         }
397
398         private void UpdateSizeAndSpacing()
399         {
400             if (size == null || buttonIcon == null || buttonText == null)
401             {
402                 return;
403             }
404
405             LinearLayout layout = Layout as LinearLayout;
406
407             if (layout == null)
408             {
409                 return;
410             }
411
412             float lengthWithoutText = 0;
413             Size2D cellPadding = null;
414             Extents iconMargin = buttonIcon.Margin ?? new Extents(0);
415             Extents textMargin = buttonText.Margin ?? new Extents(0);
416
417             if (buttonIcon.Size.Width != 0 && buttonIcon.Size.Height != 0)
418             {
419                 lengthWithoutText = buttonIcon.Size.Width;
420
421                 if (!String.IsNullOrEmpty(buttonText.Text))
422                 {
423                     cellPadding = itemSpacing;
424
425                     if (iconRelativeOrientation == IconOrientation.Left || iconRelativeOrientation == IconOrientation.Right)
426                     {
427                         lengthWithoutText += (itemSpacing?.Width ?? 0) + iconMargin.Start + iconMargin.End + textMargin.Start + textMargin.End;
428                     }
429                     else
430                     {
431                         lengthWithoutText += (itemSpacing?.Height ?? 0) + iconMargin.Top + iconMargin.Bottom + textMargin.Top + textMargin.Bottom;
432                     }
433                 }
434             }
435
436             layout.CellPadding = cellPadding ?? new Size2D(0, 0);
437
438             // If the button has fixed width and the text is not empty, the text should not exceed button boundary.
439             if (WidthSpecification != LayoutParamPolicies.WrapContent && !String.IsNullOrEmpty(buttonText.Text))
440             {
441                 buttonText.MaximumSize = new Size2D((int)Math.Max(size.Width - lengthWithoutText, Math.Max(buttonText.MinimumSize.Width, 1)), (int)size.Height);
442             }
443         }
444
445         private void OnClickedInternal(ClickedEventArgs eventArgs)
446         {
447             Command?.Execute(CommandParameter);
448             OnClicked(eventArgs);
449             Extension?.OnClicked(this, eventArgs);
450
451             ClickEventArgs nestedEventArgs = new ClickEventArgs();
452             ClickEvent?.Invoke(this, nestedEventArgs);
453             Clicked?.Invoke(this, eventArgs);
454         }
455     }
456 }