6afb8c62d3476a2ee270b70b29fcb89d6f8671fc
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Window / Window.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 extern alias TizenSystemInformation;
19 using TizenSystemInformation.Tizen.System;
20
21 using System;
22 using System.ComponentModel;
23 using System.Collections.Generic;
24 using System.Runtime.InteropServices;
25
26 using Tizen.NUI.BaseComponents;
27
28 namespace Tizen.NUI
29 {
30     /// <summary>
31     /// The window class is used internally for drawing.<br />
32     /// The window has an orientation and indicator properties.<br />
33     /// </summary>
34     /// <since_tizen> 3 </since_tizen>
35     public partial class Window : BaseHandle
36     {
37         private HandleRef stageCPtr;
38         private Layer rootLayer;
39         private Layer overlayLayer;
40         private Layer borderLayer;
41         private string windowTitle;
42         private List<Layer> childLayers = new List<Layer>();
43         private LayoutController localController;
44         private Key internalLastKeyEvent;
45         private Touch internalLastTouchEvent;
46         private Timer internalHoverTimer;
47
48         static internal bool IsSupportedMultiWindow()
49         {
50             bool isSupported = false;
51             try
52             {
53                 Information.TryGetValue("http://tizen.org/feature/opengles.surfaceless_context", out isSupported);
54             }
55             catch (DllNotFoundException e)
56             {
57                 Tizen.Log.Fatal("NUI", $"{e}\n");
58             }
59             return isSupported;
60         }
61
62         internal Window(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
63         {
64             if (Interop.Stage.IsInstalled())
65             {
66                 stageCPtr = new global::System.Runtime.InteropServices.HandleRef(this, Interop.Stage.GetCurrent());
67
68                 localController = new LayoutController(this);
69                 NUILog.Debug("layoutController id:" + localController.GetId());
70             }
71         }
72
73         /// <summary>
74         /// A helper method to get the current window where the view is added
75         /// </summary>
76         /// <param name="view">The View added to the window</param>
77         /// <returns>A Window.</returns>
78         [EditorBrowsable(EditorBrowsableState.Never)]
79         static public Window Get(View view)
80         {
81             if (view == null)
82             {
83                 NUILog.Error("if there is no view, it can not get a window");
84                 return null;
85             }
86
87             //to fix memory leak issue, match the handle count with native side.
88             Window ret = view.GetInstanceSafely<Window>(Interop.Window.Get(View.getCPtr(view)));
89             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
90             return ret;
91         }
92
93         /// <summary>
94         /// Creates a new Window.<br />
95         /// This creates an extra window in addition to the default main window<br />
96         /// </summary>
97         /// <param name="windowPosition">The position and size of the Window.</param>
98         /// <param name="isTranslucent">Whether Window is translucent.</param>
99         /// <returns>A new Window.</returns>
100         /// <since_tizen> 6 </since_tizen>
101         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
102         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
103         public Window(Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.New(Rectangle.getCPtr(windowPosition), "", isTranslucent), true)
104         {
105             if (IsSupportedMultiWindow() == false)
106             {
107                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
108             }
109             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
110         }
111
112         /// <summary>
113         /// Creates a new Window with a specific name.<br />
114         /// This creates an extra window in addition to the default main window<br />
115         /// </summary>
116         /// <param name="name">The name for extra window. </param>
117         /// <param name="windowPosition">The position and size of the Window.</param>
118         /// <param name="isTranslucent">Whether Window is translucent.</param>
119         /// <returns>A new Window.</returns>
120         /// <since_tizen> 6 </since_tizen>
121         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
122         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
123         public Window(string name, Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.New(Rectangle.getCPtr(windowPosition), name, isTranslucent), true)
124         {
125             if (IsSupportedMultiWindow() == false)
126             {
127                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
128             }
129             this.windowTitle = name;
130             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
131         }
132
133         /// <summary>
134         /// Creates a new Window with a specific name.<br />
135         /// This creates an extra window in addition to the default main window<br />
136         /// </summary>
137         /// <param name="name">The name for extra window. </param>
138         /// <param name="borderInterface"><see cref="Tizen.NUI.IBorderInterface"/>If borderInterface is null, defaultBorder is enabled.</param>
139         /// <param name="windowPosition">The position and size of the Window.</param>
140         /// <param name="isTranslucent">Whether Window is translucent.</param>
141         /// <returns>A new Window.</returns>
142         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
143         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
144         [EditorBrowsable(EditorBrowsableState.Never)]
145         public Window(string name, IBorderInterface borderInterface, Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.New(Rectangle.getCPtr(windowPosition), name, isTranslucent), true)
146         {
147             if (IsSupportedMultiWindow() == false)
148             {
149                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
150             }
151             this.windowTitle = name;
152             this.EnableBorder(borderInterface);
153             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
154         }
155
156
157         /// <summary>
158         /// Enumeration for orientation of the window is the way in which a rectangular page is oriented for normal viewing.
159         /// </summary>
160         /// <since_tizen> 3 </since_tizen>
161         public enum WindowOrientation
162         {
163             /// <summary>
164             /// Portrait orientation. The height of the display area is greater than the width.
165             /// </summary>
166             /// <since_tizen> 3 </since_tizen>
167             Portrait = 0,
168             /// <summary>
169             /// Landscape orientation. A wide view area is needed.
170             /// </summary>
171             /// <since_tizen> 3 </since_tizen>
172             Landscape = 90,
173             /// <summary>
174             /// Portrait inverse orientation.
175             /// </summary>
176             /// <since_tizen> 3 </since_tizen>
177             PortraitInverse = 180,
178             /// <summary>
179             /// Landscape inverse orientation.
180             /// </summary>
181             /// <since_tizen> 3 </since_tizen>
182             LandscapeInverse = 270,
183             /// <summary>
184             /// No orientation. It is for the preferred orientation
185             /// Especially, NoOrientationPreference only has the effect for the preferred orientation.
186             /// It is used to unset the preferred orientation with SetPreferredOrientation.
187             /// </summary>
188             [EditorBrowsable(EditorBrowsableState.Never)]
189             NoOrientationPreference = -1
190         }
191
192         /// <summary>
193         /// Enumeration for the key grab mode for platform-level APIs.
194         /// </summary>
195         /// <since_tizen> 3 </since_tizen>
196         public enum KeyGrabMode
197         {
198             /// <summary>
199             /// Grabs a key only when on the top of the grabbing-window stack mode.
200             /// </summary>
201             Topmost = 0,
202             /// <summary>
203             /// Grabs a key together with the other client window(s) mode.
204             /// </summary>
205             Shared,
206             /// <summary>
207             /// Grabs a key exclusively regardless of the grabbing-window's position on the window stack with the possibility of overriding the grab by the other client window mode.
208             /// </summary>
209             OverrideExclusive,
210             /// <summary>
211             /// Grabs a key exclusively regardless of the grabbing-window's position on the window stack mode.
212             /// </summary>
213             Exclusive
214         };
215
216         /// <summary>
217         /// Enumeration for transition effect's state.
218         /// </summary>
219         [Obsolete("Do not use this, that will be removed. Use Window.EffectState instead.")]
220         [EditorBrowsable(EditorBrowsableState.Never)]
221         //  This is already deprecated, so suppress warning here.
222         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1717:Only FlagsAttribute enums should have plural names", Justification = "<Pending>")]
223         public enum EffectStates
224         {
225             /// <summary>
226             /// None state.
227             /// </summary>
228             [Obsolete("Do not use this, that will be removed. Use Window.EffectState.None instead.")]
229             [EditorBrowsable(EditorBrowsableState.Never)]
230             None = 0,
231             /// <summary>
232             /// Transition effect is started.
233             /// </summary>
234             [Obsolete("Do not use this, that will be removed. Use Window.EffectState.Start instead.")]
235             [EditorBrowsable(EditorBrowsableState.Never)]
236             Start,
237             /// <summary>
238             /// Transition effect is ended.
239             /// </summary>
240             [Obsolete("Do not use this, that will be removed. Use Window.EffectState.End instead.")]
241             [EditorBrowsable(EditorBrowsableState.Never)]
242             End,
243         }
244
245         /// <summary>
246         /// Enumeration for transition effect's state.
247         /// </summary>
248         [EditorBrowsable(EditorBrowsableState.Never)]
249         public enum EffectState
250         {
251             /// <summary>
252             /// None state.
253             /// </summary>
254             [EditorBrowsable(EditorBrowsableState.Never)]
255             None = 0,
256             /// <summary>
257             /// Transition effect is started.
258             /// </summary>
259             [EditorBrowsable(EditorBrowsableState.Never)]
260             Start,
261             /// <summary>
262             /// Transition effect is ended.
263             /// </summary>
264             [EditorBrowsable(EditorBrowsableState.Never)]
265             End,
266         }
267
268         /// <summary>
269         /// Enumeration for transition effect's type.
270         /// </summary>
271         [Obsolete("Do not use this, that will be removed. Use Window.EffectType instead.")]
272         [EditorBrowsable(EditorBrowsableState.Never)]
273         //  This is already deprecated, so suppress warning here.
274         [System.Diagnostics.CodeAnalysis.SuppressMessage("Naming", "CA1717:Only FlagsAttribute enums should have plural names", Justification = "<Pending>")]
275         public enum EffectTypes
276         {
277             /// <summary>
278             /// None type.
279             /// </summary>
280             [Obsolete("Do not use this, that will be removed. Use Window.EffectType.None instead.")]
281             [EditorBrowsable(EditorBrowsableState.Never)]
282             None = 0,
283             /// <summary>
284             /// Window show effect.
285             /// </summary>
286             [Obsolete("Do not use this, that will be removed. Use Window.EffectType.Show instead.")]
287             [EditorBrowsable(EditorBrowsableState.Never)]
288             Show,
289             /// <summary>
290             /// Window hide effect.
291             /// </summary>
292             [Obsolete("Do not use this, that will be removed. Use Window.EffectType.Hide instead.")]
293             [EditorBrowsable(EditorBrowsableState.Never)]
294             Hide,
295         }
296
297         /// <summary>
298         /// Enumeration for transition effect's type.
299         /// </summary>
300         [EditorBrowsable(EditorBrowsableState.Never)]
301         public enum EffectType
302         {
303             /// <summary>
304             /// None type.
305             /// </summary>
306             [EditorBrowsable(EditorBrowsableState.Never)]
307             None = 0,
308             /// <summary>
309             /// Window show effect.
310             /// </summary>
311             [EditorBrowsable(EditorBrowsableState.Never)]
312             Show,
313             /// <summary>
314             /// Window hide effect.
315             /// </summary>
316             [EditorBrowsable(EditorBrowsableState.Never)]
317             Hide,
318         }
319
320         /// <summary>
321         /// Enumeration for result of window operation.
322         /// </summary>
323         internal enum OperationResult
324         {
325             /// <summary>
326             /// Failed for unknown reason
327             /// </summary>
328             UnknownError = 0,
329             /// <summary>
330             /// Succeed
331             /// </summary>
332             Succeed,
333             /// <summary>
334             /// Permission denied
335             /// </summary>
336             PermissionDenied,
337             /// <summary>
338             /// The operation is not supported.
339             /// </summary>
340             NotSupported,
341         }
342
343         /// <summary>
344         /// Enumeration for window resized mode by display server.
345         /// </summary>
346         [EditorBrowsable(EditorBrowsableState.Never)]
347         public enum ResizeDirection
348         {
349             /// <summary>
350             /// None type.
351             /// </summary>
352             [EditorBrowsable(EditorBrowsableState.Never)]
353             None = 0,
354             /// <summary>
355             /// Start resizing window to the top-left edge.
356             /// </summary>
357             [EditorBrowsable(EditorBrowsableState.Never)]
358             TopLeft = 1,
359             /// <summary>
360             /// Start resizing window to the top side.
361             /// </summary>
362             [EditorBrowsable(EditorBrowsableState.Never)]
363             Top = 2,
364             /// <summary>
365             /// Start resizing window to the top-right edge.
366             /// </summary>
367             [EditorBrowsable(EditorBrowsableState.Never)]
368             TopRight = 3,
369             /// <summary>
370             /// Start resizing window to the left side.
371             /// </summary>
372             [EditorBrowsable(EditorBrowsableState.Never)]
373             Left = 4,
374             /// <summary>
375             /// Start resizing window to the right side.
376             /// </summary>
377             [EditorBrowsable(EditorBrowsableState.Never)]
378             Right = 5,
379             /// <summary>
380             /// Start resizing window to the bottom-left edge.
381             /// </summary>
382             [EditorBrowsable(EditorBrowsableState.Never)]
383             BottomLeft = 6,
384             /// <summary>
385             /// Start resizing window to the bottom side.
386             /// </summary>
387             [EditorBrowsable(EditorBrowsableState.Never)]
388             Bottom = 7,
389             /// <summary>
390             /// Start resizing window to the bottom-right edge.
391             /// </summary>
392             [EditorBrowsable(EditorBrowsableState.Never)]
393             BottomRight = 8,
394         }
395
396
397         /// <summary>
398         /// The stage instance property (read-only).<br />
399         /// Gets the current window.<br />
400         /// </summary>
401         /// <since_tizen> 3 </since_tizen>
402         public static Window Instance { get; internal set; }
403
404         /// <summary>
405         /// Gets or sets a window type.
406         /// Most of window type can be set to use WindowType, except for IME type.
407         /// IME type can be set to use one of NUIApplication's constrcutors.
408         /// </summary>
409         /// <since_tizen> 3 </since_tizen>
410         public WindowType Type
411         {
412             get
413             {
414                 WindowType ret = (WindowType)Interop.Window.GetType(SwigCPtr);
415                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw new InvalidOperationException("FATAL: get Exception", NDalicPINVOKE.SWIGPendingException.Retrieve());
416                 return ret;
417             }
418             set
419             {
420                 Interop.Window.SetType(SwigCPtr, (int)value);
421                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
422             }
423         }
424
425         /// <summary>
426         /// Gets/Sets a window title.
427         /// </summary>
428         /// <since_tizen> 4 </since_tizen>
429         public string Title
430         {
431             get
432             {
433                 return windowTitle;
434             }
435             set
436             {
437                 windowTitle = value;
438                 SetClass(windowTitle, "");
439             }
440         }
441
442         /// <summary>
443         /// The rendering behavior of a Window.
444         /// </summary>
445         /// <since_tizen> 5 </since_tizen>
446         public RenderingBehaviorType RenderingBehavior
447         {
448             get
449             {
450                 return GetRenderingBehavior();
451             }
452             set
453             {
454                 SetRenderingBehavior(value);
455             }
456         }
457
458         /// <summary>
459         /// The window size property (read-only).
460         /// </summary>
461         /// <since_tizen> 3 </since_tizen>
462         public Size2D Size
463         {
464             get
465             {
466                 Size2D ret = GetSize();
467                 return ret;
468             }
469         }
470
471         /// <summary>
472         /// The background color property.
473         /// </summary>
474         /// <since_tizen> 3 </since_tizen>
475         public Color BackgroundColor
476         {
477             set
478             {
479                 SetBackgroundColor(value);
480             }
481             get
482             {
483                 Color ret = GetBackgroundColor();
484                 return ret;
485             }
486         }
487
488         /// <summary>
489         /// The DPI property (read-only).<br />
490         /// Retrieves the DPI of the display device to which the Window is connected.<br />
491         /// </summary>
492         /// <since_tizen> 3 </since_tizen>
493         public Vector2 Dpi
494         {
495             get
496             {
497                 return GetDpi();
498             }
499         }
500
501         /// <summary>
502         /// The layer count property (read-only).<br />
503         /// Queries the number of on-Window layers.<br />
504         /// </summary>
505         /// <since_tizen> 3 </since_tizen>
506         public uint LayerCount
507         {
508             get
509             {
510                 return GetLayerCount();
511             }
512         }
513
514         /// <summary>
515         /// Gets or sets a size of the window.
516         /// </summary>
517         /// <exception cref="ArgumentNullException"> Thrown when value is null. </exception>
518         /// <since_tizen> 4 </since_tizen>
519         public Size2D WindowSize
520         {
521             get
522             {
523                 return GetWindowSize();
524             }
525             set
526             {
527                 SetWindowSize(value);
528             }
529         }
530
531         /// <summary>
532         /// Gets or sets a position of the window.
533         /// </summary>
534         /// <exception cref="ArgumentNullException"> Thrown when value is null. </exception>
535         /// <since_tizen> 4 </since_tizen>
536         public Position2D WindowPosition
537         {
538             get
539             {
540                 return GetPosition();
541             }
542             set
543             {
544                 SetPosition(value);
545             }
546         }
547
548         /// <summary>
549         /// Sets position and size of the window. This API guarantees that
550         /// both moving and resizing of window will appear on the screen at once.
551         /// </summary>
552         [EditorBrowsable(EditorBrowsableState.Never)]
553         public Rectangle WindowPositionSize
554         {
555             get
556             {
557                 Position2D position = GetPosition();
558                 Size2D size = GetSize();
559                 Rectangle ret = new Rectangle(position?.X ?? 0, position?.Y ?? 0, size?.Width ?? 0, size?.Height ?? 0);
560                 position.Dispose();
561                 return ret;
562             }
563             set
564             {
565                 SetPositionSize(value);
566             }
567         }
568
569         /// <summary>
570         /// Gets or sets whether the window will update partial area or full area.
571         /// If this value is true, window will update and render partial area.
572         /// If false, full area updated.
573         /// </summary>
574         [EditorBrowsable(EditorBrowsableState.Never)]
575         public bool PartialUpdate
576         {
577             get
578             {
579                 return IsPartialUpdate();
580             }
581             set
582             {
583                 SetPartialUpdate(value);
584             }
585         }
586
587         internal static Vector4 DEFAULT_BACKGROUND_COLOR
588         {
589             get
590             {
591                 global::System.IntPtr cPtr = Interop.Stage.DefaultBackgroundColorGet();
592                 Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false);
593                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
594                 return ret;
595             }
596         }
597
598         internal static Vector4 DEBUG_BACKGROUND_COLOR
599         {
600             get
601             {
602                 global::System.IntPtr cPtr = Interop.Stage.DebugBackgroundColorGet();
603                 Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false);
604                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
605                 return ret;
606             }
607         }
608
609         internal List<Layer> LayersChildren
610         {
611             get
612             {
613                 return childLayers;
614             }
615         }
616
617         /// <summary>
618         ///  Get the LayoutController for this Window.
619         /// </summary>
620         internal LayoutController LayoutController
621         {
622             get
623             {
624                 return localController;
625             }
626         }
627
628         /// <summary>
629         /// Feed a key-event into the window.
630         /// </summary>
631         /// <param name="keyEvent">The key event to feed.</param>
632         /// <since_tizen> 4 </since_tizen>
633         [Obsolete("Do not use this, that will be deprecated. Use FeedKey(Key keyEvent) instead.")]
634         public static void FeedKeyEvent(Key keyEvent)
635         {
636             Interop.Window.FeedKeyEvent(Key.getCPtr(keyEvent));
637             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
638         }
639
640         /// <summary>
641         /// Sets whether the window accepts a focus or not.
642         /// </summary>
643         /// <param name="accept">If a focus is accepted or not. The default is true.</param>
644         /// <since_tizen> 3 </since_tizen>
645         public void SetAcceptFocus(bool accept)
646         {
647             Interop.Window.SetAcceptFocus(SwigCPtr, accept);
648             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
649         }
650
651         /// <summary>
652         /// Returns whether the window accepts a focus or not.
653         /// </summary>
654         /// <returns>True if the window accepts a focus, false otherwise.</returns>
655         /// <since_tizen> 3 </since_tizen>
656         public bool IsFocusAcceptable()
657         {
658             bool ret = Interop.Window.IsFocusAcceptable(SwigCPtr);
659             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
660
661             return ret;
662         }
663
664         /// <summary>
665         /// Shows the window if it is hidden.
666         /// </summary>
667         /// <since_tizen> 3 </since_tizen>
668         public void Show()
669         {
670             Interop.Window.Show(SwigCPtr);
671             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
672         }
673
674         /// <summary>
675         /// Hides the window if it is showing.
676         /// </summary>
677         /// <since_tizen> 3 </since_tizen>
678         public void Hide()
679         {
680             Interop.Window.Hide(SwigCPtr);
681             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
682         }
683
684         /// <summary>
685         /// Retrieves whether the window is visible or not.
686         /// </summary>
687         /// <returns>True if the window is visible.</returns>
688         /// <since_tizen> 3 </since_tizen>
689         public bool IsVisible()
690         {
691             bool temp = Interop.Window.IsVisible(SwigCPtr);
692             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
693             return temp;
694         }
695
696         /// <summary>
697         /// Gets the count of supported auxiliary hints of the window.
698         /// </summary>
699         /// <returns>The number of supported auxiliary hints.</returns>
700         /// <since_tizen> 3 </since_tizen>
701         public uint GetSupportedAuxiliaryHintCount()
702         {
703             uint ret = Interop.Window.GetSupportedAuxiliaryHintCount(SwigCPtr);
704             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
705             return ret;
706         }
707
708         /// <summary>
709         /// Gets the supported auxiliary hint string of the window.
710         /// </summary>
711         /// <param name="index">The index of the supported auxiliary hint lists.</param>
712         /// <returns>The auxiliary hint string of the index.</returns>
713         /// <since_tizen> 3 </since_tizen>
714         public string GetSupportedAuxiliaryHint(uint index)
715         {
716             string ret = Interop.Window.GetSupportedAuxiliaryHint(SwigCPtr, index);
717             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
718             return ret;
719         }
720
721         /// <summary>
722         /// Creates an auxiliary hint of the window.
723         /// </summary>
724         /// <param name="hint">The auxiliary hint string.</param>
725         /// <param name="value">The value string.</param>
726         /// <returns>The ID of created auxiliary hint, or 0 on failure.</returns>
727         /// <since_tizen> 3 </since_tizen>
728         public uint AddAuxiliaryHint(string hint, string value)
729         {
730             uint ret = Interop.Window.AddAuxiliaryHint(SwigCPtr, hint, value);
731             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
732             return ret;
733         }
734
735         /// <summary>
736         /// Removes an auxiliary hint of the window.
737         /// </summary>
738         /// <param name="id">The ID of the auxiliary hint.</param>
739         /// <returns>True if no error occurred, false otherwise.</returns>
740         /// <since_tizen> 3 </since_tizen>
741         public bool RemoveAuxiliaryHint(uint id)
742         {
743             bool ret = Interop.Window.RemoveAuxiliaryHint(SwigCPtr, id);
744             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
745             return ret;
746         }
747
748         /// <summary>
749         /// Changes a value of the auxiliary hint.
750         /// </summary>
751         /// <param name="id">The auxiliary hint ID.</param>
752         /// <param name="value">The value string to be set.</param>
753         /// <returns>True if no error occurred, false otherwise.</returns>
754         /// <since_tizen> 3 </since_tizen>
755         public bool SetAuxiliaryHintValue(uint id, string value)
756         {
757             bool ret = Interop.Window.SetAuxiliaryHintValue(SwigCPtr, id, value);
758             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
759             return ret;
760         }
761
762         /// <summary>
763         /// Gets a value of the auxiliary hint.
764         /// </summary>
765         /// <param name="id">The auxiliary hint ID.</param>
766         /// <returns>The string value of the auxiliary hint ID, or an empty string if none exists.</returns>
767         /// <since_tizen> 3 </since_tizen>
768         public string GetAuxiliaryHintValue(uint id)
769         {
770             string ret = Interop.Window.GetAuxiliaryHintValue(SwigCPtr, id);
771             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
772             return ret;
773         }
774
775         /// <summary>
776         /// Gets an ID of the auxiliary hint string.
777         /// </summary>
778         /// <param name="hint">The auxiliary hint string.</param>
779         /// <returns>The ID of auxiliary hint string, or 0 on failure.</returns>
780         /// <since_tizen> 3 </since_tizen>
781         public uint GetAuxiliaryHintId(string hint)
782         {
783             uint ret = Interop.Window.GetAuxiliaryHintId(SwigCPtr, hint);
784             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
785             return ret;
786         }
787
788         /// <summary>
789         /// Sets a region to accept input events.
790         /// </summary>
791         /// <param name="inputRegion">The region to accept input events.</param>
792         /// <since_tizen> 3 </since_tizen>
793         public void SetInputRegion(Rectangle inputRegion)
794         {
795             Interop.Window.SetInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
796             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
797         }
798
799         /// <summary>
800         /// Sets a priority level for the specified notification window.
801         /// </summary>
802         /// <param name="level">The notification window level.</param>
803         /// <returns>True if no error occurred, false otherwise.</returns>
804         /// <since_tizen> 3 </since_tizen>
805         public bool SetNotificationLevel(NotificationLevel level)
806         {
807             var ret = (OperationResult)Interop.Window.SetNotificationLevel(SwigCPtr, (int)level);
808             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
809             return ret == OperationResult.Succeed;
810         }
811
812         /// <summary>
813         /// Gets a priority level for the specified notification window.
814         /// </summary>
815         /// <returns>The notification window level.</returns>
816         /// <since_tizen> 3 </since_tizen>
817         public NotificationLevel GetNotificationLevel()
818         {
819             NotificationLevel ret = (NotificationLevel)Interop.Window.GetNotificationLevel(SwigCPtr);
820             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
821             return ret;
822         }
823
824         /// <summary>
825         /// Sets a transparent window's visual state to opaque. <br />
826         /// If a visual state of a transparent window is opaque, <br />
827         /// then the window manager could handle it as an opaque window when calculating visibility.
828         /// </summary>
829         /// <param name="opaque">Whether the window's visual state is opaque.</param>
830         /// <remarks>This will have no effect on an opaque window. <br />
831         /// It doesn't change transparent window to opaque window but lets the window manager know the visual state of the window.
832         /// </remarks>
833         /// <since_tizen> 3 </since_tizen>
834         public void SetOpaqueState(bool opaque)
835         {
836             Interop.Window.SetOpaqueState(SwigCPtr, opaque);
837             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
838         }
839
840         /// <summary>
841         /// Returns whether a transparent window's visual state is opaque or not.
842         /// </summary>
843         /// <returns>True if the window's visual state is opaque, false otherwise.</returns>
844         /// <remarks> The return value has no meaning on an opaque window. </remarks>
845         /// <since_tizen> 3 </since_tizen>
846         public bool IsOpaqueState()
847         {
848             bool ret = Interop.Window.IsOpaqueState(SwigCPtr);
849             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
850             return ret;
851         }
852
853         /// <summary>
854         /// Sets a window's screen off mode.
855         /// </summary>
856         /// <param name="screenOffMode">The screen mode.</param>
857         /// <returns>True if no error occurred, false otherwise.</returns>
858         /// <since_tizen> 4 </since_tizen>
859         public bool SetScreenOffMode(ScreenOffMode screenOffMode)
860         {
861             var ret = (OperationResult)Interop.Window.SetScreenOffMode(SwigCPtr, (int)screenOffMode);
862             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
863             return ret == OperationResult.Succeed;
864         }
865
866         /// <summary>
867         /// Gets the screen mode of the window.
868         /// </summary>
869         /// <returns>The screen off mode.</returns>
870         /// <since_tizen> 4 </since_tizen>
871         public ScreenOffMode GetScreenOffMode()
872         {
873             ScreenOffMode ret = (ScreenOffMode)Interop.Window.GetScreenOffMode(SwigCPtr);
874             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
875             return ret;
876         }
877
878         /// <summary>
879         /// Sets preferred brightness of the window.
880         /// </summary>
881         /// <param name="brightness">The preferred brightness (0 to 100).</param>
882         /// <returns>True if no error occurred, false otherwise.</returns>
883         /// <since_tizen> 3 </since_tizen>
884         public bool SetBrightness(int brightness)
885         {
886             var ret = (OperationResult)Interop.Window.SetBrightness(SwigCPtr, brightness);
887             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
888             return ret == OperationResult.Succeed;
889         }
890
891         /// <summary>
892         /// Gets the preferred brightness of the window.
893         /// </summary>
894         /// <returns>The preferred brightness.</returns>
895         /// <since_tizen> 3 </since_tizen>
896         public int GetBrightness()
897         {
898             int ret = Interop.Window.GetBrightness(SwigCPtr);
899             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
900             return ret;
901         }
902
903         /// <summary>
904         /// Sets the window name and the class string.
905         /// </summary>
906         /// <param name="name">The name of the window.</param>
907         /// <param name="klass">The class of the window.</param>
908         /// <since_tizen> 4 </since_tizen>
909         public void SetClass(string name, string klass)
910         {
911             Interop.Window.SetClass(SwigCPtr, name, klass);
912             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
913         }
914
915         /// <summary>
916         /// Raises the window to the top of the window stack.
917         /// </summary>
918         /// <since_tizen> 3 </since_tizen>
919         public void Raise()
920         {
921             Interop.Window.Raise(SwigCPtr);
922             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
923         }
924
925         /// <summary>
926         /// Lowers the window to the bottom of the window stack.
927         /// </summary>
928         /// <since_tizen> 3 </since_tizen>
929         public void Lower()
930         {
931             Interop.Window.Lower(SwigCPtr);
932             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
933         }
934
935         /// <summary>
936         /// Activates the window to the top of the window stack even it is iconified.
937         /// </summary>
938         /// <since_tizen> 3 </since_tizen>
939         public void Activate()
940         {
941             Interop.Window.Activate(SwigCPtr);
942             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
943         }
944
945         /// <summary>
946         /// Gets the default ( root ) layer.
947         /// </summary>
948         /// <returns>The root layer.</returns>
949         /// <since_tizen> 3 </since_tizen>
950         public Layer GetDefaultLayer()
951         {
952             return this.GetRootLayer();
953         }
954
955         /// <summary>
956         /// Gets the overlay layer.
957         /// </summary>
958         /// <returns>The overlay layer.</returns>
959         [EditorBrowsable(EditorBrowsableState.Never)]
960         public Layer GetOverlayLayer()
961         {
962             // Window.IsInstalled() is actually true only when called from event thread and
963             // Core has been initialized, not when Stage is ready.
964             if (overlayLayer == null && Window.IsInstalled())
965             {
966                 overlayLayer = new Layer(Interop.Window.GetOverlayLayer(SwigCPtr), true);
967                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
968                 LayersChildren?.Add(overlayLayer);
969                 overlayLayer.SetWindow(this);
970             }
971             return overlayLayer;
972         }
973
974         /// <summary>
975         /// Add a child view to window.
976         /// </summary>
977         /// <param name="view">the child should be added to the window.</param>
978         /// <since_tizen> 3 </since_tizen>
979         public void Add(View view)
980         {
981             this.GetRootLayer().Add(view);
982         }
983
984         /// <summary>
985         /// Remove a child view from window.
986         /// </summary>
987         /// <param name="view">the child to be removed.</param>
988         /// <since_tizen> 3 </since_tizen>
989         public void Remove(View view)
990         {
991             this.GetRootLayer().Remove(view);
992         }
993
994         /// <summary>
995         /// Retrieves the layer at a specified depth.
996         /// </summary>
997         /// <param name="depth">The layer's depth index.</param>
998         /// <returns>The layer found at the given depth.</returns>
999         /// <since_tizen> 3 </since_tizen>
1000         public Layer GetLayer(uint depth)
1001         {
1002             if (depth < LayersChildren?.Count)
1003             {
1004                 Layer ret = LayersChildren?[Convert.ToInt32(depth)];
1005                 return ret;
1006             }
1007             else
1008             {
1009                 return null;
1010             }
1011         }
1012
1013         /// <summary>
1014         /// Destroy the window immediately.
1015         /// </summary>
1016         [EditorBrowsable(EditorBrowsableState.Never)]
1017         public void Destroy()
1018         {
1019             this.Dispose();
1020         }
1021
1022         /// <summary>
1023         /// Keep rendering for at least the given amount of time.
1024         /// </summary>
1025         /// <param name="durationSeconds">Time to keep rendering, 0 means render at least one more frame.</param>
1026         /// <since_tizen> 3 </since_tizen>
1027         public void KeepRendering(float durationSeconds)
1028         {
1029             Interop.Window.KeepRendering(SwigCPtr, durationSeconds);
1030             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1031         }
1032
1033         /// <summary>
1034         /// Grabs the key specified by a key for a window only when a window is the topmost window.<br />
1035         /// This function can be used for following example scenarios: <br />
1036         /// - Mobile - Using volume up or down as zoom up or down in camera apps.<br />
1037         /// </summary>
1038         /// <param name="DaliKey">The key code to grab.</param>
1039         /// <returns>True if the grab succeeds.</returns>
1040         /// <since_tizen> 3 </since_tizen>
1041         public bool GrabKeyTopmost(int DaliKey)
1042         {
1043             bool ret = Interop.Window.GrabKeyTopmost(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
1044             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1045             return ret;
1046         }
1047
1048         /// <summary>
1049         /// Ungrabs the key specified by a key for the window.<br />
1050         /// Note: If this function is called between key down and up events of a grabbed key, an application doesn't receive the key up event.<br />
1051         /// </summary>
1052         /// <param name="DaliKey">The key code to ungrab.</param>
1053         /// <returns>True if the ungrab succeeds.</returns>
1054         /// <since_tizen> 3 </since_tizen>
1055         public bool UngrabKeyTopmost(int DaliKey)
1056         {
1057             bool ret = Interop.Window.UngrabKeyTopmost(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
1058             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1059             return ret;
1060         }
1061
1062         /// <summary>
1063         ///  Grabs the key specified by a key for a window in a GrabMode. <br />
1064         ///  Details: This function can be used for following example scenarios: <br />
1065         ///  - TV - A user might want to change the volume or channel of the background TV contents while focusing on the foregrund app. <br />
1066         ///  - Mobile - When a user presses the Home key, the homescreen appears regardless of the current foreground app. <br />
1067         ///  - Mobile - Using the volume up or down as zoom up or down in camera apps. <br />
1068         /// </summary>
1069         /// <param name="DaliKey">The key code to grab.</param>
1070         /// <param name="GrabMode">The grab mode for the key.</param>
1071         /// <returns>True if the grab succeeds.</returns>
1072         /// <since_tizen> 3 </since_tizen>
1073         public bool GrabKey(int DaliKey, KeyGrabMode GrabMode)
1074         {
1075             bool ret = Interop.Window.GrabKey(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey, (int)GrabMode);
1076             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1077             return ret;
1078         }
1079
1080         /// <summary>
1081         /// Ungrabs the key specified by a key for a window.<br />
1082         /// Note: If this function is called between key down and up events of a grabbed key, an application doesn't receive the key up event. <br />
1083         /// </summary>
1084         /// <param name="DaliKey">The key code to ungrab.</param>
1085         /// <returns>True if the ungrab succeeds.</returns>
1086         /// <since_tizen> 3 </since_tizen>
1087         public bool UngrabKey(int DaliKey)
1088         {
1089             bool ret = Interop.Window.UngrabKey(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
1090             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1091             return ret;
1092         }
1093
1094         /// <summary>
1095         /// Sets the keyboard repeat information.
1096         /// </summary>
1097         /// <param name="rate">The key repeat rate value in seconds.</param>
1098         /// <param name="delay">The key repeat delay value in seconds.</param>
1099         /// <returns>True if setting the keyboard repeat succeeds.</returns>
1100         /// <since_tizen> 5 </since_tizen>
1101         public bool SetKeyboardRepeatInfo(float rate, float delay)
1102         {
1103             bool ret = Interop.Window.SetKeyboardRepeatInfo(rate, delay);
1104             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1105             return ret;
1106         }
1107
1108         /// <summary>
1109         /// Gets the keyboard repeat information.
1110         /// </summary>
1111         /// <param name="rate">The key repeat rate value in seconds.</param>
1112         /// <param name="delay">The key repeat delay value in seconds.</param>
1113         /// <returns>True if setting the keyboard repeat succeeds.</returns>
1114         /// <since_tizen> 5 </since_tizen>
1115         public bool GetKeyboardRepeatInfo(out float rate, out float delay)
1116         {
1117             bool ret = Interop.Window.GetKeyboardRepeatInfo(out rate, out delay);
1118             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1119             return ret;
1120         }
1121
1122         /// <summary>
1123         /// Adds a layer to the stage.
1124         /// </summary>
1125         /// <param name="layer">Layer to add.</param>
1126         /// <exception cref="ArgumentNullException"> Thrown when layer is null. </exception>
1127         /// <since_tizen> 3 </since_tizen>
1128         public void AddLayer(Layer layer)
1129         {
1130             Add(layer);
1131         }
1132
1133         /// <summary>
1134         /// Removes a layer from the stage.
1135         /// </summary>
1136         /// <param name="layer">Layer to remove.</param>
1137         /// <exception cref="ArgumentNullException"> Thrown when layer is null. </exception>
1138         /// <since_tizen> 3 </since_tizen>
1139         public void RemoveLayer(Layer layer)
1140         {
1141             Remove(layer);
1142         }
1143
1144         /// <summary>
1145         /// Feeds a key event into the window.
1146         /// </summary>
1147         /// <param name="keyEvent">The key event to feed.</param>
1148         /// <since_tizen> 5 </since_tizen>
1149         public void FeedKey(Key keyEvent)
1150         {
1151             Interop.Window.FeedKeyEvent(SwigCPtr, Key.getCPtr(keyEvent));
1152             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1153         }
1154
1155         /// <summary>
1156         /// Feeds a hover event into the window. <br />
1157         /// This is feed after a default time of 48 ms. You can also set this time.
1158         /// </summary>
1159         /// <param name="time">The time of how much later it will be feed (default is 48ms)</param>
1160         /// <remarks>If you want to do FeedHover after the UI is updated, it is recommended to set the time to at least 16ms. This will be a good time waiting for the UI to update.<br />
1161         /// and LazyFeedHover called within the set time are ignored. Only the last request becomes a FeedHover.
1162         /// </remarks>
1163         [EditorBrowsable(EditorBrowsableState.Never)]
1164         public void LazyFeedHover(uint time = 48)
1165         {
1166             if (internalHoverTimer == null)
1167             {
1168                 internalHoverTimer = new Timer(time);
1169                 internalHoverTimer.Tick += (s, e) =>
1170                 {
1171                     FeedHover();
1172                     internalHoverTimer?.Stop();
1173                     internalHoverTimer?.Dispose();
1174                     internalHoverTimer = null;
1175                     return false;
1176                 };
1177                 internalHoverTimer.Start();
1178             }
1179             else
1180             {
1181                 internalHoverTimer.Start();
1182             }
1183         }
1184
1185         /// <summary>
1186         /// Feeds a touch point into the window.
1187         /// </summary>
1188         /// <param name="touchPoint">The touch point to feed.</param>
1189         /// <param name="timeStamp">The timeStamp.</param>
1190         internal void FeedTouch(TouchPoint touchPoint, int timeStamp)
1191         {
1192             Interop.Window.FeedTouchPoint(SwigCPtr, TouchPoint.getCPtr(touchPoint), timeStamp);
1193             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1194         }
1195
1196         /// <summary>
1197         /// Feeds a wheel event into the window.
1198         /// </summary>
1199         /// <param name="wheelEvent">The wheel event to feed.</param>
1200         internal void FeedWheel(Wheel wheelEvent)
1201         {
1202             Interop.Window.FeedWheelEvent(SwigCPtr, Wheel.getCPtr(wheelEvent));
1203             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1204         }
1205
1206         /// <summary>
1207         /// Feeds a hover event into the window.
1208         /// </summary>
1209         /// <param name="touchPoint">The touch point to feed hover event. If null is entered, the feed hover event is generated with the last inputed touch point.</param>
1210         [EditorBrowsable(EditorBrowsableState.Never)]
1211         internal void FeedHover(TouchPoint touchPoint = null)
1212         {
1213             if (touchPoint == null)
1214             {
1215                 using Touch touch = GetLastTouchEvent();
1216                 if (touch == null || touch.GetPointCount() < 1)
1217                 {
1218                     return;
1219                 }
1220                 using Vector2 screenPosition = touch.GetScreenPosition(0);
1221                 touchPoint = new TouchPoint(touch.GetDeviceId(0), TouchPoint.StateType.Motion, screenPosition.X, screenPosition.Y);
1222             }
1223             Interop.Window.FeedHoverEvent(SwigCPtr, TouchPoint.getCPtr(touchPoint));
1224             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1225         }
1226
1227         /// <summary>
1228         /// Allows at least one more render, even when paused.
1229         /// The window should be shown, not minimised.
1230         /// </summary>
1231         /// <since_tizen> 4 </since_tizen>
1232         public void RenderOnce()
1233         {
1234             Interop.Window.RenderOnce(SwigCPtr);
1235             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1236         }
1237
1238         /// <summary>
1239         /// Sets whether the window is transparent or not.
1240         /// </summary>
1241         /// <param name="transparent">Whether the window is transparent or not.</param>
1242         /// <since_tizen> 5 </since_tizen>
1243         public void SetTransparency(bool transparent)
1244         {
1245             Interop.Window.SetTransparency(SwigCPtr, transparent);
1246             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1247
1248             // Setting transparency of the window should request a relayout of the tree in the case the window changes from fully transparent.
1249         }
1250
1251         /// <summary>
1252         /// Sets parent window of the window.
1253         /// After setting that, these windows do together when raise-up, lower and iconified/deiconified.
1254         /// Initially, the window is located on top of the parent. The window can go below parent by calling Lower().
1255         /// If parent's window stack is changed by calling Raise() or Lower(), child windows are located on top of the parent again.
1256         /// </summary>
1257         /// <param name="parent">The parent window.</param>
1258         /// <since_tizen> 6 </since_tizen>
1259         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1260         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1261         public void SetParent(Window parent)
1262         {
1263             if (IsSupportedMultiWindow() == false)
1264             {
1265                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1266             }
1267             Interop.Window.SetParent(SwigCPtr, Window.getCPtr(parent));
1268             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1269         }
1270
1271         /// <summary>
1272         /// Sets parent window of the window.
1273         /// After setting that, these windows do together when raise-up, lower and iconified/deiconified.
1274         /// This function has the additional flag whether the child is located above or below of the parent.
1275         /// </summary>
1276         /// <param name="parent">The parent window.</param>
1277         /// <param name="belowParent">The flag is whether the child is located above or below of the parent.</param>
1278         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1279         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1280         [EditorBrowsable(EditorBrowsableState.Never)]
1281         public void SetParent(Window parent, bool belowParent)
1282         {
1283             if (IsSupportedMultiWindow() == false)
1284             {
1285                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1286             }
1287             Interop.Window.SetParentWithStack(SwigCPtr, Window.getCPtr(parent), belowParent);
1288             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1289         }
1290
1291         /// <summary>
1292         /// Unsets parent window of the window.
1293         /// After unsetting, the window is disconnected his parent window.
1294         /// </summary>
1295         /// <since_tizen> 6 </since_tizen>
1296         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1297         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1298         public void Unparent()
1299         {
1300             if (IsSupportedMultiWindow() == false)
1301             {
1302                 NUILog.Error("Fail to create window. because this device does not support opengles.surfaceless_context.");
1303             }
1304             Interop.Window.Unparent(SwigCPtr);
1305             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1306         }
1307
1308         /// <summary>
1309         /// Gets parent window of the window.
1310         /// </summary>
1311         /// <returns>The parent window of the window.</returns>
1312         /// <since_tizen> 6 </since_tizen>
1313         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1314         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1315         [System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1721: Property names should not match get methods")]
1316         public Window GetParent()
1317         {
1318             if (IsSupportedMultiWindow() == false)
1319             {
1320                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1321             }
1322             Window ret = this.GetInstanceSafely<Window>(Interop.Window.GetParent(SwigCPtr));
1323             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1324             return ret;
1325         }
1326
1327         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
1328         [EditorBrowsable(EditorBrowsableState.Never)]
1329         public void ObjectDump()
1330         {
1331             Layer rootLayer = GetRootLayer();
1332             foreach (View view in rootLayer.Children)
1333             {
1334                 view.ObjectDump();
1335             }
1336         }
1337
1338         internal static bool IsInstalled()
1339         {
1340             bool ret = Interop.Stage.IsInstalled();
1341             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1342             return ret;
1343         }
1344
1345         /// <summary>
1346         /// Adds an orientation to the list of available orientations.
1347         /// </summary>
1348         /// <param name="orientation">The available orientation to add</param>
1349         /// <since_tizen> 6 </since_tizen>
1350         public void AddAvailableOrientation(Window.WindowOrientation orientation)
1351         {
1352             Interop.Window.AddAvailableOrientation(SwigCPtr, (int)orientation);
1353             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1354         }
1355
1356         /// <summary>
1357         /// Removes an orientation from the list of available orientations.
1358         /// </summary>
1359         /// <param name="orientation">The available orientation to remove.</param>
1360         /// <since_tizen> 6 </since_tizen>
1361         public void RemoveAvailableOrientation(Window.WindowOrientation orientation)
1362         {
1363             Interop.Window.RemoveAvailableOrientation(SwigCPtr, (int)orientation);
1364             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1365         }
1366
1367         /// <summary>
1368         /// Sets a preferred orientation.
1369         /// </summary>
1370         /// <param name="orientation">The preferred orientation.</param>
1371         /// <since_tizen> 6 </since_tizen>
1372         public void SetPreferredOrientation(Window.WindowOrientation orientation)
1373         {
1374             Interop.Window.SetPreferredOrientation(SwigCPtr, (int)orientation);
1375             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1376         }
1377
1378         /// <summary>
1379         /// Gets the preferred orientation.
1380         /// </summary>
1381         /// <since_tizen> 6 </since_tizen>
1382         /// <returns>The preferred orientation if previously set, or none.</returns>
1383         public Window.WindowOrientation GetPreferredOrientation()
1384         {
1385             Window.WindowOrientation ret = (Window.WindowOrientation)Interop.Window.GetPreferredOrientation(SwigCPtr);
1386             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1387             return ret;
1388         }
1389
1390         /// <summary>
1391         /// Gets current orientation of the window.
1392         /// </summary>
1393         /// <since_tizen> 6 </since_tizen>
1394         /// <returns>The current window orientation if previously set, or none.</returns>
1395         [EditorBrowsable(EditorBrowsableState.Never)]
1396         public Window.WindowOrientation GetCurrentOrientation()
1397         {
1398             Window.WindowOrientation ret = (Window.WindowOrientation)Interop.Window.GetCurrentOrientation(SwigCPtr);
1399             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1400             return ret;
1401         }
1402
1403         /// <summary>
1404         /// Sets available orientations of the window.
1405         /// This API is for setting several orientations one time.
1406         /// </summary>
1407         /// <param name="orientations">The list of orientations.</param>
1408         /// <since_tizen> 6 </since_tizen>
1409         [EditorBrowsable(EditorBrowsableState.Never)]
1410         public void SetAvailableOrientations(List<Window.WindowOrientation> orientations)
1411         {
1412             if (null == orientations)
1413             {
1414                 throw new ArgumentNullException(nameof(orientations));
1415             }
1416
1417             PropertyArray orientationArray = new PropertyArray();
1418             for (int i = 0; i < orientations.Count; i++)
1419             {
1420                 PropertyValue value = new PropertyValue((int)orientations[i]);
1421                 orientationArray.PushBack(value);
1422                 value.Dispose();
1423             }
1424
1425             Interop.Window.SetAvailableOrientations(SwigCPtr, PropertyArray.getCPtr(orientationArray), orientations.Count);
1426             orientationArray.Dispose();
1427             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1428         }
1429
1430         /// <summary>
1431         /// Get native window ID
1432         /// </summary>
1433         /// <returns>native window ID</returns>
1434         [EditorBrowsable(EditorBrowsableState.Never)]
1435         public int GetNativeId()
1436         {
1437             int ret = Interop.Window.GetNativeId(SwigCPtr);
1438             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1439             return ret;
1440         }
1441
1442         internal Any GetNativeHandle()
1443         {
1444             Any ret = new Any(Interop.WindowInternal.WindowGetNativeHandle(SwigCPtr), true);
1445             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1446             return ret;
1447         }
1448
1449         internal void Add(Layer layer)
1450         {
1451             if (null == layer)
1452             {
1453                 throw new ArgumentNullException(nameof(layer));
1454             }
1455
1456             if (isBorderWindow)
1457             {
1458                 Interop.Actor.Add(GetRootLayer().SwigCPtr, layer.SwigCPtr);
1459                 if (NDalicPINVOKE.SWIGPendingException.Pending) { throw NDalicPINVOKE.SWIGPendingException.Retrieve(); }
1460             }
1461             else
1462             {
1463                 Interop.Window.Add(SwigCPtr, Layer.getCPtr(layer));
1464                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1465             }
1466
1467             LayersChildren?.Add(layer);
1468             layer.SetWindow(this);
1469         }
1470
1471         internal void Remove(Layer layer)
1472         {
1473             if (null == layer)
1474             {
1475                 throw new ArgumentNullException(nameof(layer));
1476             }
1477             Interop.Window.Remove(SwigCPtr, Layer.getCPtr(layer));
1478             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1479
1480             LayersChildren?.Remove(layer);
1481             layer.SetWindow(null);
1482         }
1483
1484         internal Vector2 GetSize()
1485         {
1486             var val = new Uint16Pair(Interop.Window.GetSize(SwigCPtr), true);
1487
1488             convertRealWindowSizeToBorderWindowSize(val);
1489
1490             Vector2 ret = new Vector2(val.GetWidth(), val.GetHeight());
1491             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1492             val.Dispose();
1493             return ret;
1494         }
1495
1496         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
1497         [EditorBrowsable(EditorBrowsableState.Never)]
1498         public RenderTaskList GetRenderTaskList()
1499         {
1500             RenderTaskList ret = new RenderTaskList(Interop.Stage.GetRenderTaskList(stageCPtr), true);
1501             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1502             return ret;
1503         }
1504
1505         /// <summary>
1506         /// Queries the number of on-window layers.
1507         /// </summary>
1508         /// <returns>The number of layers.</returns>
1509         /// <remarks>Note that a default layer is always provided (count >= 1).</remarks>
1510         internal uint GetLayerCount()
1511         {
1512             if (LayersChildren == null || LayersChildren.Count < 0)
1513                 return 0;
1514
1515             return (uint)LayersChildren.Count;
1516         }
1517
1518         internal Layer GetRootLayer()
1519         {
1520             if (isBorderWindow)
1521             {
1522                 if (borderLayer == null)
1523                 {
1524                     borderLayer = GetBorderWindowRootLayer();
1525                     LayersChildren?.Add(borderLayer);
1526                     borderLayer.SetWindow(this);
1527                 }
1528                 return borderLayer;
1529             }
1530             else
1531             {
1532                 // Window.IsInstalled() is actually true only when called from event thread and
1533                 // Core has been initialized, not when Stage is ready.
1534                 if (rootLayer == null && Window.IsInstalled())
1535                 {
1536                     rootLayer = new Layer(Interop.Window.GetRootLayer(SwigCPtr), true);
1537                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1538                     LayersChildren?.Add(rootLayer);
1539                     rootLayer.SetWindow(this);
1540                 }
1541                 return rootLayer;
1542             }
1543         }
1544
1545         internal void SetBackgroundColor(Vector4 color)
1546         {
1547             Interop.Window.SetBackgroundColor(SwigCPtr, Vector4.getCPtr(color));
1548             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1549         }
1550
1551         internal Vector4 GetBackgroundColor()
1552         {
1553             Vector4 ret = new Vector4(Interop.Window.GetBackgroundColor(SwigCPtr), true);
1554             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1555             return ret;
1556         }
1557
1558         internal Vector2 GetDpi()
1559         {
1560             Vector2 ret = new Vector2(Interop.Stage.GetDpi(stageCPtr), true);
1561             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1562             return ret;
1563         }
1564
1565         internal ObjectRegistry GetObjectRegistry()
1566         {
1567             ObjectRegistry ret = new ObjectRegistry(Interop.Stage.GetObjectRegistry(stageCPtr), true);
1568             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1569             return ret;
1570         }
1571
1572         internal void SetRenderingBehavior(RenderingBehaviorType renderingBehavior)
1573         {
1574             Interop.Stage.SetRenderingBehavior(stageCPtr, (int)renderingBehavior);
1575             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1576         }
1577
1578         internal RenderingBehaviorType GetRenderingBehavior()
1579         {
1580             RenderingBehaviorType ret = (RenderingBehaviorType)Interop.Stage.GetRenderingBehavior(stageCPtr);
1581             if (NDalicPINVOKE.SWIGPendingException.Pending)
1582                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1583             return ret;
1584         }
1585
1586         internal void SetWindowSize(Size2D size)
1587         {
1588             if (null == size)
1589             {
1590                 throw new ArgumentNullException(nameof(size));
1591             }
1592             var val = new Uint16Pair((uint)size.Width, (uint)size.Height);
1593
1594             convertBorderWindowSizeToRealWindowSize(val);
1595
1596             Interop.Window.SetSize(SwigCPtr, Uint16Pair.getCPtr(val));
1597             val.Dispose();
1598             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1599             // Resetting Window size should request a relayout of the tree.
1600         }
1601
1602         internal Size2D GetWindowSize()
1603         {
1604             var val = new Uint16Pair(Interop.Window.GetSize(SwigCPtr), true);
1605
1606             convertRealWindowSizeToBorderWindowSize(val);
1607
1608             Size2D ret = new Size2D(val.GetWidth(), val.GetHeight());
1609             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1610             val.Dispose();
1611             return ret;
1612         }
1613
1614         internal void SetPosition(Position2D position)
1615         {
1616             if (null == position)
1617             {
1618                 throw new ArgumentNullException(nameof(position));
1619             }
1620             var val = new Int32Pair(position.X, position.Y);
1621             Interop.Window.SetPosition(SwigCPtr, Int32Pair.getCPtr(val));
1622             val.Dispose();
1623             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1624             // Setting Position of the window should request a relayout of the tree.
1625         }
1626
1627         internal Position2D GetPosition()
1628         {
1629             var val = new Int32Pair(Interop.Window.GetPosition(SwigCPtr), true);
1630             Position2D ret = new Position2D((int)val.GetX(), (int)val.GetY());
1631             val.Dispose();
1632             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1633             return ret;
1634         }
1635
1636         internal void SetPositionSize(Rectangle positionSize)
1637         {
1638             if (positionSize == null)
1639             {
1640                 throw new ArgumentNullException(nameof(positionSize));
1641             }
1642             var val = new Uint16Pair((uint)positionSize.Width, (uint)positionSize.Height);
1643
1644             convertBorderWindowSizeToRealWindowSize(val);
1645
1646             positionSize.Width = val.GetX();
1647             positionSize.Height = val.GetY();
1648
1649             Interop.Window.SetPositionSize(SwigCPtr, Rectangle.getCPtr(positionSize));
1650             val.Dispose();
1651
1652             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1653
1654             // Setting Position of the window should request a relayout of the tree.
1655         }
1656
1657         /// <summary>
1658         /// Set the window use partial update or not.
1659         /// </summary>
1660         /// <param name="enabled">If window enable partial update or disable.</param>
1661         internal void SetPartialUpdate(bool enabled)
1662         {
1663             Interop.Window.SetPartialUpdateEnabled(SwigCPtr, enabled);
1664             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1665         }
1666
1667         /// <summary>
1668         /// Returns whether the window is enabled partial update or not.
1669         /// </summary>
1670         /// <returns>True if the window is enabled partial update, false otherwise.</returns>
1671         internal bool IsPartialUpdate()
1672         {
1673             bool ret = Interop.Window.IsPartialUpdateEnabled(SwigCPtr);
1674             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1675             return ret;
1676         }
1677
1678         /// <summary>
1679         /// Enables the floating mode of window.
1680         /// The floating mode is to support window is moved or resized by display server.
1681         /// For example, if the video-player window sets the floating mode,
1682         /// then display server changes its geometry and handles it like a popup.
1683         /// The way of handling floating mode window is decided by display server.
1684         /// A special display server(as a Tizen display server) supports this mode.
1685         /// </summary>
1686         /// <param name="enable">Enable floating mode or not.</param>
1687         [EditorBrowsable(EditorBrowsableState.Never)]
1688         public void EnableFloatingMode(bool enable)
1689         {
1690             Interop.Window.EnableFloatingMode(SwigCPtr, enable);
1691             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1692         }
1693
1694         /// <summary>
1695         /// Returns whether the window is floating mode or not.
1696         /// </summary>
1697         /// <returns>True if the window is enabled floating mode, false otherwise.</returns>
1698         [EditorBrowsable(EditorBrowsableState.Never)]
1699         public bool IsFloatingModeEnabled()
1700         {
1701             bool ret = Interop.Window.IsFloatingModeEnabled(SwigCPtr);
1702             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1703             return ret;
1704         }
1705
1706         /// <summary>
1707         /// Requests to display server for the window is moved by display server.
1708         /// It can be work with setting window floating mode.
1709         /// </summary>
1710         [EditorBrowsable(EditorBrowsableState.Never)]
1711         public void RequestMoveToServer()
1712         {
1713             Interop.Window.RequestMoveToServer(SwigCPtr);
1714             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1715         }
1716
1717         /// <summary>
1718         ///  Requests to display server for the window is resized by display server.
1719         /// It can be work with setting window floating mode.
1720         /// </summary>
1721         /// <param name="direction">It is indicated the window's side or edge for starting point.</param>
1722         [EditorBrowsable(EditorBrowsableState.Never)]
1723         public void RequestResizeToServer(ResizeDirection direction)
1724         {
1725             Interop.Window.RequestResizeToServer(SwigCPtr, (int)direction);
1726             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1727         }
1728
1729         /// <summary>
1730         /// Includes input region.
1731         /// This function inlcudes input regions.
1732         /// It can be used multiple times and supports multiple regions.
1733         /// It means input region will be extended.
1734         /// This input is related to mouse and touch event.
1735         /// If device has touch screen, this function is useful.
1736         /// Otherwise device does not have that, we can use it after connecting mouse to the device.
1737         /// </summary>
1738         /// <param name="inputRegion">The included region to accept input events.</param>
1739         [EditorBrowsable(EditorBrowsableState.Never)]
1740         public void IncludeInputRegion(Rectangle inputRegion)
1741         {
1742             Interop.Window.IncludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
1743             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1744         }
1745
1746         /// <summary>
1747         /// This function excludes input regions.
1748         /// It can be used multiple times and supports multiple regions.
1749         /// It means input region will be reduced.
1750         /// Nofice, should be set input area by IncludeInputRegion() before this function is used.
1751         /// This input is related to mouse and touch event.
1752         /// If device has touch screen, this function is useful.
1753         /// Otherwise device does not have that, we can use it after connecting mouse to the device.
1754         /// </summary>
1755         /// <param name="inputRegion">The excluded region to except input events.</param>
1756         [EditorBrowsable(EditorBrowsableState.Never)]
1757         public void ExcludeInputRegion(Rectangle inputRegion)
1758         {
1759             Interop.Window.ExcludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
1760             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1761         }
1762
1763         /// <summary>
1764         /// Sets the pointer constraints lock.
1765         /// </summary>
1766         /// <returns>True if PointerConstraintsLock succeeds.</returns>
1767         [EditorBrowsable(EditorBrowsableState.Never)]
1768         public bool PointerConstraintsLock()
1769         {
1770             bool ret = Interop.Window.PointerConstraintsLock(SwigCPtr);
1771             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1772             return ret;
1773         }
1774
1775         /// <summary>
1776         /// Sets the pointer constraints unlock.
1777         /// </summary>
1778         /// <returns>True if PointerConstraintsUnlock succeeds.</returns>
1779         [EditorBrowsable(EditorBrowsableState.Never)]
1780         public bool PointerConstraintsUnlock()
1781         {
1782             bool ret = Interop.Window.PointerConstraintsUnlock(SwigCPtr);
1783             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1784             return ret;
1785         }
1786
1787         /// <summary>
1788         /// Sets the locked pointer region.
1789         /// </summary>
1790         /// <param name="x">The x position.</param>
1791         /// <param name="y">The y position.</param>
1792         /// <param name="width">The width.</param>
1793         /// <param name="height">The height.</param>
1794         [EditorBrowsable(EditorBrowsableState.Never)]
1795         public void LockedPointerRegionSet(int x, int y, int width, int height)
1796         {
1797             Interop.Window.LockedPointerRegionSet(SwigCPtr, x, y, width, height);
1798             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1799         }
1800
1801         /// <summary>
1802         /// Sets the locked pointer cursor position hintset
1803         /// </summary>
1804         /// <param name="x">The x position.</param>
1805         /// <param name="y">The y position.</param>
1806         [EditorBrowsable(EditorBrowsableState.Never)]
1807         public void LockedPointerCursorPositionHintSet(int x, int y)
1808         {
1809             Interop.Window.LockedPointerCursorPositionHintSet(SwigCPtr, x, y);
1810             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1811         }
1812
1813         /// <summary>
1814         /// Sets the pointer warp. The pointer moves to the set coordinates.
1815         /// </summary>
1816         /// <param name="x">The x position.</param>
1817         /// <param name="y">The y position.</param>
1818         /// <returns>True if PointerWarp succeeds.</returns>
1819         [EditorBrowsable(EditorBrowsableState.Never)]
1820         public bool PointerWarp(int x, int y)
1821         {
1822             bool ret = Interop.Window.PointerWarp(SwigCPtr, x, y);
1823             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1824             return ret;
1825         }
1826
1827         /// <summary>
1828         /// Maximizes window's size.
1829         /// If this function is called with true, window will be resized with screen size.
1830         /// Otherwise window will be resized with previous size.
1831         /// It is for the window's MAX button in window's border.
1832         /// If window border is supported by display server, it is not necessary.
1833         /// </summary>
1834         /// <param name="max">If window is maximized or unmaximized.</param>
1835         [EditorBrowsable(EditorBrowsableState.Never)]
1836         public void Maximize(bool max)
1837         {
1838             Interop.Window.Maximize(SwigCPtr, max);
1839             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1840         }
1841
1842         /// <summary>
1843         /// Returns whether the window is maximized or not.
1844         /// </summary>
1845         /// <returns>True if the window is maximized, false otherwise.</returns>
1846         [EditorBrowsable(EditorBrowsableState.Never)]
1847         public bool IsMaximized()
1848         {
1849             bool ret = Interop.Window.IsMaximized(SwigCPtr);
1850             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1851             return ret;
1852         }
1853
1854         /// <summary>
1855         /// Sets window's maximum size.
1856         ///
1857         /// It is to set the maximized size when window is maximized or the window's size is increased by RequestResizeToServer().
1858         /// Although the size is set by this function, window's size can be increased over the limitation by SetPositionSize() or SetSize().
1859         ///
1860         /// After setting, if Maximize() is called, window is resized with the setting size and move the center.
1861         ///
1862         /// </summary>
1863         /// <param name="size">the maximum size.</param>
1864         [EditorBrowsable(EditorBrowsableState.Never)]
1865         public void SetMaximumSize(Size2D size)
1866         {
1867             if (null == size)
1868             {
1869                 throw new ArgumentNullException(nameof(size));
1870             }
1871             var val = new Uint16Pair((uint)size.Width, (uint)size.Height);
1872
1873             Interop.Window.SetMaximumSize(SwigCPtr, Uint16Pair.getCPtr(val));
1874             val.Dispose();
1875             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1876         }
1877
1878         /// <summary>
1879         /// Minimizes window's size.
1880         /// If this function is called with true, window will be iconified.
1881         /// Otherwise window will be activated.
1882         /// It is for the window's MIN button in window border.
1883         /// If window border is supported by display server, it is not necessary.
1884         /// </summary>
1885         /// <param name="min">If window is minimized or unminimized.</param>
1886         [EditorBrowsable(EditorBrowsableState.Never)]
1887         public void Minimize(bool min)
1888         {
1889             Interop.Window.Minimize(SwigCPtr, min);
1890             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1891         }
1892
1893         /// <summary>
1894         /// Returns whether the window is minimized or not.
1895         /// </summary>
1896         /// <returns>True if the window is minimized, false otherwise.</returns>
1897         [EditorBrowsable(EditorBrowsableState.Never)]
1898         public bool IsMinimized()
1899         {
1900             bool ret = Interop.Window.IsMinimized(SwigCPtr);
1901             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1902             return ret;
1903         }
1904
1905         /// <summary>
1906         /// Sets window's minimum size.
1907         /// It is to set the minimum size when window's size is decreased by RequestResizeToServer().
1908         /// Although the size is set by this function, window's size can be decreased over the limitation by SetPositionSize() or SetSize().
1909         /// </summary>
1910         /// <param name="size">the minimum size.</param>
1911         [EditorBrowsable(EditorBrowsableState.Never)]
1912         public void SetMimimumSize(Size2D size)
1913         {
1914             if (null == size)
1915             {
1916                 throw new ArgumentNullException(nameof(size));
1917             }
1918             var val = new Uint16Pair((uint)size.Width, (uint)size.Height);
1919
1920             Interop.Window.SetMimimumSize(SwigCPtr, Uint16Pair.getCPtr(val));
1921             val.Dispose();
1922             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1923         }
1924
1925         /// <summary>
1926         /// Sets the layout of the window.
1927         /// </summary>
1928         /// <param name="numCols">The number of columns in the layout.</param>
1929         /// <param name="numRows">The number of rows in the layout.</param>
1930         /// <param name="column">The column number of the window within the layout.</param>
1931         /// <param name="row">The row number of the window within the layout.</param>
1932         /// <param name="colSpan">The number of columns the window should span within the layout.</param>
1933         /// <param name="rowSpan">The number of rows the window should span within the layout.</param>
1934         [EditorBrowsable(EditorBrowsableState.Never)]
1935         public void SetLayout(uint numCols, uint numRows, uint column, uint row, uint colSpan, uint rowSpan)
1936         {
1937             Interop.Window.SetLayout(SwigCPtr, numCols, numRows, column, row, colSpan, rowSpan);
1938             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1939
1940         }
1941
1942         /// <summary>
1943         /// Sets the layout of the window.
1944         /// </summary>
1945         /// <param name="layoutType">The type of layout to set for the window.</param>
1946         [EditorBrowsable(EditorBrowsableState.Never)]
1947         public void SetLayout(WindowLayoutType layoutType)
1948         {
1949             switch (layoutType)
1950             {
1951                 case WindowLayoutType.LeftHalf:
1952                     Interop.Window.SetLayout(SwigCPtr, 2, 1, 0, 0, 1, 1);
1953                     break;
1954                 case WindowLayoutType.RightHalf:
1955                     Interop.Window.SetLayout(SwigCPtr, 2, 1, 1, 0, 1, 1);
1956                     break;
1957
1958                 case WindowLayoutType.TopHalf:
1959                     Interop.Window.SetLayout(SwigCPtr, 1, 2, 0, 0, 1, 1);
1960                     break;
1961                 case WindowLayoutType.BottomHalf:
1962                     Interop.Window.SetLayout(SwigCPtr, 1, 2, 0, 1, 1, 1);
1963                     break;
1964
1965                 case WindowLayoutType.UpperLeftQuarter:
1966                     Interop.Window.SetLayout(SwigCPtr, 2, 2, 0, 0, 1, 1);
1967                     break;
1968                 case WindowLayoutType.UpperRightQuarter:
1969                     Interop.Window.SetLayout(SwigCPtr, 2, 2, 1, 0, 1, 1);
1970                     break;
1971                 case WindowLayoutType.LowerLeftQuarter:
1972                     Interop.Window.SetLayout(SwigCPtr, 2, 2, 0, 1, 1, 1);
1973                     break;
1974                 case WindowLayoutType.LowerRightQuarter:
1975                     Interop.Window.SetLayout(SwigCPtr, 2, 2, 1, 1, 1, 1);
1976                     break;
1977
1978                 case WindowLayoutType.LeftThird:
1979                     Interop.Window.SetLayout(SwigCPtr, 3, 1, 0, 0, 1, 1);
1980                     break;
1981                 case WindowLayoutType.CenterThird:
1982                     Interop.Window.SetLayout(SwigCPtr, 3, 1, 1, 0, 1, 1);
1983                     break;
1984                 case WindowLayoutType.RightThird:
1985                     Interop.Window.SetLayout(SwigCPtr, 3, 1, 2, 0, 1, 1);
1986                     break;
1987
1988                 case WindowLayoutType.TopThird:
1989                     Interop.Window.SetLayout(SwigCPtr, 1, 3, 0, 0, 1, 1);
1990                     break;
1991                 case WindowLayoutType.MiddleThird:
1992                     Interop.Window.SetLayout(SwigCPtr, 1, 3, 0, 1, 1, 1);
1993                     break;
1994                 case WindowLayoutType.BottomThird:
1995                     Interop.Window.SetLayout(SwigCPtr, 1, 3, 0, 2, 1, 1);
1996                     break;
1997             }
1998             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1999
2000         }
2001
2002         /// <summary>
2003         /// Query whether window is rotating or not.
2004         /// </summary>
2005         /// <returns>True if window is rotating, false otherwise.</returns>
2006         [EditorBrowsable(EditorBrowsableState.Never)]
2007         public bool IsWindowRotating()
2008         {
2009             bool ret = Interop.Window.IsWindowRotating(SwigCPtr);
2010             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2011             return ret;
2012         }
2013
2014         /// <summary>
2015         /// Gets the last key event the window gets.
2016         /// </summary>
2017         /// <returns>The last key event the window gets.</returns>
2018         [EditorBrowsable(EditorBrowsableState.Never)]
2019         public Key GetLastKeyEvent()
2020         {
2021             if(internalLastKeyEvent == null)
2022             {
2023                 internalLastKeyEvent = new Key();
2024             }
2025             Interop.Window.InternalRetrievingLastKeyEvent(SwigCPtr, internalLastKeyEvent.SwigCPtr);
2026             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2027             return internalLastKeyEvent;
2028         }
2029
2030         /// <summary>
2031         /// Gets the last touch event the window gets.
2032         /// </summary>
2033         /// <returns>The last touch event the window gets.</returns>
2034         [EditorBrowsable(EditorBrowsableState.Never)]
2035         public Touch GetLastTouchEvent()
2036         {
2037             if(internalLastTouchEvent == null)
2038             {
2039                 internalLastTouchEvent = new Touch();
2040             }
2041             Interop.Window.InternalRetrievingLastTouchEvent(SwigCPtr, internalLastTouchEvent.SwigCPtr);
2042             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2043             return internalLastTouchEvent;
2044         }
2045
2046         /// <summary>
2047         /// Sets the necessary for window rotation Acknowledgement.
2048         /// After this function called, SendRotationCompletedAcknowledgement() should be called to complete window rotation.
2049         ///
2050         /// This function is supprot that application has the window rotation acknowledgement's control.
2051         /// It means display server waits when application's rotation work is finished.
2052         /// It is useful application has the other rendering engine which works asynchronous.
2053         /// For instance, GlView.
2054         /// </summary>
2055         /// <param name="needAcknowledgement">the flag is true if window rotation acknowledge is sent.</param>
2056         [EditorBrowsable(EditorBrowsableState.Never)]
2057         public void SetNeedsRotationCompletedAcknowledgement(bool needAcknowledgement)
2058         {
2059             Interop.Window.SetNeedsRotationCompletedAcknowledgement(SwigCPtr, needAcknowledgement);
2060             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2061         }
2062
2063         /// <summary>
2064         /// send the Acknowledgement to complete window rotation.
2065         /// For this function, SetNeedsRotationCompletedAcknowledgement should be already called with true.
2066         /// </summary>
2067         [EditorBrowsable(EditorBrowsableState.Never)]
2068         public void SendRotationCompletedAcknowledgement()
2069         {
2070             Interop.Window.SendRotationCompletedAcknowledgement(SwigCPtr);
2071             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2072         }
2073
2074         /// <summary>
2075         /// Add FrameUpdateCallback
2076         /// </summary>
2077         [EditorBrowsable(EditorBrowsableState.Never)]
2078         public void AddFrameUpdateCallback(FrameUpdateCallbackInterface frameUpdateCallback)
2079         {
2080             frameUpdateCallback?.AddFrameUpdateCallback(stageCPtr, Layer.getCPtr(GetRootLayer()));
2081         }
2082
2083         /// <summary>
2084         /// Remove FrameUpdateCallback
2085         /// </summary>
2086         [EditorBrowsable(EditorBrowsableState.Never)]
2087         public void RemoveFrameUpdateCallback(FrameUpdateCallbackInterface frameUpdateCallback)
2088         {
2089             frameUpdateCallback?.RemoveFrameUpdateCallback(stageCPtr);
2090         }
2091
2092         /// <summary>
2093         /// Dispose for Window
2094         /// </summary>
2095         [EditorBrowsable(EditorBrowsableState.Never)]
2096         protected override void Dispose(DisposeTypes type)
2097         {
2098             if (disposed)
2099             {
2100                 return;
2101             }
2102
2103             this.DisconnectNativeSignals();
2104
2105             if (type == DisposeTypes.Explicit)
2106             {
2107                 //Called by User
2108                 //Release your own managed resources here.
2109                 //You should release all of your own disposable objects here.
2110
2111                 if (IsBorderEnabled)
2112                 {
2113                     DisposeBorder();
2114                 }
2115
2116                 foreach (var layer in childLayers)
2117                 {
2118                     if (layer != null)
2119                     {
2120                         layer.Dispose();
2121                     }
2122                 }
2123
2124                 childLayers.Clear();
2125
2126                 localController?.Dispose();
2127
2128                 internalLastKeyEvent?.Dispose();
2129                 internalLastKeyEvent = null;
2130                 internalLastTouchEvent?.Dispose();
2131                 internalLastTouchEvent = null;
2132
2133                 internalHoverTimer?.Stop();
2134                 internalHoverTimer?.Dispose();
2135                 internalHoverTimer = null;
2136             }
2137
2138
2139             base.Dispose(type);
2140         }
2141
2142         /// This will not be public opened.
2143         [EditorBrowsable(EditorBrowsableState.Never)]
2144         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
2145         {
2146             Interop.Window.DeleteWindow(swigCPtr);
2147         }
2148
2149         private static Dictionary<int, internalHookCallbackType> frameCallbackList = new Dictionary<int, internalHookCallbackType>();
2150
2151         private static readonly object locker = new object();
2152
2153         private static int key = 0;
2154
2155         private static FrameCallbackType internalHookFrameCallback = OnInternalHookFrameCallback;
2156
2157         private struct internalHookCallbackType
2158         {
2159             public FrameCallbackType userCallback;
2160             public int frameId;
2161         }
2162
2163         private static void OnInternalHookFrameCallback(int id)
2164         {
2165             lock (locker)
2166             {
2167                 if (frameCallbackList.ContainsKey(id))
2168                 {
2169                     if (frameCallbackList[id].userCallback != null)
2170                     {
2171                         frameCallbackList[id].userCallback.Invoke(frameCallbackList[id].frameId);
2172                         frameCallbackList.Remove(id);
2173                     }
2174                     else
2175                     {
2176                         NUILog.Error($"found userCallback is NULL");
2177                         frameCallbackList.Remove(id);
2178                     }
2179                 }
2180             }
2181         }
2182
2183         private int AddInterHookCallback(FrameCallbackType callback, int frameId)
2184         {
2185             if (null == callback)
2186             {
2187                 throw new ArgumentNullException(nameof(callback), "FrameCallbackType should not be null");
2188             }
2189             var assignedKey = 0;
2190             lock (locker)
2191             {
2192                 key++;
2193                 assignedKey = key;
2194                 frameCallbackList.Add(assignedKey, new internalHookCallbackType()
2195                 {
2196                     userCallback = callback,
2197                     frameId = frameId,
2198                 });
2199             }
2200             return assignedKey;
2201         }
2202
2203         /// <summary>
2204         /// Type of callback which is called when the frame rendering is done by graphics driver or when the frame is displayed on display.
2205         /// </summary>
2206         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
2207         [EditorBrowsable(EditorBrowsableState.Never)]
2208         public delegate void FrameCallbackType(int frameId);
2209
2210         /// <summary>
2211         /// Adds a callback that is called when the frame rendering is done by the graphics driver.
2212         /// A callback of the following type may be used:
2213         /// <code>
2214         /// void MyFunction( int frameId )
2215         /// </code>
2216         /// This callback will be deleted once it is called.
2217         /// <remarks>
2218         /// Ownership of the callback is passed onto this class
2219         /// </remarks>
2220         /// </summary>
2221         /// <param name="callback">The function to call</param>
2222         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
2223         /// <exception cref="ArgumentNullException">This exception can occur by the callback is null.</exception>
2224         [EditorBrowsable(EditorBrowsableState.Never)]
2225         public void AddFrameRenderedCallback(FrameCallbackType callback, int frameId)
2226         {
2227             var assignedKey = AddInterHookCallback(callback, frameId);
2228             Interop.WindowInternal.AddFrameRenderedCallback(SwigCPtr, new HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(internalHookFrameCallback)), assignedKey);
2229
2230             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2231         }
2232
2233         /// <summary>
2234         /// Adds a callback that is called when the frame is displayed on the display.
2235         /// A callback of the following type may be used:
2236         /// <code>
2237         /// void MyFunction( int frameId )
2238         /// </code>
2239         /// This callback will be deleted once it is called.
2240         /// <remarks>
2241         /// Ownership of the callback is passed onto this class
2242         /// </remarks>
2243         /// </summary>
2244         /// <param name="callback">The function to call</param>
2245         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
2246         /// <exception cref="ArgumentNullException">This exception can occur by the callback is null.</exception>
2247         [EditorBrowsable(EditorBrowsableState.Never)]
2248         public void AddFramePresentedCallback(FrameCallbackType callback, int frameId)
2249         {
2250             var assignedKey = AddInterHookCallback(callback, frameId);
2251             Interop.WindowInternal.AddFramePresentedCallback(SwigCPtr, new HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(internalHookFrameCallback)), assignedKey);
2252
2253             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2254         }
2255
2256         /// <summary>
2257         /// Search through this Window for a Layer with the given unique ID.
2258         /// </summary>
2259         /// <param name="id">The ID of the Layer to find.</param>
2260         /// <remarks>Hidden-API</remarks>
2261         /// <returns>A handle to the Layer if found, or an empty handle if not.</returns>
2262         [EditorBrowsable(EditorBrowsableState.Never)]
2263         public Layer FindLayerByID(uint id)
2264         {
2265             Layer defaultLayer = this.GetDefaultLayer();
2266             IntPtr cPtr = Interop.Actor.FindChildById(defaultLayer.SwigCPtr, id);
2267             Layer ret = this.GetInstanceSafely<Layer>(cPtr);
2268
2269             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2270             return ret;
2271         }
2272
2273         /// <summary>
2274         /// Get Native Window handle.
2275         /// <example>
2276         /// How to get Native Window handle
2277         /// <code>
2278         /// Window window = NUIApplication.GetDefaultWindow();
2279         /// var handle = window.NativeHandle;
2280         /// if(handle.IsInvalid == false)
2281         /// {
2282         ///     IntPtr nativeHandle = handle.DangerousGetHandle();
2283         ///     // do something with nativeHandle
2284         /// }
2285         /// </code>
2286         /// </example>
2287         /// </summary>
2288         /// <since_tizen> 9 </since_tizen>
2289         public SafeHandle NativeHandle
2290         {
2291             get
2292             {
2293                 return new NUI.SafeNativeWindowHandle(this);
2294             }
2295         }
2296     }
2297 }