Release 4.0.0-preview1-00235
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / CustomView.cs
1 /*
2  * Copyright (c) 2017 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 namespace Tizen.NUI.BaseComponents
19 {
20     /// <summary>
21     /// CustomView provides some common functionality required by all views.
22     /// </summary>
23     public class CustomView : ViewWrapper
24     {
25         public CustomView(string typeName, CustomViewBehaviour behaviour) : base(typeName, new ViewWrapperImpl(behaviour))
26         {
27             // Registering CustomView virtual functions to viewWrapperImpl delegates.
28             viewWrapperImpl.OnStageConnection = new ViewWrapperImpl.OnStageConnectionDelegate(OnStageConnection);
29             viewWrapperImpl.OnStageDisconnection = new ViewWrapperImpl.OnStageDisconnectionDelegate(OnStageDisconnection);
30             viewWrapperImpl.OnChildAdd = new ViewWrapperImpl.OnChildAddDelegate(OnChildAdd);
31             viewWrapperImpl.OnChildRemove = new ViewWrapperImpl.OnChildRemoveDelegate(OnChildRemove);
32             viewWrapperImpl.OnPropertySet = new ViewWrapperImpl.OnPropertySetDelegate(OnPropertySet);
33             viewWrapperImpl.OnSizeSet = new ViewWrapperImpl.OnSizeSetDelegate(OnSizeSet);
34             viewWrapperImpl.OnSizeAnimation = new ViewWrapperImpl.OnSizeAnimationDelegate(OnSizeAnimation);
35             viewWrapperImpl.OnTouch = new ViewWrapperImpl.OnTouchDelegate(OnTouch);
36             viewWrapperImpl.OnHover = new ViewWrapperImpl.OnHoverDelegate(OnHover);
37             viewWrapperImpl.OnKey = new ViewWrapperImpl.OnKeyDelegate(OnKey);
38             viewWrapperImpl.OnWheel = new ViewWrapperImpl.OnWheelDelegate(OnWheel);
39             viewWrapperImpl.OnRelayout = new ViewWrapperImpl.OnRelayoutDelegate(OnRelayout);
40             viewWrapperImpl.OnSetResizePolicy = new ViewWrapperImpl.OnSetResizePolicyDelegate(OnSetResizePolicy);
41             viewWrapperImpl.GetNaturalSize = new ViewWrapperImpl.GetNaturalSizeDelegate(GetNaturalSize);
42             viewWrapperImpl.CalculateChildSize = new ViewWrapperImpl.CalculateChildSizeDelegate(CalculateChildSize);
43             viewWrapperImpl.GetHeightForWidth = new ViewWrapperImpl.GetHeightForWidthDelegate(GetHeightForWidth);
44             viewWrapperImpl.GetWidthForHeight = new ViewWrapperImpl.GetWidthForHeightDelegate(GetWidthForHeight);
45             viewWrapperImpl.RelayoutDependentOnChildrenDimension = new ViewWrapperImpl.RelayoutDependentOnChildrenDimensionDelegate(RelayoutDependentOnChildren);
46             viewWrapperImpl.RelayoutDependentOnChildren = new ViewWrapperImpl.RelayoutDependentOnChildrenDelegate(RelayoutDependentOnChildren);
47             viewWrapperImpl.OnCalculateRelayoutSize = new ViewWrapperImpl.OnCalculateRelayoutSizeDelegate(OnCalculateRelayoutSize);
48             viewWrapperImpl.OnLayoutNegotiated = new ViewWrapperImpl.OnLayoutNegotiatedDelegate(OnLayoutNegotiated);
49             viewWrapperImpl.OnControlChildAdd = new ViewWrapperImpl.OnControlChildAddDelegate(OnControlChildAdd);
50             viewWrapperImpl.OnControlChildRemove = new ViewWrapperImpl.OnControlChildRemoveDelegate(OnControlChildRemove);
51             viewWrapperImpl.OnStyleChange = new ViewWrapperImpl.OnStyleChangeDelegate(OnStyleChange);
52             viewWrapperImpl.OnAccessibilityActivated = new ViewWrapperImpl.OnAccessibilityActivatedDelegate(OnAccessibilityActivated);
53             viewWrapperImpl.OnAccessibilityPan = new ViewWrapperImpl.OnAccessibilityPanDelegate(OnAccessibilityPan);
54             viewWrapperImpl.OnAccessibilityTouch = new ViewWrapperImpl.OnAccessibilityTouchDelegate(OnAccessibilityTouch);
55             viewWrapperImpl.OnAccessibilityValueChange = new ViewWrapperImpl.OnAccessibilityValueChangeDelegate(OnAccessibilityValueChange);
56             viewWrapperImpl.OnAccessibilityZoom = new ViewWrapperImpl.OnAccessibilityZoomDelegate(OnAccessibilityZoom);
57             viewWrapperImpl.OnFocusGained = new ViewWrapperImpl.OnFocusGainedDelegate(OnFocusGained);
58             viewWrapperImpl.OnFocusLost = new ViewWrapperImpl.OnFocusLostDelegate(OnFocusLost);
59             viewWrapperImpl.GetNextFocusableView = new ViewWrapperImpl.GetNextFocusableViewDelegate(GetNextFocusableView);
60             viewWrapperImpl.OnFocusChangeCommitted = new ViewWrapperImpl.OnFocusChangeCommittedDelegate(OnFocusChangeCommitted);
61             viewWrapperImpl.OnKeyboardEnter = new ViewWrapperImpl.OnKeyboardEnterDelegate(OnKeyboardEnter);
62             viewWrapperImpl.OnPinch = new ViewWrapperImpl.OnPinchDelegate(OnPinch);
63             viewWrapperImpl.OnPan = new ViewWrapperImpl.OnPanDelegate(OnPan);
64             viewWrapperImpl.OnTap = new ViewWrapperImpl.OnTapDelegate(OnTap);
65             viewWrapperImpl.OnLongPress = new ViewWrapperImpl.OnLongPressDelegate(OnLongPress);
66
67             // Make sure CustomView is initialized.
68             OnInitialize();
69
70             // Set the StyleName the name of the View
71             // We have to do this because the StyleManager on Native side can't workout it out
72             // This will also ensure that the style of views/visuals initialized above are applied by the style manager.
73             SetStyleName(this.GetType().Name);
74         }
75
76         /// <summary>
77         /// Sets the background with a property map.
78         /// </summary>
79         /// <param name="map">The background property map.</param>
80         public void SetBackground(Tizen.NUI.PropertyMap map)
81         {
82             viewWrapperImpl.SetBackground(map);
83         }
84
85         /// <summary>
86         /// Allows deriving classes to enable any of the gesture detectors that are available.<br>
87         /// Gesture detection can be enabled one at a time or in a bitwise format.<br>
88         /// </summary>
89         /// <param name="type">The gesture type(s) to enable.</param>
90         public void EnableGestureDetection(Gesture.GestureType type)
91         {
92             viewWrapperImpl.EnableGestureDetection(type);
93         }
94
95         /// <summary>
96         /// Allows deriving classes to disable any of the gesture detectors.<br>
97         /// Like EnableGestureDetection, this can also be called using bitwise or one at a time.<br>
98         /// </summary>
99         /// <param name="type">The gesture type(s) to disable.</param>
100         internal void DisableGestureDetection(Gesture.GestureType type)
101         {
102             viewWrapperImpl.DisableGestureDetection(type);
103         }
104
105         /// <summary>
106         /// Sets whether this control supports two dimensional keyboard navigation
107         /// (i.e., whether it knows how to handle the keyboard focus movement between its child views).<br>
108         /// The control doesn't support it by default.<br>
109         /// </summary>
110         /// <param name="isSupported">Whether this control supports two dimensional keyboard navigation.</param>
111         public bool FocusNavigationSupport
112         {
113             get
114             {
115                 return IsKeyboardNavigationSupported();
116             }
117             set
118             {
119                 SetKeyboardNavigationSupport(value);
120             }
121         }
122
123         internal void SetKeyboardNavigationSupport(bool isSupported)
124         {
125             viewWrapperImpl.SetKeyboardNavigationSupport(isSupported);
126         }
127
128         /// <summary>
129         /// Gets whether this control supports two-dimensional keyboard navigation.
130         /// </summary>
131         /// <returns>True if this control supports two-dimensional keyboard navigation.</returns>
132         internal bool IsKeyboardNavigationSupported()
133         {
134             return viewWrapperImpl.IsKeyboardNavigationSupported();
135         }
136
137
138         /// <summary>
139         /// Sets or gets whether this control is a focus group for keyboard navigation.
140         /// </summary>
141         /// <returns>True if this control is set as a focus group for keyboard navigation.</returns>
142         public bool FocusGroup
143         {
144             get
145             {
146                 return IsKeyboardFocusGroup();
147             }
148             set
149             {
150                 SetAsKeyboardFocusGroup(value);
151             }
152         }
153
154         /// <summary>
155         /// Sets whether this control is a focus group for keyboard navigation.
156         /// (i.e., the scope of keyboard focus movement can be limitied to its child views). The control is not a focus group by default.
157         /// </summary>
158         /// <param name="isFocusGroup">Whether this control is set as a focus group for keyboard navigation.</param>
159         internal void SetAsKeyboardFocusGroup(bool isFocusGroup)
160         {
161             viewWrapperImpl.SetAsFocusGroup(isFocusGroup);
162         }
163
164         /// <summary>
165         /// Gets whether this control is a focus group for keyboard navigation.
166         /// </summary>
167         internal bool IsKeyboardFocusGroup()
168         {
169             return viewWrapperImpl.IsFocusGroup();
170         }
171
172         /// <summary>
173         /// Called by the AccessibilityManager to activate the control.
174         /// </summary>
175         internal void AccessibilityActivate()
176         {
177             viewWrapperImpl.AccessibilityActivate();
178         }
179
180         /// <summary>
181         /// Called by the KeyboardFocusManager.
182         /// </summary>
183         internal void KeyboardEnter()
184         {
185             viewWrapperImpl.KeyboardEnter();
186         }
187
188         /// <summary>
189         /// Called by the KeyInputFocusManager to emit key event signals.
190         /// </summary>
191         /// <param name="key">The key event.</param>
192         /// <returns>True if the event was consumed.</returns>
193         internal bool EmitKeyEventSignal(Key key)
194         {
195             return viewWrapperImpl.EmitKeyEventSignal(key);
196         }
197
198         /// <summary>
199         /// Requests a relayout, which means performing a size negotiation on this view, its parent, and children (and potentially whole scene).<br>
200         /// This method can also be called from a derived class every time it needs a different size.<br>
201         /// At the end of event processing, the relayout process starts and all controls which requested relayout will have their sizes (re)negotiated.<br>
202         /// It can be called multiple times; the size negotiation is still only performed once, i.e., there is no need to keep track of this in the calling side.<br>
203         /// <summary>
204         protected void RelayoutRequest()
205         {
206             viewWrapperImpl.RelayoutRequest();
207         }
208
209         /// <summary>
210         /// Provides the view implementation of GetHeightForWidth.
211         /// <summary>
212         /// <param name="width">The width to use.</param>
213         /// <returns>The height based on the width.</returns>
214         protected float GetHeightForWidthBase(float width)
215         {
216             return viewWrapperImpl.GetHeightForWidthBase(width);
217         }
218
219         /// <summary>
220         /// Provides the view implementation of GetWidthForHeight.
221         /// </summary>
222         /// <param name="height">The height to use.</param>
223         /// <returns>The width based on the height.</returns>
224         protected float GetWidthForHeightBase(float height)
225         {
226             return viewWrapperImpl.GetWidthForHeightBase(height);
227         }
228
229         /// <summary>
230         /// Calculates the size for a child using the base view object.
231         /// </summary>
232         /// <param name="child">The child view to calculate the size for.</param>
233         /// <param name="dimension">The dimension to calculate the size, for example, the width or the height.</param>
234         /// <returns>Return the calculated size for the given dimension. If more than one dimension is requested, just return the first one found.</returns>
235         protected float CalculateChildSizeBase(View child, DimensionType dimension)
236         {
237             return viewWrapperImpl.CalculateChildSizeBase(child, dimension);
238         }
239
240         /// <summary>
241         /// Determines if this view is dependent on it's children for relayout from the base class.
242         /// </summary>
243         /// <param name="dimension">The dimension(s) to check for.</param>
244         /// <returns>Return if the view is dependent on it's children.</returns>
245         protected bool RelayoutDependentOnChildrenBase(DimensionType dimension)
246         {
247             return viewWrapperImpl.RelayoutDependentOnChildrenBase(dimension);
248         }
249
250         /// <summary>
251         /// Determines if this view is dependent on it's children for relayout from the base class.
252         /// </summary>
253         /// <returns>Return if the view is dependent on it's children.</returns>
254         protected bool RelayoutDependentOnChildrenBase()
255         {
256             return viewWrapperImpl.RelayoutDependentOnChildrenBase();
257         }
258
259         /// <summary>
260         /// Registers a visual by property index, linking a view to visual when required.<br>
261         /// In the case of the visual being a view or control deeming visual not required, then the visual should be an empty handle.<br>
262         /// No parenting is done during registration, this should be done by a derived class.<br>
263         /// </summary>
264         /// <param name="index">The property index of the visual used to reference visual.</param>
265         /// <param name="visual">The visual to register.</param>
266         protected void RegisterVisual(int index, VisualBase visual)
267         {
268             viewWrapperImpl.RegisterVisual(index, visual);
269         }
270
271         /// <summary>
272         /// Registers a visual by the property index, linking a view to visual when required.<br>
273         /// In the case of the visual being a view or control deeming visual not required, then the visual should be an empty handle.<br>
274         /// If enabled is false, then the visual is not set on the stage until enabled by the derived class.<br>
275         /// </summary>
276         /// <param name="index">The property index of the visual used to reference visual.</param>
277         /// <param name="visual">The visual to register.</param>
278         /// <param name="enabled">False if derived class wants to control when the visual is set on the stage.</param>
279         protected void RegisterVisual(int index, VisualBase visual, bool enabled)
280         {
281             viewWrapperImpl.RegisterVisual(index, visual, enabled);
282         }
283
284         /// <summary>
285         /// Erases the entry matching the given index from the list of registered visuals.
286         /// </summary>
287         /// <param name="index">The property index of the visual used to reference visual.</param>
288         protected void UnregisterVisual(int index)
289         {
290             viewWrapperImpl.UnregisterVisual(index);
291         }
292
293         /// <summary>
294         /// Retrieves the visual associated with the given property index.<br>
295         /// For managing the object lifecycle, do not store the returned visual as a member which increments its reference count.<br>
296         /// </summary>
297         /// <param name="index">The property index of the visual used to reference visual.</param>
298         /// <returns>The registered visual if exists, otherwise an empty handle.</returns>
299         protected VisualBase GetVisual(int index)
300         {
301             return viewWrapperImpl.GetVisual(index);
302         }
303
304         /// <summary>
305         /// Sets the given visual to be displayed or not when parent staged.<br>
306         /// For managing the object lifecycle, do not store the returned visual as a member which increments its reference count.<br>
307         /// </summary>
308         /// <param name="index">The property index of the visual, used to reference visual.</param>
309         /// <param name="enable">Flag set to enabled or disabled.</param>
310         protected void EnableVisual(int index, bool enable)
311         {
312             viewWrapperImpl.EnableVisual(index, enable);
313         }
314
315         /// <summary>
316         /// Queries if the given visual is to be displayed when parent staged.<br>
317         /// For managing the object lifecycle, do not store the returned visual as a member which increments its reference count.<br>
318         /// </summary>
319         /// <param name="index">The property index of the visual.</param>
320         /// <returns>Whether visual is enabled or not.</returns>
321         protected bool IsVisualEnabled(int index)
322         {
323             return viewWrapperImpl.IsVisualEnabled(index);
324         }
325
326         /// <summary>
327         /// Creates a transition effect on the control.
328         /// </summary>
329         /// <param name="transitionData">The transition data describing the effect to create.</param>
330         /// <returns>A handle to an animation defined with the given effect, or an empty handle if no properties match.</returns>
331         protected Animation CreateTransition(TransitionData transitionData)
332         {
333             return viewWrapperImpl.CreateTransition(transitionData);
334         }
335
336         /// <summary>
337         /// Emits the KeyInputFocusGained signal if true, else, emits the KeyInputFocusLost signal.<br>
338         /// Should be called last by the control after it acts on the input focus change.<br>
339         /// </summary>
340         /// <param name="focusGained">True if gained, false if lost.</param>
341         protected void EmitFocusSignal(bool focusGained)
342         {
343             viewWrapperImpl.EmitFocusSignal(focusGained);
344         }
345
346         /// <summary>
347         /// This method is called after the control has been initialized.<br>
348         /// Derived classes should do any second phase initialization by overriding this method.<br>
349         /// </summary>
350         public virtual void OnInitialize()
351         {
352         }
353
354         /// <summary>
355         /// Called after the view has been connected to the stage.<br>
356         /// When a view is connected, it will be directly or indirectly parented to the root view.<br>
357         /// The root view is provided automatically by Tizen.NUI.Stage, and is always considered to be connected.<br>
358         /// When the parent of a set of views is connected to the stage, then all of the children will receive this callback.<br>
359         /// </summary>
360         /// <param name="depth">The depth in the hierarchy for the view.</param>
361         public virtual void OnStageConnection(int depth)
362         {
363         }
364
365         /// <summary>
366         /// Called after the view has been disconnected from the stage.<br>
367         /// If a view is disconnected, it either has no parent, or is parented to a disconnected view.<br>
368         /// When the parent of a set of views is disconnected to the stage, then all of the children will receive this callback, starting with the leaf views.<br>
369         /// </summary>
370         public virtual void OnStageDisconnection()
371         {
372         }
373
374         /// <summary>
375         /// Called after a child has been added to the owning view.
376         /// </summary>
377         /// <param name="view">The child which has been added.</param>
378         public virtual void OnChildAdd(View view)
379         {
380         }
381
382         /// <summary>
383         /// Called after the owning view has attempted to remove a child( regardless of whether it succeeded or not ).
384         /// </summary>
385         /// <param name="view">The child being removed.</param>
386         public virtual void OnChildRemove(View view)
387         {
388         }
389
390         /// <summary>
391         /// Called when the owning view property is set.
392         /// </summary>
393         /// <param name="index">The property index that was set.</param>
394         /// <param name="propertyValue">The value to set.</param>
395         public virtual void OnPropertySet(int index, Tizen.NUI.PropertyValue propertyValue)
396         {
397         }
398
399         /// <summary>
400         /// Called when the owning view's size is set, for example, using View.SetSize().
401         /// </summary>
402         /// <param name="targetSize">The target size.</param>
403         public virtual void OnSizeSet(Vector3 targetSize)
404         {
405         }
406
407         /// <summary>
408         /// Called when the owning view's size is animated, for example, using Animation::AnimateTo( Property ( view, View::Property::SIZE ), ... ).
409         /// </summary>
410         /// <param name="animation">The object which is animating the owning view.</param>
411         /// <param name="targetSize">The target size.</param>
412         public virtual void OnSizeAnimation(Animation animation, Vector3 targetSize)
413         {
414         }
415
416         /// <summary>
417         /// Called after a touch event is received by the owning view.<br>
418         /// CustomViewBehaviour.REQUIRES_TOUCH_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour).<br>
419         /// </summary>
420         /// <param name="touch">The touch event.</param>
421         /// <returns>True if the event should be consumed.</returns>
422         public virtual bool OnTouch(Touch touch)
423         {
424             return false; // Do not consume
425         }
426
427         /// <summary>
428         /// Called after a hover event is received by the owning view.<br>
429         /// CustomViewBehaviour.REQUIRES_HOVER_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour).<br>
430         /// </summary>
431         /// <param name="hover">The hover event.</param>
432         /// <returns>True if the hover event should be consumed.</returns>
433         public virtual bool OnHover(Hover hover)
434         {
435             return false; // Do not consume
436         }
437
438         /// <summary>
439         /// Called after a key event is received by the view that has had its focus set.
440         /// </summary>
441         /// <param name="key">The key event.</param>
442         /// <returns>True if the key event should be consumed.</returns>
443         public virtual bool OnKey(Key key)
444         {
445             return false; // Do not consume
446         }
447
448         /// <summary>
449         /// Called after a wheel event is received by the owning view.<br>
450         /// CustomViewBehaviour.REQUIRES_WHEEL_EVENTS must be enabled during construction. See CustomView(ViewWrapperImpl.CustomViewBehaviour behaviour).<br>
451         /// </summary>
452         /// <param name="wheel">The wheel event.</param>
453         /// <returns>True if the wheel event should be consumed.</returns>
454         public virtual bool OnWheel(Wheel wheel)
455         {
456             return false; // Do not consume
457         }
458
459         /// <summary>
460         /// Called after the size negotiation has been finished for this control.<br>
461         /// The control is expected to assign this given size to itself or its children.<br>
462         /// Should be overridden by derived classes if they need to layout views differently after certain operations like add or remove views, resize, or after changing specific properties.<br>
463         /// As this function is called from inside the size negotiation algorithm, you cannot call RequestRelayout (the call would just be ignored).<br>
464         /// </summary>
465         /// <param name="size">The allocated size.</param>
466         /// <param name="container">The control should add views to this container that it is not able to allocate a size for.</param>
467         public virtual void OnRelayout(Vector2 size, RelayoutContainer container)
468         {
469         }
470
471         /// <summary>
472         /// Notification for deriving classes.
473         /// </summary>
474         /// <param name="policy">The policy being set.</param>
475         /// <param name="dimension">The policy is being set for.</param>
476         public virtual void OnSetResizePolicy(ResizePolicyType policy, DimensionType dimension)
477         {
478         }
479
480         /// <summary>
481         /// Returns the natural size of the view.
482         /// </summary>
483         /// <returns>The view's natural size</returns>
484         public new virtual Size2D GetNaturalSize()
485         {
486             return new Size2D(0, 0);
487         }
488
489         /// <summary>
490         /// Calculates the size for a child.
491         /// </summary>
492         /// <param name="child">The child view to calculate the size for.</param>
493         /// <param name="dimension">The dimension to calculate the size, for example, the width or the height.</param>
494         /// <returns>Return the calculated size for the given dimension. If more than one dimension is requested, just return the first one found.</returns>
495         public virtual float CalculateChildSize(View child, DimensionType dimension)
496         {
497             return viewWrapperImpl.CalculateChildSizeBase(child, dimension);
498         }
499
500         /// <summary>
501         /// This method is called during size negotiation when a height is required for a given width.<br>
502         /// Derived classes should override this if they wish to customize the height returned.<br>
503         /// </summary>
504         /// <param name="width">Width to use</param>
505         /// <returns>The height based on the width</returns>
506         public new virtual float GetHeightForWidth(float width)
507         {
508             return viewWrapperImpl.GetHeightForWidthBase(width);
509         }
510
511         /// <summary>
512         /// This method is called during size negotiation when a width is required for a given height.<br>
513         /// Derived classes should override this if they wish to customize the width returned.<br>
514         /// </summary>
515         /// <param name="height">Height to use</param>
516         /// <returns>The width based on the width</returns>
517         public new virtual float GetWidthForHeight(float height)
518         {
519             return viewWrapperImpl.GetWidthForHeightBase(height);
520         }
521
522         /// <summary>
523         /// Determines if this view is dependent on it's children for relayout.
524         /// </summary>
525         /// <param name="dimension">The dimension(s) to check for.</param>
526         /// <returns>Return if the view is dependent on it's children.</returns>
527         public virtual bool RelayoutDependentOnChildren(DimensionType dimension)
528         {
529             return viewWrapperImpl.RelayoutDependentOnChildrenBase(dimension);
530         }
531
532         /// <summary>
533         /// Determines if this view is dependent on it's children for relayout from the base class.
534         /// </summary>
535         /// <returns>Return true if the view is dependent on it's children.</returns>
536         public virtual bool RelayoutDependentOnChildren()
537         {
538             return viewWrapperImpl.RelayoutDependentOnChildrenBase();
539         }
540
541         /// <summary>
542         /// The virtual method to notify deriving classes that relayout dependencies have been
543         /// met and the size for this object is about to be calculated for the given dimension.
544         /// </summary>
545         /// <param name="dimension">The dimension that is about to be calculated.</param>
546         public virtual void OnCalculateRelayoutSize(DimensionType dimension)
547         {
548         }
549
550         /// <summary>
551         /// The virtual method to notify deriving classes that the size for a dimension has just been negotiated.
552         /// </summary>
553         /// <param name="size">The new size for the given dimension.</param>
554         /// <param name="dimension">The dimension that was just negotiated.</param>
555         public virtual void OnLayoutNegotiated(float size, DimensionType dimension)
556         {
557         }
558
559         /// <summary>
560         /// This method should be overridden by deriving classes requiring notifications when the style changes.
561         /// </summary>
562         /// <param name="styleManager">The StyleManager object.</param>
563         /// <param name="change">Information denoting what has changed.</param>
564         public virtual void OnStyleChange(StyleManager styleManager, StyleChangeType change)
565         {
566         }
567
568         /// <summary>
569         /// This method is called when the control accessibility is activated.<br>
570         /// Derived classes should override this to perform custom accessibility activation.<br>
571         /// </summary>
572         /// <returns>True if this control can perform accessibility activation.</returns>
573         internal virtual bool OnAccessibilityActivated()
574         {
575             return false;
576         }
577
578         /// <summary>
579         /// This method should be overridden by deriving classes when they wish to respond the accessibility.
580         /// </summary>
581         /// <param name="gestures">The pan gesture.</param>
582         /// <returns>True if the pan gesture has been consumed by this control.</returns>
583         internal virtual bool OnAccessibilityPan(PanGesture gestures)
584         {
585             return false;
586         }
587
588         /// <summary>
589         /// This method should be overridden by deriving classes when they wish to respond the accessibility.
590         /// </summary>
591         /// <param name="touch">The touch gesture.</param>
592         /// <returns>True if the touch event has been consumed by this control.</returns>
593         internal virtual bool OnAccessibilityTouch(Touch touch)
594         {
595             return false;
596         }
597
598         /// <summary>
599         /// This method should be overridden by deriving classes when they wish to respond the accessibility up and down action (i.e., value change of slider control).
600         /// </summary>
601         /// <param name="isIncrease">Whether the value should be increased or decreased.</param>
602         /// <returns>True if the value changed action has been consumed by this control.</returns>
603         internal virtual bool OnAccessibilityValueChange(bool isIncrease)
604         {
605             return false;
606         }
607
608         /// <summary>
609         /// This method should be overridden by deriving classes when they wish to respond the accessibility zoom action.
610         /// </summary>
611         /// <returns>True if the zoom action has been consumed by this control.</returns>
612         internal virtual bool OnAccessibilityZoom()
613         {
614             return false;
615         }
616
617         /// <summary>
618         /// Called when the control gain key input focus. Should be overridden by derived classes if they need to customize what happens when the focus is gained.
619         /// </summary>
620         public virtual void OnFocusGained()
621         {
622         }
623
624         /// <summary>
625         /// Called when the control loses key input focus. Should be overridden by derived classes if they need to customize what happens when the focus is lost.
626         /// </summary>
627         public virtual void OnFocusLost()
628         {
629         }
630
631         /// <summary>
632         /// Gets the next keyboard focusable view in this control towards the given direction.<br>
633         /// A control needs to override this function in order to support two dimensional keyboard navigation.<br>
634         /// </summary>
635         /// <param name="currentFocusedView">The current focused view.</param>
636         /// <param name="direction">The direction to move the focus towards.</param>
637         /// <param name="loopEnabled">Whether the focus movement should be looped within the control.</param>
638         /// <returns>The next keyboard focusable view in this control or an empty handle if no view can be focused.</returns>
639         public virtual View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled)
640         {
641             return new View();
642         }
643
644         /// <summary>
645         /// Informs this control that its chosen focusable view will be focused.<br>
646         /// This allows the application to preform any actions it wishes before the focus is actually moved to the chosen view.<br>
647         /// </summary>
648         /// <param name="commitedFocusableView">The commited focused view.</param>
649         public virtual void OnFocusChangeCommitted(View commitedFocusableView)
650         {
651         }
652
653         /// <summary>
654         /// This method is called when the control has enter pressed on it.<br>
655         /// Derived classes should override this to perform custom actions.<br>
656         /// </summary>
657         /// <returns>True if this control supported this action.</returns>
658         public virtual bool OnKeyboardEnter()
659         {
660             return false;
661         }
662
663         /// <summary>
664         /// Called whenever a pinch gesture is detected on this control.<br>
665         /// This can be overridden by deriving classes when pinch detection is enabled. The default behavior is to scale the control by the pinch scale.<br>
666         /// If overridden, then the default behavior will not occur.<br>
667         /// Pinch detection should be enabled via EnableGestureDetection().<br>
668         /// </summary>
669         /// <param name="pinch">The pinch tap gesture.</param>
670         internal virtual void OnPinch(PinchGesture pinch)
671         {
672         }
673
674         /// <summary>
675         /// Called whenever a pan gesture is detected on this control.<br>
676         /// This should be overridden by deriving classes when pan detection is enabled.<br>
677         /// There is no default behavior with panning.<br>
678         /// Pan detection should be enabled via EnableGestureDetection().<br>
679         /// </summary>
680         /// <param name="pan">The pan gesture.</param>
681         public virtual void OnPan(PanGesture pan)
682         {
683         }
684
685         /// <summary>
686         /// Called whenever a tap gesture is detected on this control.<br>
687         /// This should be overridden by deriving classes when tap detection is enabled.<br>
688         /// There is no default behavior with a tap.<br>
689         /// Tap detection should be enabled via EnableGestureDetection().<br>
690         /// </summary>
691         /// <param name="tap">The tap gesture.</param>
692         public virtual void OnTap(TapGesture tap)
693         {
694         }
695
696         /// <summary>
697         /// Called whenever a long press gesture is detected on this control.<br>
698         /// This should be overridden by deriving classes when long press detection is enabled.<br>
699         /// There is no default behavior associated with a long press.<br>
700         /// Long press detection should be enabled via EnableGestureDetection().<br>
701         /// </summary>
702         /// <param name="longPress">The long press gesture.</param>
703         internal virtual void OnLongPress(LongPressGesture longPress)
704         {
705         }
706
707         private void OnControlChildAdd(View child)
708         {
709         }
710
711         private void OnControlChildRemove(View child)
712         {
713         }
714     }
715 }