[NUI] Fix button layout when resize policy is FillToParent and etc. (#2809)
[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
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                         bool clicked = isPressed && IsEnabled;
161
162                         isPressed = false;
163
164                         if (IsSelectable)
165                         {
166                             Extension?.SetTouchInfo(touch);
167                             IsSelected = !IsSelected;
168                         }
169                         else
170                         {
171                             Extension?.SetTouchInfo(touch);
172                             UpdateState();
173                         }
174
175                         if (clicked)
176                         {
177                             ClickedEventArgs eventArgs = new ClickedEventArgs();
178                             OnClickedInternal(eventArgs);
179                         }
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             Debug.Assert(size != null);
291
292             this.size = new Vector2(size);
293
294             UpdateSizeAndSpacing();
295         }
296
297         /// <inheritdoc/>
298         [EditorBrowsable(EditorBrowsableState.Never)]
299         protected override void OnControlStateChanged(ControlStateChangedEventArgs controlStateChangedInfo)
300         {
301             base.OnControlStateChanged(controlStateChangedInfo);
302
303             var stateEnabled = !controlStateChangedInfo.CurrentState.Contains(ControlState.Disabled);
304
305             if (IsEnabled != stateEnabled)
306             {
307                 IsEnabled = stateEnabled;
308             }
309
310             var statePressed = controlStateChangedInfo.CurrentState.Contains(ControlState.Pressed);
311
312             if (isPressed != statePressed)
313             {
314                 isPressed = statePressed;
315             }
316         }
317
318         /// <summary>
319         /// Put sub items (e.g. buttonText, buttonIcon) to the right place.
320         /// </summary>
321         [EditorBrowsable(EditorBrowsableState.Never)]
322         protected virtual void LayoutItems()
323         {
324             if (buttonIcon == null || buttonText == null)
325             {
326                 return;
327             }
328
329             buttonIcon.Unparent();
330             buttonText.Unparent();
331             overlayImage?.Unparent();
332
333             if (IconRelativeOrientation == IconOrientation.Left)
334             {
335                 Layout = new LinearLayout()
336                 {
337                     LinearOrientation = LinearLayout.Orientation.Horizontal,
338                     LinearAlignment = itemAlignment,
339                     CellPadding = itemSpacing ?? new Size2D(0, 0)
340                 };
341
342                 Add(buttonIcon);
343                 Add(buttonText);
344             }
345             else if (IconRelativeOrientation == IconOrientation.Right)
346             {
347                 Layout = new LinearLayout()
348                 {
349                     LinearOrientation = LinearLayout.Orientation.Horizontal,
350                     LinearAlignment = itemAlignment,
351                     CellPadding = itemSpacing ?? new Size2D(0, 0)
352                 };
353
354                 Add(buttonText);
355                 Add(buttonIcon);
356             }
357             else if (IconRelativeOrientation == IconOrientation.Top)
358             {
359                 Layout = new LinearLayout()
360                 {
361                     LinearOrientation = LinearLayout.Orientation.Vertical,
362                     LinearAlignment = itemAlignment,
363                     CellPadding = itemSpacing ?? new Size2D(0, 0)
364                 };
365
366                 Add(buttonIcon);
367                 Add(buttonText);
368             }
369             else if (IconRelativeOrientation == IconOrientation.Bottom)
370             {
371                 Layout = new LinearLayout()
372                 {
373                     LinearOrientation = LinearLayout.Orientation.Vertical,
374                     LinearAlignment = itemAlignment,
375                     CellPadding = itemSpacing ?? new Size2D(0, 0)
376                 };
377
378                 Add(buttonText);
379                 Add(buttonIcon);
380             }
381
382             if (overlayImage != null)
383             {
384                 overlayImage.ExcludeLayouting = true;
385                 Add(overlayImage);
386             }
387         }
388
389         private void UpdateSizeAndSpacing()
390         {
391             if (size == null || buttonIcon == null || buttonText == null)
392             {
393                 return;
394             }
395
396             LinearLayout layout = Layout as LinearLayout;
397
398             if (layout == null)
399             {
400                 return;
401             }
402
403             float lengthWithoutText = 0;
404             Size2D cellPadding = null;
405             Extents iconMargin = buttonIcon.Margin ?? new Extents(0);
406             Extents textMargin = buttonText.Margin ?? new Extents(0);
407
408             if (buttonIcon.Size.Width != 0 && buttonIcon.Size.Height != 0)
409             {
410                 lengthWithoutText = buttonIcon.Size.Width;
411
412                 if (!String.IsNullOrEmpty(buttonText.Text))
413                 {
414                     cellPadding = itemSpacing;
415
416                     if (iconRelativeOrientation == IconOrientation.Left || iconRelativeOrientation == IconOrientation.Right)
417                     {
418                         lengthWithoutText += (itemSpacing?.Width ?? 0) + iconMargin.Start + iconMargin.End + textMargin.Start + textMargin.End;
419                     }
420                     else
421                     {
422                         lengthWithoutText += (itemSpacing?.Height ?? 0) + iconMargin.Top + iconMargin.Bottom + textMargin.Top + textMargin.Bottom;
423                     }
424                 }
425             }
426
427             layout.CellPadding = cellPadding ?? new Size2D(0, 0);
428
429             // If the button has fixed width and the text is not empty, the text should not exceed button boundary.
430             if (WidthSpecification != LayoutParamPolicies.WrapContent && !String.IsNullOrEmpty(buttonText.Text))
431             {
432                 buttonText.MaximumSize = new Size2D((int)Math.Max(size.Width - lengthWithoutText, Math.Max(buttonText.MinimumSize.Width, 1)), (int)size.Height);
433             }
434         }
435
436         private void OnClickedInternal(ClickedEventArgs eventArgs)
437         {
438             Command?.Execute(CommandParameter);
439             OnClicked(eventArgs);
440             Extension?.OnClicked(this, eventArgs);
441
442             ClickEventArgs nestedEventArgs = new ClickEventArgs();
443             ClickEvent?.Invoke(this, nestedEventArgs);
444             Clicked?.Invoke(this, eventArgs);
445         }
446
447         internal override bool OnAccessibilityActivated()
448         {
449             using (var key = new Key())
450             {
451                 key.State = Key.StateType.Down;
452                 key.KeyPressedName = "Return";
453
454                 // Touch Down
455                 OnKey(key);
456
457                 // Touch Up
458                 key.State = Key.StateType.Up;
459                 OnKey(key);
460             }
461
462             return true;
463         }
464     }
465 }