[NUI] Support Layout for Multi-Window
[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 string windowTitle;
40         private List<Layer> childLayers = new List<Layer>();
41         private LayoutController localController;
42
43         static internal bool IsSupportedMultiWindow()
44         {
45             bool isSupported = false;
46             Information.TryGetValue("http://tizen.org/feature/opengles.surfaceless_context", out isSupported);
47             return isSupported;
48         }
49
50         internal Window(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
51         {
52             if (Interop.Stage.IsInstalled())
53             {
54                 stageCPtr = new global::System.Runtime.InteropServices.HandleRef(this, Interop.Stage.GetCurrent());
55
56                 localController = new LayoutController(this);
57                 NUILog.Debug("layoutController id:" + localController.GetId());
58             }
59         }
60
61         /// <summary>
62         /// A helper method to get the current window where the view is added
63         /// </summary>
64         /// <param name="view">The View added to the window</param>
65         /// <returns>A Window.</returns>
66         [EditorBrowsable(EditorBrowsableState.Never)]
67         static public Window Get(View view)
68         {
69             if (view == null)
70             {
71                 NUILog.Error("if there is no view, it can not get a window");
72                 return null;
73             }
74
75             Window ret = Registry.GetManagedBaseHandleFromNativePtr(Interop.Window.Get(View.getCPtr(view))) as Window;
76             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
77             return ret;
78         }
79
80         /// <summary>
81         /// Creates a new Window.<br />
82         /// This creates an extra window in addition to the default main window<br />
83         /// </summary>
84         /// <param name="windowPosition">The position and size of the Window.</param>
85         /// <param name="isTranslucent">Whether Window is translucent.</param>
86         /// <returns>A new Window.</returns>
87         /// <since_tizen> 6 </since_tizen>
88         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
89         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
90         public Window(Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.New(Rectangle.getCPtr(windowPosition), "", isTranslucent), true)
91         {
92             if (IsSupportedMultiWindow() == false)
93             {
94                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
95             }
96             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
97         }
98
99         /// <summary>
100         /// Creates a new Window with a specific name.<br />
101         /// This creates an extra window in addition to the default main window<br />
102         /// </summary>
103         /// <param name="name">The name for extra window. </param>
104         /// <param name="windowPosition">The position and size of the Window.</param>
105         /// <param name="isTranslucent">Whether Window is translucent.</param>
106         /// <returns>A new Window.</returns>
107         /// <since_tizen> 6 </since_tizen>
108         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
109         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
110         public Window(string name, Rectangle windowPosition = null, bool isTranslucent = false) : this(Interop.Window.New(Rectangle.getCPtr(windowPosition), name, isTranslucent), true)
111         {
112             if (IsSupportedMultiWindow() == false)
113             {
114                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
115             }
116             this.windowTitle = name;
117             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
118         }
119
120         /// <summary>
121         /// Enumeration for orientation of the window is the way in which a rectangular page is oriented for normal viewing.
122         /// </summary>
123         /// <since_tizen> 3 </since_tizen>
124         public enum WindowOrientation
125         {
126             /// <summary>
127             /// Portrait orientation. The height of the display area is greater than the width.
128             /// </summary>
129             /// <since_tizen> 3 </since_tizen>
130             Portrait = 0,
131             /// <summary>
132             /// Landscape orientation. A wide view area is needed.
133             /// </summary>
134             /// <since_tizen> 3 </since_tizen>
135             Landscape = 90,
136             /// <summary>
137             /// Portrait inverse orientation.
138             /// </summary>
139             /// <since_tizen> 3 </since_tizen>
140             PortraitInverse = 180,
141             /// <summary>
142             /// Landscape inverse orientation.
143             /// </summary>
144             /// <since_tizen> 3 </since_tizen>
145             LandscapeInverse = 270,
146             /// <summary>
147             /// No orientation. It is for the preferred orientation
148             /// Especially, NoOrientationPreference only has the effect for the preferred orientation.
149             /// It is used to unset the preferred orientation with SetPreferredOrientation.
150             /// </summary>
151             [EditorBrowsable(EditorBrowsableState.Never)]
152             NoOrientationPreference = -1
153         }
154
155         /// <summary>
156         /// Enumeration for the key grab mode for platform-level APIs.
157         /// </summary>
158         /// <since_tizen> 3 </since_tizen>
159         public enum KeyGrabMode
160         {
161             /// <summary>
162             /// Grabs a key only when on the top of the grabbing-window stack mode.
163             /// </summary>
164             Topmost = 0,
165             /// <summary>
166             /// Grabs a key together with the other client window(s) mode.
167             /// </summary>
168             Shared,
169             /// <summary>
170             /// 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.
171             /// </summary>
172             OverrideExclusive,
173             /// <summary>
174             /// Grabs a key exclusively regardless of the grabbing-window's position on the window stack mode.
175             /// </summary>
176             Exclusive
177         };
178
179         /// <summary>
180         /// Enumeration for transition effect's state.
181         /// </summary>
182         [Obsolete("Please do not use! This will be removed. Please use Window.EffectState instead!")]
183         [EditorBrowsable(EditorBrowsableState.Never)]
184         public enum EffectStates
185         {
186             /// <summary>
187             /// None state.
188             /// </summary>
189             [Obsolete("Please do not use! This will be removed. Please use Window.EffectState.None instead!")]
190             [EditorBrowsable(EditorBrowsableState.Never)]
191             None = 0,
192             /// <summary>
193             /// Transition effect is started.
194             /// </summary>
195             [Obsolete("Please do not use! This will be removed. Please use Window.EffectState.Start instead!")]
196             [EditorBrowsable(EditorBrowsableState.Never)]
197             Start,
198             /// <summary>
199             /// Transition effect is ended.
200             /// </summary>
201             [Obsolete("Please do not use! This will be removed. Please use Window.EffectState.End instead!")]
202             [EditorBrowsable(EditorBrowsableState.Never)]
203             End,
204         }
205
206         /// <summary>
207         /// Enumeration for transition effect's state.
208         /// </summary>
209         [EditorBrowsable(EditorBrowsableState.Never)]
210         public enum EffectState
211         {
212             /// <summary>
213             /// None state.
214             /// </summary>
215             [EditorBrowsable(EditorBrowsableState.Never)]
216             None = 0,
217             /// <summary>
218             /// Transition effect is started.
219             /// </summary>
220             [EditorBrowsable(EditorBrowsableState.Never)]
221             Start,
222             /// <summary>
223             /// Transition effect is ended.
224             /// </summary>
225             [EditorBrowsable(EditorBrowsableState.Never)]
226             End,
227         }
228
229         /// <summary>
230         /// Enumeration for transition effect's type.
231         /// </summary>
232         [Obsolete("Please do not use! This will be removed. Please use Window.EffectType instead!")]
233         [EditorBrowsable(EditorBrowsableState.Never)]
234         public enum EffectTypes
235         {
236             /// <summary>
237             /// None type.
238             /// </summary>
239             [Obsolete("Please do not use! This will be removed. Please use Window.EffectType.None instead!")]
240             [EditorBrowsable(EditorBrowsableState.Never)]
241             None = 0,
242             /// <summary>
243             /// Window show effect.
244             /// </summary>
245             [Obsolete("Please do not use! This will be removed. Please use Window.EffectType.Show instead!")]
246             [EditorBrowsable(EditorBrowsableState.Never)]
247             Show,
248             /// <summary>
249             /// Window hide effect.
250             /// </summary>
251             [Obsolete("Please do not use! This will be removed. Please use Window.EffectType.Hide instead!")]
252             [EditorBrowsable(EditorBrowsableState.Never)]
253             Hide,
254         }
255
256         /// <summary>
257         /// Enumeration for transition effect's type.
258         /// </summary>
259         [EditorBrowsable(EditorBrowsableState.Never)]
260         public enum EffectType
261         {
262             /// <summary>
263             /// None type.
264             /// </summary>
265             [EditorBrowsable(EditorBrowsableState.Never)]
266             None = 0,
267             /// <summary>
268             /// Window show effect.
269             /// </summary>
270             [EditorBrowsable(EditorBrowsableState.Never)]
271             Show,
272             /// <summary>
273             /// Window hide effect.
274             /// </summary>
275             [EditorBrowsable(EditorBrowsableState.Never)]
276             Hide,
277         }
278
279         /// <summary>
280         /// Enumeration for result of window operation.
281         /// </summary>
282         internal enum OperationResult
283         {
284             /// <summary>
285             /// Failed for unknown reason
286             /// </summary>
287             UnknownError = 0,
288             /// <summary>
289             /// Succeed
290             /// </summary>
291             Succeed,
292             /// <summary>
293             /// Permission denied
294             /// </summary>
295             PermissionDenied,
296             /// <summary>
297             /// The operation is not supported.
298             /// </summary>
299             NotSupported,
300         }
301
302         /// <summary>
303         /// Enumeration for window resized mode by display server.
304         /// </summary>
305         [EditorBrowsable(EditorBrowsableState.Never)]
306         public enum ResizeDirection
307         {
308             /// <summary>
309             /// Start resizing window to the top-left edge.
310             /// </summary>
311             [EditorBrowsable(EditorBrowsableState.Never)]
312             TopLeft = 1,
313             /// <summary>
314             /// Start resizing window to the top side.
315             /// </summary>
316             [EditorBrowsable(EditorBrowsableState.Never)]
317             Top = 2,
318             /// <summary>
319             /// Start resizing window to the top-right edge.
320             /// </summary>
321             [EditorBrowsable(EditorBrowsableState.Never)]
322             TopRight = 3,
323             /// <summary>
324             /// Start resizing window to the left side.
325             /// </summary>
326             [EditorBrowsable(EditorBrowsableState.Never)]
327             Left = 4,
328             /// <summary>
329             /// Start resizing window to the right side.
330             /// </summary>
331             [EditorBrowsable(EditorBrowsableState.Never)]
332             Right = 5,
333             /// <summary>
334             /// Start resizing window to the bottom-left edge.
335             /// </summary>
336             [EditorBrowsable(EditorBrowsableState.Never)]
337             BottomLeft = 6,
338             /// <summary>
339             /// Start resizing window to the bottom side.
340             /// </summary>
341             [EditorBrowsable(EditorBrowsableState.Never)]
342             Bottom = 7,
343             /// <summary>
344             /// Start resizing window to the bottom-right edge.
345             /// </summary>
346             [EditorBrowsable(EditorBrowsableState.Never)]
347             BottomRight = 8,
348         }
349
350
351         /// <summary>
352         /// The stage instance property (read-only).<br />
353         /// Gets the current window.<br />
354         /// </summary>
355         /// <since_tizen> 3 </since_tizen>
356         public static Window Instance { get; internal set; }
357
358         /// <summary>
359         /// Gets or sets a window type.
360         /// Most of window type can be set to use WindowType, except for IME type.
361         /// IME type can be set to use one of NUIApplication's constrcutors.
362         /// </summary>
363         /// <since_tizen> 3 </since_tizen>
364         public WindowType Type
365         {
366             get
367             {
368                 WindowType ret = (WindowType)Interop.Window.GetType(SwigCPtr);
369                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw new InvalidOperationException("FATAL: get Exception", NDalicPINVOKE.SWIGPendingException.Retrieve());
370                 return ret;
371             }
372             set
373             {
374                 Interop.Window.SetType(SwigCPtr, (int)value);
375                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
376             }
377         }
378
379         /// <summary>
380         /// Gets/Sets a window title.
381         /// </summary>
382         /// <since_tizen> 4 </since_tizen>
383         public string Title
384         {
385             get
386             {
387                 return windowTitle;
388             }
389             set
390             {
391                 windowTitle = value;
392                 SetClass(windowTitle, "");
393             }
394         }
395
396         /// <summary>
397         /// The rendering behavior of a Window.
398         /// </summary>
399         /// <since_tizen> 5 </since_tizen>
400         public RenderingBehaviorType RenderingBehavior
401         {
402             get
403             {
404                 return GetRenderingBehavior();
405             }
406             set
407             {
408                 SetRenderingBehavior(value);
409             }
410         }
411
412         /// <summary>
413         /// The window size property (read-only).
414         /// </summary>
415         /// <since_tizen> 3 </since_tizen>
416         public Size2D Size
417         {
418             get
419             {
420                 Size2D ret = GetSize();
421                 return ret;
422             }
423         }
424
425         /// <summary>
426         /// The background color property.
427         /// </summary>
428         /// <since_tizen> 3 </since_tizen>
429         public Color BackgroundColor
430         {
431             set
432             {
433                 SetBackgroundColor(value);
434             }
435             get
436             {
437                 Color ret = GetBackgroundColor();
438                 return ret;
439             }
440         }
441
442         /// <summary>
443         /// The DPI property (read-only).<br />
444         /// Retrieves the DPI of the display device to which the Window is connected.<br />
445         /// </summary>
446         /// <since_tizen> 3 </since_tizen>
447         public Vector2 Dpi
448         {
449             get
450             {
451                 return GetDpi();
452             }
453         }
454
455         /// <summary>
456         /// The layer count property (read-only).<br />
457         /// Queries the number of on-Window layers.<br />
458         /// </summary>
459         /// <since_tizen> 3 </since_tizen>
460         public uint LayerCount
461         {
462             get
463             {
464                 return GetLayerCount();
465             }
466         }
467
468         /// <summary>
469         /// Gets or sets a size of the window.
470         /// </summary>
471         /// <exception cref="ArgumentNullException"> Thrown when value is null. </exception>
472         /// <since_tizen> 4 </since_tizen>
473         public Size2D WindowSize
474         {
475             get
476             {
477                 return GetWindowSize();
478             }
479             set
480             {
481                 SetWindowSize(value);
482             }
483         }
484
485         /// <summary>
486         /// Gets or sets a position of the window.
487         /// </summary>
488         /// <exception cref="ArgumentNullException"> Thrown when value is null. </exception>
489         /// <since_tizen> 4 </since_tizen>
490         public Position2D WindowPosition
491         {
492             get
493             {
494                 return GetPosition();
495             }
496             set
497             {
498                 SetPosition(value);
499             }
500         }
501
502         /// <summary>
503         /// Sets position and size of the window. This API guarantees that
504         /// both moving and resizing of window will appear on the screen at once.
505         /// </summary>
506         [EditorBrowsable(EditorBrowsableState.Never)]
507         public Rectangle WindowPositionSize
508         {
509             get
510             {
511                 Position2D position = GetPosition();
512                 Size2D size = GetSize();
513                 Rectangle ret = new Rectangle(position.X, position.Y, size.Width, size.Height);
514                 position.Dispose();
515                 return ret;
516             }
517             set
518             {
519                 SetPositionSize(value);
520             }
521         }
522
523         internal static Vector4 DEFAULT_BACKGROUND_COLOR
524         {
525             get
526             {
527                 global::System.IntPtr cPtr = Interop.Stage.DefaultBackgroundColorGet();
528                 Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false);
529                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
530                 return ret;
531             }
532         }
533
534         internal static Vector4 DEBUG_BACKGROUND_COLOR
535         {
536             get
537             {
538                 global::System.IntPtr cPtr = Interop.Stage.DebugBackgroundColorGet();
539                 Vector4 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector4(cPtr, false);
540                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
541                 return ret;
542             }
543         }
544
545         internal List<Layer> LayersChildren
546         {
547             get
548             {
549                 return childLayers;
550             }
551         }
552
553         /// <summary>
554         ///  Get the LayoutController for this Window.
555         /// </summary>
556         internal LayoutController LayoutController
557         {
558             get
559             {
560                 return localController;
561             }
562         }
563
564         /// <summary>
565         /// Feed a key-event into the window.
566         /// </summary>
567         /// <param name="keyEvent">The key event to feed.</param>
568         /// <since_tizen> 4 </since_tizen>
569         [Obsolete("Please do not use! This will be deprecated! Please use FeedKey(Key keyEvent) instead!")]
570         public static void FeedKeyEvent(Key keyEvent)
571         {
572             Interop.Window.FeedKeyEvent(Key.getCPtr(keyEvent));
573             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
574         }
575
576         /// <summary>
577         /// Sets whether the window accepts a focus or not.
578         /// </summary>
579         /// <param name="accept">If a focus is accepted or not. The default is true.</param>
580         /// <since_tizen> 3 </since_tizen>
581         public void SetAcceptFocus(bool accept)
582         {
583             Interop.Window.SetAcceptFocus(SwigCPtr, accept);
584             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
585         }
586
587         /// <summary>
588         /// Returns whether the window accepts a focus or not.
589         /// </summary>
590         /// <returns>True if the window accepts a focus, false otherwise.</returns>
591         /// <since_tizen> 3 </since_tizen>
592         public bool IsFocusAcceptable()
593         {
594             bool ret = Interop.Window.IsFocusAcceptable(SwigCPtr);
595             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
596
597             return ret;
598         }
599
600         /// <summary>
601         /// Shows the window if it is hidden.
602         /// </summary>
603         /// <since_tizen> 3 </since_tizen>
604         public void Show()
605         {
606             Interop.Window.Show(SwigCPtr);
607             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
608         }
609
610         /// <summary>
611         /// Hides the window if it is showing.
612         /// </summary>
613         /// <since_tizen> 3 </since_tizen>
614         public void Hide()
615         {
616             Interop.Window.Hide(SwigCPtr);
617             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
618         }
619
620         /// <summary>
621         /// Retrieves whether the window is visible or not.
622         /// </summary>
623         /// <returns>True if the window is visible.</returns>
624         /// <since_tizen> 3 </since_tizen>
625         public bool IsVisible()
626         {
627             bool temp = Interop.Window.IsVisible(SwigCPtr);
628             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
629             return temp;
630         }
631
632         /// <summary>
633         /// Gets the count of supported auxiliary hints of the window.
634         /// </summary>
635         /// <returns>The number of supported auxiliary hints.</returns>
636         /// <since_tizen> 3 </since_tizen>
637         public uint GetSupportedAuxiliaryHintCount()
638         {
639             uint ret = Interop.Window.GetSupportedAuxiliaryHintCount(SwigCPtr);
640             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
641             return ret;
642         }
643
644         /// <summary>
645         /// Gets the supported auxiliary hint string of the window.
646         /// </summary>
647         /// <param name="index">The index of the supported auxiliary hint lists.</param>
648         /// <returns>The auxiliary hint string of the index.</returns>
649         /// <since_tizen> 3 </since_tizen>
650         public string GetSupportedAuxiliaryHint(uint index)
651         {
652             string ret = Interop.Window.GetSupportedAuxiliaryHint(SwigCPtr, index);
653             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
654             return ret;
655         }
656
657         /// <summary>
658         /// Creates an auxiliary hint of the window.
659         /// </summary>
660         /// <param name="hint">The auxiliary hint string.</param>
661         /// <param name="value">The value string.</param>
662         /// <returns>The ID of created auxiliary hint, or 0 on failure.</returns>
663         /// <since_tizen> 3 </since_tizen>
664         public uint AddAuxiliaryHint(string hint, string value)
665         {
666             uint ret = Interop.Window.AddAuxiliaryHint(SwigCPtr, hint, value);
667             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
668             return ret;
669         }
670
671         /// <summary>
672         /// Removes an auxiliary hint of the window.
673         /// </summary>
674         /// <param name="id">The ID of the auxiliary hint.</param>
675         /// <returns>True if no error occurred, false otherwise.</returns>
676         /// <since_tizen> 3 </since_tizen>
677         public bool RemoveAuxiliaryHint(uint id)
678         {
679             bool ret = Interop.Window.RemoveAuxiliaryHint(SwigCPtr, id);
680             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
681             return ret;
682         }
683
684         /// <summary>
685         /// Changes a value of the auxiliary hint.
686         /// </summary>
687         /// <param name="id">The auxiliary hint ID.</param>
688         /// <param name="value">The value string to be set.</param>
689         /// <returns>True if no error occurred, false otherwise.</returns>
690         /// <since_tizen> 3 </since_tizen>
691         public bool SetAuxiliaryHintValue(uint id, string value)
692         {
693             bool ret = Interop.Window.SetAuxiliaryHintValue(SwigCPtr, id, value);
694             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
695             return ret;
696         }
697
698         /// <summary>
699         /// Gets a value of the auxiliary hint.
700         /// </summary>
701         /// <param name="id">The auxiliary hint ID.</param>
702         /// <returns>The string value of the auxiliary hint ID, or an empty string if none exists.</returns>
703         /// <since_tizen> 3 </since_tizen>
704         public string GetAuxiliaryHintValue(uint id)
705         {
706             string ret = Interop.Window.GetAuxiliaryHintValue(SwigCPtr, id);
707             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
708             return ret;
709         }
710
711         /// <summary>
712         /// Gets an ID of the auxiliary hint string.
713         /// </summary>
714         /// <param name="hint">The auxiliary hint string.</param>
715         /// <returns>The ID of auxiliary hint string, or 0 on failure.</returns>
716         /// <since_tizen> 3 </since_tizen>
717         public uint GetAuxiliaryHintId(string hint)
718         {
719             uint ret = Interop.Window.GetAuxiliaryHintId(SwigCPtr, hint);
720             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
721             return ret;
722         }
723
724         /// <summary>
725         /// Sets a region to accept input events.
726         /// </summary>
727         /// <param name="inputRegion">The region to accept input events.</param>
728         /// <since_tizen> 3 </since_tizen>
729         public void SetInputRegion(Rectangle inputRegion)
730         {
731             Interop.Window.IncludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
732             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
733         }
734
735         /// <summary>
736         /// Sets a priority level for the specified notification window.
737         /// </summary>
738         /// <param name="level">The notification window level.</param>
739         /// <returns>True if no error occurred, false otherwise.</returns>
740         /// <since_tizen> 3 </since_tizen>
741         public bool SetNotificationLevel(NotificationLevel level)
742         {
743             var ret = (OperationResult)Interop.Window.SetNotificationLevel(SwigCPtr, (int)level);
744             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
745             return ret == OperationResult.Succeed;
746         }
747
748         /// <summary>
749         /// Gets a priority level for the specified notification window.
750         /// </summary>
751         /// <returns>The notification window level.</returns>
752         /// <since_tizen> 3 </since_tizen>
753         public NotificationLevel GetNotificationLevel()
754         {
755             NotificationLevel ret = (NotificationLevel)Interop.Window.GetNotificationLevel(SwigCPtr);
756             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
757             return ret;
758         }
759
760         /// <summary>
761         /// Sets a transparent window's visual state to opaque. <br />
762         /// If a visual state of a transparent window is opaque, <br />
763         /// then the window manager could handle it as an opaque window when calculating visibility.
764         /// </summary>
765         /// <param name="opaque">Whether the window's visual state is opaque.</param>
766         /// <remarks>This will have no effect on an opaque window. <br />
767         /// It doesn't change transparent window to opaque window but lets the window manager know the visual state of the window.
768         /// </remarks>
769         /// <since_tizen> 3 </since_tizen>
770         public void SetOpaqueState(bool opaque)
771         {
772             Interop.Window.SetOpaqueState(SwigCPtr, opaque);
773             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
774         }
775
776         /// <summary>
777         /// Returns whether a transparent window's visual state is opaque or not.
778         /// </summary>
779         /// <returns>True if the window's visual state is opaque, false otherwise.</returns>
780         /// <remarks> The return value has no meaning on an opaque window. </remarks>
781         /// <since_tizen> 3 </since_tizen>
782         public bool IsOpaqueState()
783         {
784             bool ret = Interop.Window.IsOpaqueState(SwigCPtr);
785             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
786             return ret;
787         }
788
789         /// <summary>
790         /// Sets a window's screen off mode.
791         /// </summary>
792         /// <param name="screenOffMode">The screen mode.</param>
793         /// <returns>True if no error occurred, false otherwise.</returns>
794         /// <since_tizen> 4 </since_tizen>
795         public bool SetScreenOffMode(ScreenOffMode screenOffMode)
796         {
797             var ret = (OperationResult)Interop.Window.SetScreenOffMode(SwigCPtr, (int)screenOffMode);
798             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
799             return ret == OperationResult.Succeed;
800         }
801
802         /// <summary>
803         /// Gets the screen mode of the window.
804         /// </summary>
805         /// <returns>The screen off mode.</returns>
806         /// <since_tizen> 4 </since_tizen>
807         public ScreenOffMode GetScreenOffMode()
808         {
809             ScreenOffMode ret = (ScreenOffMode)Interop.Window.GetScreenOffMode(SwigCPtr);
810             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
811             return ret;
812         }
813
814         /// <summary>
815         /// Sets preferred brightness of the window.
816         /// </summary>
817         /// <param name="brightness">The preferred brightness (0 to 100).</param>
818         /// <returns>True if no error occurred, false otherwise.</returns>
819         /// <since_tizen> 3 </since_tizen>
820         public bool SetBrightness(int brightness)
821         {
822             var ret = (OperationResult)Interop.Window.SetBrightness(SwigCPtr, brightness);
823             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
824             return ret == OperationResult.Succeed;
825         }
826
827         /// <summary>
828         /// Gets the preferred brightness of the window.
829         /// </summary>
830         /// <returns>The preferred brightness.</returns>
831         /// <since_tizen> 3 </since_tizen>
832         public int GetBrightness()
833         {
834             int ret = Interop.Window.GetBrightness(SwigCPtr);
835             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
836             return ret;
837         }
838
839         /// <summary>
840         /// Sets the window name and the class string.
841         /// </summary>
842         /// <param name="name">The name of the window.</param>
843         /// <param name="klass">The class of the window.</param>
844         /// <since_tizen> 4 </since_tizen>
845         public void SetClass(string name, string klass)
846         {
847             Interop.Window.SetClass(SwigCPtr, name, klass);
848             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
849         }
850
851         /// <summary>
852         /// Raises the window to the top of the window stack.
853         /// </summary>
854         /// <since_tizen> 3 </since_tizen>
855         public void Raise()
856         {
857             Interop.Window.Raise(SwigCPtr);
858             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
859         }
860
861         /// <summary>
862         /// Lowers the window to the bottom of the window stack.
863         /// </summary>
864         /// <since_tizen> 3 </since_tizen>
865         public void Lower()
866         {
867             Interop.Window.Lower(SwigCPtr);
868             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
869         }
870
871         /// <summary>
872         /// Activates the window to the top of the window stack even it is iconified.
873         /// </summary>
874         /// <since_tizen> 3 </since_tizen>
875         public void Activate()
876         {
877             Interop.Window.Activate(SwigCPtr);
878             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
879         }
880
881         /// <summary>
882         /// Gets the default ( root ) layer.
883         /// </summary>
884         /// <returns>The root layer.</returns>
885         /// <since_tizen> 3 </since_tizen>
886         public Layer GetDefaultLayer()
887         {
888             return this.GetRootLayer();
889         }
890
891         /// <summary>
892         /// Add a child view to window.
893         /// </summary>
894         /// <param name="view">the child should be added to the window.</param>
895         /// <since_tizen> 3 </since_tizen>
896         public void Add(View view)
897         {
898             Interop.Actor.Add(Layer.getCPtr(GetRootLayer()), View.getCPtr(view));
899             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
900             this.GetRootLayer().AddViewToLayerList(view); // Maintain the children list in the Layer
901             if (null != view)
902             {
903                 view.InternalParent = this.GetRootLayer();
904
905                 this.GetRootLayer().LayoutCount += view.LayoutCount;
906             }
907         }
908
909         /// <summary>
910         /// Remove a child view from window.
911         /// </summary>
912         /// <param name="view">the child to be removed.</param>
913         /// <since_tizen> 3 </since_tizen>
914         public void Remove(View view)
915         {
916             Interop.Actor.Remove(Layer.getCPtr(GetRootLayer()), View.getCPtr(view));
917             this.GetRootLayer().RemoveViewFromLayerList(view); // Maintain the children list in the Layer
918             if (null != view)
919             {
920                 view.InternalParent = null;
921
922                 this.GetRootLayer().LayoutCount -= view.LayoutCount;
923             }
924         }
925
926         /// <summary>
927         /// Retrieves the layer at a specified depth.
928         /// </summary>
929         /// <param name="depth">The layer's depth index.</param>
930         /// <returns>The layer found at the given depth.</returns>
931         /// <since_tizen> 3 </since_tizen>
932         public Layer GetLayer(uint depth)
933         {
934             if (depth < LayersChildren?.Count)
935             {
936                 Layer ret = LayersChildren?[Convert.ToInt32(depth)];
937                 return ret;
938             }
939             else
940             {
941                 return null;
942             }
943         }
944
945         /// <summary>
946         /// Destroy the window immediately.
947         /// </summary>
948         [EditorBrowsable(EditorBrowsableState.Never)]
949         public void Destroy()
950         {
951             this.Dispose();
952         }
953
954         /// <summary>
955         /// Keep rendering for at least the given amount of time.
956         /// </summary>
957         /// <param name="durationSeconds">Time to keep rendering, 0 means render at least one more frame.</param>
958         /// <since_tizen> 3 </since_tizen>
959         public void KeepRendering(float durationSeconds)
960         {
961             Interop.Stage.KeepRendering(stageCPtr, durationSeconds);
962             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
963         }
964
965         /// <summary>
966         /// Grabs the key specified by a key for a window only when a window is the topmost window.<br />
967         /// This function can be used for following example scenarios: <br />
968         /// - Mobile - Using volume up or down as zoom up or down in camera apps.<br />
969         /// </summary>
970         /// <param name="DaliKey">The key code to grab.</param>
971         /// <returns>True if the grab succeeds.</returns>
972         /// <since_tizen> 3 </since_tizen>
973         public bool GrabKeyTopmost(int DaliKey)
974         {
975             bool ret = Interop.Window.GrabKeyTopmost(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
976             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
977             return ret;
978         }
979
980         /// <summary>
981         /// Ungrabs the key specified by a key for the window.<br />
982         /// 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 />
983         /// </summary>
984         /// <param name="DaliKey">The key code to ungrab.</param>
985         /// <returns>True if the ungrab succeeds.</returns>
986         /// <since_tizen> 3 </since_tizen>
987         public bool UngrabKeyTopmost(int DaliKey)
988         {
989             bool ret = Interop.Window.UngrabKeyTopmost(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
990             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
991             return ret;
992         }
993
994         /// <summary>
995         ///  Grabs the key specified by a key for a window in a GrabMode. <br />
996         ///  Details: This function can be used for following example scenarios: <br />
997         ///  - TV - A user might want to change the volume or channel of the background TV contents while focusing on the foregrund app. <br />
998         ///  - Mobile - When a user presses the Home key, the homescreen appears regardless of the current foreground app. <br />
999         ///  - Mobile - Using the volume up or down as zoom up or down in camera apps. <br />
1000         /// </summary>
1001         /// <param name="DaliKey">The key code to grab.</param>
1002         /// <param name="GrabMode">The grab mode for the key.</param>
1003         /// <returns>True if the grab succeeds.</returns>
1004         /// <since_tizen> 3 </since_tizen>
1005         public bool GrabKey(int DaliKey, KeyGrabMode GrabMode)
1006         {
1007             bool ret = Interop.Window.GrabKey(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey, (int)GrabMode);
1008             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1009             return ret;
1010         }
1011
1012         /// <summary>
1013         /// Ungrabs the key specified by a key for a window.<br />
1014         /// 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 />
1015         /// </summary>
1016         /// <param name="DaliKey">The key code to ungrab.</param>
1017         /// <returns>True if the ungrab succeeds.</returns>
1018         /// <since_tizen> 3 </since_tizen>
1019         public bool UngrabKey(int DaliKey)
1020         {
1021             bool ret = Interop.Window.UngrabKey(HandleRef.ToIntPtr(this.SwigCPtr), DaliKey);
1022             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1023             return ret;
1024         }
1025
1026         /// <summary>
1027         /// Sets the keyboard repeat information.
1028         /// </summary>
1029         /// <param name="rate">The key repeat rate value in seconds.</param>
1030         /// <param name="delay">The key repeat delay value in seconds.</param>
1031         /// <returns>True if setting the keyboard repeat succeeds.</returns>
1032         /// <since_tizen> 5 </since_tizen>
1033         public bool SetKeyboardRepeatInfo(float rate, float delay)
1034         {
1035             bool ret = Interop.Window.SetKeyboardRepeatInfo(rate, delay);
1036             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1037             return ret;
1038         }
1039
1040         /// <summary>
1041         /// Gets the keyboard repeat information.
1042         /// </summary>
1043         /// <param name="rate">The key repeat rate value in seconds.</param>
1044         /// <param name="delay">The key repeat delay value in seconds.</param>
1045         /// <returns>True if setting the keyboard repeat succeeds.</returns>
1046         /// <since_tizen> 5 </since_tizen>
1047         public bool GetKeyboardRepeatInfo(out float rate, out float delay)
1048         {
1049             bool ret = Interop.Window.GetKeyboardRepeatInfo(out rate, out delay);
1050             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1051             return ret;
1052         }
1053
1054         /// <summary>
1055         /// Adds a layer to the stage.
1056         /// </summary>
1057         /// <param name="layer">Layer to add.</param>
1058         /// <exception cref="ArgumentNullException"> Thrown when layer is null. </exception>
1059         /// <since_tizen> 3 </since_tizen>
1060         public void AddLayer(Layer layer)
1061         {
1062             Add(layer);
1063         }
1064
1065         /// <summary>
1066         /// Removes a layer from the stage.
1067         /// </summary>
1068         /// <param name="layer">Layer to remove.</param>
1069         /// <exception cref="ArgumentNullException"> Thrown when layer is null. </exception>
1070         /// <since_tizen> 3 </since_tizen>
1071         public void RemoveLayer(Layer layer)
1072         {
1073             Remove(layer);
1074         }
1075
1076         /// <summary>
1077         /// Feeds a key event into the window.
1078         /// </summary>
1079         /// <param name="keyEvent">The key event to feed.</param>
1080         /// <since_tizen> 5 </since_tizen>
1081         public void FeedKey(Key keyEvent)
1082         {
1083             Interop.Window.FeedKeyEvent(Key.getCPtr(keyEvent));
1084             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1085         }
1086
1087         /// <summary>
1088         /// Allows at least one more render, even when paused.
1089         /// The window should be shown, not minimised.
1090         /// </summary>
1091         /// <since_tizen> 4 </since_tizen>
1092         public void RenderOnce()
1093         {
1094             Interop.Window.RenderOnce(SwigCPtr);
1095             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1096         }
1097
1098         /// <summary>
1099         /// Sets whether the window is transparent or not.
1100         /// </summary>
1101         /// <param name="transparent">Whether the window is transparent or not.</param>
1102         /// <since_tizen> 5 </since_tizen>
1103         public void SetTransparency(bool transparent)
1104         {
1105             Interop.Window.SetTransparency(SwigCPtr, transparent);
1106             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1107
1108             // Setting transparency of the window should request a relayout of the tree in the case the window changes from fully transparent.
1109         }
1110
1111         /// <summary>
1112         /// Sets parent window of the window.
1113         /// After setting that, these windows do together when raise-up, lower and iconified/deiconified.
1114         /// Initially, the window is located on top of the parent. The window can go below parent by calling Lower().
1115         /// If parent's window stack is changed by calling Raise() or Lower(), child windows are located on top of the parent again.
1116         /// </summary>
1117         /// <param name="parent">The parent window.</param>
1118         /// <since_tizen> 6 </since_tizen>
1119         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1120         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1121         public void SetParent(Window parent)
1122         {
1123             if (IsSupportedMultiWindow() == false)
1124             {
1125                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1126             }
1127             Interop.Window.SetParent(SwigCPtr, Window.getCPtr(parent));
1128             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1129         }
1130
1131         /// <summary>
1132         /// Sets parent window of the window.
1133         /// After setting that, these windows do together when raise-up, lower and iconified/deiconified.
1134         /// This function has the additional flag whether the child is located above or below of the parent.
1135         /// </summary>
1136         /// <param name="parent">The parent window.</param>
1137         /// <param name="belowParent">The flag is whether the child is located above or below of the parent.</param>
1138         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1139         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1140         [EditorBrowsable(EditorBrowsableState.Never)]
1141         public void SetParent(Window parent, bool belowParent)
1142         {
1143             if (IsSupportedMultiWindow() == false)
1144             {
1145                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1146             }
1147             Interop.Window.SetParentWithStack(SwigCPtr, Window.getCPtr(parent), belowParent);
1148             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1149         }
1150
1151         /// <summary>
1152         /// Unsets parent window of the window.
1153         /// After unsetting, the window is disconnected his parent window.
1154         /// </summary>
1155         /// <since_tizen> 6 </since_tizen>
1156         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1157         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1158         public void Unparent()
1159         {
1160             if (IsSupportedMultiWindow() == false)
1161             {
1162                 NUILog.Error("Fail to create window. because this device does not support opengles.surfaceless_context.");
1163             }
1164             Interop.Window.Unparent(SwigCPtr);
1165             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1166         }
1167
1168         /// <summary>
1169         /// Gets parent window of the window.
1170         /// </summary>
1171         /// <returns>The parent window of the window.</returns>
1172         /// <since_tizen> 6 </since_tizen>
1173         /// <feature> http://tizen.org/feature/opengles.surfaceless_context </feature>
1174         /// <exception cref="NotSupportedException">The required feature is not supported.</exception>
1175         [System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1721: Property names should not match get methods")]
1176         public Window GetParent()
1177         {
1178             if (IsSupportedMultiWindow() == false)
1179             {
1180                 NUILog.Error("This device does not support surfaceless_context. So Window cannot be created. ");
1181             }
1182             Window ret = Registry.GetManagedBaseHandleFromNativePtr(Interop.Window.GetParent(SwigCPtr)) as Window;
1183             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1184             return ret;
1185         }
1186
1187         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
1188         [EditorBrowsable(EditorBrowsableState.Never)]
1189         public void ObjectDump()
1190         {
1191             Layer rootLayer = GetRootLayer();
1192             foreach (View view in rootLayer.Children)
1193             {
1194                 view.ObjectDump();
1195             }
1196         }
1197
1198         internal static bool IsInstalled()
1199         {
1200             bool ret = Interop.Stage.IsInstalled();
1201             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1202             return ret;
1203         }
1204
1205         /// <summary>
1206         /// Adds an orientation to the list of available orientations.
1207         /// </summary>
1208         /// <param name="orientation">The available orientation to add</param>
1209         /// <since_tizen> 6 </since_tizen>
1210         public void AddAvailableOrientation(Window.WindowOrientation orientation)
1211         {
1212             Interop.Window.AddAvailableOrientation(SwigCPtr, (int)orientation);
1213             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1214         }
1215
1216         /// <summary>
1217         /// Removes an orientation from the list of available orientations.
1218         /// </summary>
1219         /// <param name="orientation">The available orientation to remove.</param>
1220         /// <since_tizen> 6 </since_tizen>
1221         public void RemoveAvailableOrientation(Window.WindowOrientation orientation)
1222         {
1223             Interop.Window.RemoveAvailableOrientation(SwigCPtr, (int)orientation);
1224             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1225         }
1226
1227         /// <summary>
1228         /// Sets a preferred orientation.
1229         /// </summary>
1230         /// <param name="orientation">The preferred orientation.</param>
1231         /// <since_tizen> 6 </since_tizen>
1232         public void SetPreferredOrientation(Window.WindowOrientation orientation)
1233         {
1234             Interop.Window.SetPreferredOrientation(SwigCPtr, (int)orientation);
1235             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1236         }
1237
1238         /// <summary>
1239         /// Gets the preferred orientation.
1240         /// </summary>
1241         /// <since_tizen> 6 </since_tizen>
1242         /// <returns>The preferred orientation if previously set, or none.</returns>
1243         public Window.WindowOrientation GetPreferredOrientation()
1244         {
1245             Window.WindowOrientation ret = (Window.WindowOrientation)Interop.Window.GetPreferredOrientation(SwigCPtr);
1246             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1247             return ret;
1248         }
1249
1250         /// <summary>
1251         /// Gets current orientation of the window.
1252         /// </summary>
1253         /// <since_tizen> 6 </since_tizen>
1254         /// <returns>The current window orientation if previously set, or none.</returns>
1255         [EditorBrowsable(EditorBrowsableState.Never)]
1256         public Window.WindowOrientation GetCurrentOrientation()
1257         {
1258             Window.WindowOrientation ret = (Window.WindowOrientation)Interop.Window.GetCurrentOrientation(SwigCPtr);
1259             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1260             return ret;
1261         }
1262
1263         /// <summary>
1264         /// Sets available orientations of the window.
1265         /// This API is for setting several orientations one time.
1266         /// </summary>
1267         /// <param name="orientations">The list of orientations.</param>
1268         /// <since_tizen> 6 </since_tizen>
1269         [EditorBrowsable(EditorBrowsableState.Never)]
1270         public void SetAvailableOrientations(List<Window.WindowOrientation> orientations)
1271         {
1272             if (null == orientations)
1273             {
1274                 throw new ArgumentNullException(nameof(orientations));
1275             }
1276
1277             PropertyArray orientationArray = new PropertyArray();
1278             for (int i = 0; i < orientations.Count; i++)
1279             {
1280                 PropertyValue value = new PropertyValue((int)orientations[i]);
1281                 orientationArray.PushBack(value);
1282                 value.Dispose();
1283             }
1284
1285             Interop.Window.SetAvailableOrientations(SwigCPtr, PropertyArray.getCPtr(orientationArray), orientations.Count);
1286             orientationArray.Dispose();
1287             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1288         }
1289
1290         /// <summary>
1291         /// Get native window ID
1292         /// </summary>
1293         /// <returns>native window ID</returns>
1294         [EditorBrowsable(EditorBrowsableState.Never)]
1295         public int GetNativeId()
1296         {
1297             int ret = Interop.Window.GetNativeId(SwigCPtr);
1298             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1299             return ret;
1300         }
1301
1302         internal Any GetNativeHandle()
1303         {
1304             Any ret = new Any(Interop.WindowInternal.WindowGetNativeHandle(SwigCPtr), true);
1305             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1306             return ret;
1307         }
1308
1309         internal void Add(Layer layer)
1310         {
1311             if (null == layer)
1312             {
1313                 throw new ArgumentNullException(nameof(layer));
1314             }
1315             Interop.Window.Add(SwigCPtr, Layer.getCPtr(layer));
1316             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1317
1318             LayersChildren?.Add(layer);
1319             layer.SetWindow(this);
1320         }
1321
1322         internal void Remove(Layer layer)
1323         {
1324             if (null == layer)
1325             {
1326                 throw new ArgumentNullException(nameof(layer));
1327             }
1328             Interop.Window.Remove(SwigCPtr, Layer.getCPtr(layer));
1329             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1330
1331             LayersChildren?.Remove(layer);
1332             layer.SetWindow(null);
1333         }
1334
1335         internal Vector2 GetSize()
1336         {
1337             var val = new Uint16Pair(Interop.Window.GetSize(SwigCPtr), true);
1338             Vector2 ret = new Vector2(val.GetWidth(), val.GetHeight());
1339             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1340             return ret;
1341         }
1342
1343         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
1344         [EditorBrowsable(EditorBrowsableState.Never)]
1345         public RenderTaskList GetRenderTaskList()
1346         {
1347             RenderTaskList ret = new RenderTaskList(Interop.Stage.GetRenderTaskList(stageCPtr), true);
1348             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1349             return ret;
1350         }
1351
1352         /// <summary>
1353         /// Queries the number of on-window layers.
1354         /// </summary>
1355         /// <returns>The number of layers.</returns>
1356         /// <remarks>Note that a default layer is always provided (count >= 1).</remarks>
1357         internal uint GetLayerCount()
1358         {
1359             if (LayersChildren == null || LayersChildren.Count < 0)
1360                 return 0;
1361
1362             return (uint)LayersChildren.Count;
1363         }
1364
1365         internal Layer GetRootLayer()
1366         {
1367             // Window.IsInstalled() is actually true only when called from event thread and
1368             // Core has been initialized, not when Stage is ready.
1369             if (rootLayer == null && Window.IsInstalled())
1370             {
1371                 rootLayer = new Layer(Interop.Window.GetRootLayer(SwigCPtr), true);
1372                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1373                 LayersChildren?.Add(rootLayer);
1374                 rootLayer.SetWindow(this);
1375             }
1376             return rootLayer;
1377         }
1378
1379         internal void SetBackgroundColor(Vector4 color)
1380         {
1381             Interop.Window.SetBackgroundColor(SwigCPtr, Vector4.getCPtr(color));
1382             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1383         }
1384
1385         internal Vector4 GetBackgroundColor()
1386         {
1387             Vector4 ret = new Vector4(Interop.Window.GetBackgroundColor(SwigCPtr), true);
1388             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1389             return ret;
1390         }
1391
1392         internal Vector2 GetDpi()
1393         {
1394             Vector2 ret = new Vector2(Interop.Stage.GetDpi(stageCPtr), true);
1395             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1396             return ret;
1397         }
1398
1399         internal ObjectRegistry GetObjectRegistry()
1400         {
1401             ObjectRegistry ret = new ObjectRegistry(Interop.Stage.GetObjectRegistry(stageCPtr), true);
1402             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1403             return ret;
1404         }
1405
1406         internal void SetRenderingBehavior(RenderingBehaviorType renderingBehavior)
1407         {
1408             Interop.Stage.SetRenderingBehavior(stageCPtr, (int)renderingBehavior);
1409             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1410         }
1411
1412         internal RenderingBehaviorType GetRenderingBehavior()
1413         {
1414             RenderingBehaviorType ret = (RenderingBehaviorType)Interop.Stage.GetRenderingBehavior(stageCPtr);
1415             if (NDalicPINVOKE.SWIGPendingException.Pending)
1416                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1417             return ret;
1418         }
1419
1420         internal void SetWindowSize(Size2D size)
1421         {
1422             if (null == size)
1423             {
1424                 throw new ArgumentNullException(nameof(size));
1425             }
1426             var val = new Uint16Pair((uint)size.Width, (uint)size.Height);
1427             Interop.Window.SetSize(SwigCPtr, Uint16Pair.getCPtr(val));
1428             val.Dispose();
1429             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1430             // Resetting Window size should request a relayout of the tree.
1431         }
1432
1433         internal Size2D GetWindowSize()
1434         {
1435             var val = new Uint16Pair(Interop.Window.GetSize(SwigCPtr), true);
1436             Size2D ret = new Size2D(val.GetWidth(), val.GetHeight());
1437             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1438             return ret;
1439         }
1440
1441         internal void SetPosition(Position2D position)
1442         {
1443             if (null == position)
1444             {
1445                 throw new ArgumentNullException(nameof(position));
1446             }
1447             var val = new Uint16Pair((uint)position.X, (uint)position.Y);
1448             Interop.Window.SetPosition(SwigCPtr, Uint16Pair.getCPtr(val));
1449             val.Dispose();
1450             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1451             // Setting Position of the window should request a relayout of the tree.
1452         }
1453
1454         internal Position2D GetPosition()
1455         {
1456             var val = new Uint16Pair(Interop.Window.GetPosition(SwigCPtr), true);
1457             Position2D ret = new Position2D(val.GetX(), val.GetY());
1458             val.Dispose();
1459             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1460             return ret;
1461         }
1462
1463         internal void SetPositionSize(Rectangle positionSize)
1464         {
1465             Interop.Window.SetPositionSize(SwigCPtr, Rectangle.getCPtr(positionSize));
1466
1467             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1468
1469             // Setting Position of the window should request a relayout of the tree.
1470         }
1471
1472         /// <summary>
1473         /// Enables the floating mode of window.
1474         /// The floating mode is to support window is moved or resized by display server.
1475         /// For example, if the video-player window sets the floating mode,
1476         /// then display server changes its geometry and handles it like a popup.
1477         /// The way of handling floating mode window is decided by display server.
1478         /// A special display server(as a Tizen display server) supports this mode.
1479         /// </summary>
1480         /// <param name="enable">Enable floating mode or not.</param>
1481         [EditorBrowsable(EditorBrowsableState.Never)]
1482         public void EnableFloatingMode(bool enable)
1483         {
1484             Interop.Window.EnableFloatingMode(SwigCPtr, enable);
1485             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1486         }
1487
1488         /// <summary>
1489         /// Requests to display server for the window is moved by display server.
1490         /// It can be work with setting window floating mode.
1491         /// </summary>
1492         [EditorBrowsable(EditorBrowsableState.Never)]
1493         public void RequestMoveToServer()
1494         {
1495             Interop.Window.RequestMoveToServer(SwigCPtr);
1496             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1497         }
1498
1499         /// <summary>
1500         ///  Requests to display server for the window is resized by display server.
1501         /// It can be work with setting window floating mode.
1502         /// </summary>
1503         /// <param name="direction">It is indicated the window's side or edge for starting point.</param>
1504         [EditorBrowsable(EditorBrowsableState.Never)]
1505         public void RequestResizeToServer(ResizeDirection direction)
1506         {
1507             Interop.Window.RequestResizeToServer(SwigCPtr, (int)direction);
1508             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1509         }
1510
1511         /// <summary>
1512         /// Includes input region.
1513         /// This function inlcudes input regions.
1514         /// It can be used multiple times and supports multiple regions.
1515         /// It means input region will be extended.
1516         /// This input is related to mouse and touch event.
1517         /// If device has touch screen, this function is useful.
1518         /// Otherwise device does not have that, we can use it after connecting mouse to the device.
1519         /// </summary>
1520         /// <param name="inputRegion">The included region to accept input events.</param>
1521         [EditorBrowsable(EditorBrowsableState.Never)]
1522         public void IncludeInputRegion(Rectangle inputRegion)
1523         {
1524             Interop.Window.IncludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
1525             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1526         }
1527
1528         /// <summary>
1529         /// This function excludes input regions.
1530         /// It can be used multiple times and supports multiple regions.
1531         /// It means input region will be reduced.
1532         /// Nofice, should be set input area by IncludeInputRegion() before this function is used.
1533         /// This input is related to mouse and touch event.
1534         /// If device has touch screen, this function is useful.
1535         /// Otherwise device does not have that, we can use it after connecting mouse to the device.
1536         /// </summary>
1537         /// <param name="inputRegion">The excluded region to except input events.</param>
1538         [EditorBrowsable(EditorBrowsableState.Never)]
1539         public void ExcludeInputRegion(Rectangle inputRegion)
1540         {
1541             Interop.Window.ExcludeInputRegion(SwigCPtr, Rectangle.getCPtr(inputRegion));
1542             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1543         }
1544
1545         /// <summary>
1546         /// Add FrameUpdateCallback
1547         /// </summary>
1548         [EditorBrowsable(EditorBrowsableState.Never)]
1549         public void AddFrameUpdateCallback(FrameUpdateCallbackInterface frameUpdateCallback)
1550         {
1551             frameUpdateCallback?.AddFrameUpdateCallback(stageCPtr, Layer.getCPtr(GetRootLayer()));
1552         }
1553
1554         /// <summary>
1555         /// Remove FrameUpdateCallback
1556         /// </summary>
1557         [EditorBrowsable(EditorBrowsableState.Never)]
1558         public void RemoveFrameUpdateCallback(FrameUpdateCallbackInterface frameUpdateCallback)
1559         {
1560             frameUpdateCallback?.RemoveFrameUpdateCallback(stageCPtr);
1561         }
1562
1563         /// <summary>
1564         /// Dispose for Window
1565         /// </summary>
1566         [EditorBrowsable(EditorBrowsableState.Never)]
1567         protected override void Dispose(DisposeTypes type)
1568         {
1569             if (disposed)
1570             {
1571                 return;
1572             }
1573
1574             if (type == DisposeTypes.Explicit)
1575             {
1576                 //Called by User
1577                 //Release your own managed resources here.
1578                 //You should release all of your own disposable objects here.
1579
1580                 if (rootLayer != null)
1581                 {
1582                     rootLayer.Dispose();
1583                 }
1584
1585                 localController?.Dispose();
1586
1587                 foreach (var layer in childLayers)
1588                 {
1589                     if (layer != null)
1590                     {
1591                         layer.Dispose();
1592                     }
1593                 }
1594
1595                 childLayers.Clear();
1596             }
1597
1598             this.DisconnectNativeSignals();
1599
1600             base.Dispose(type);
1601         }
1602
1603         /// This will not be public opened.
1604         [EditorBrowsable(EditorBrowsableState.Never)]
1605         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
1606         {
1607             Interop.Window.DeleteWindow(swigCPtr);
1608         }
1609
1610         private static Dictionary<int, internalHookCallbackType> frameCallbackList = new Dictionary<int, internalHookCallbackType>();
1611
1612         private static readonly object locker = new object();
1613
1614         private static int key = 0;
1615
1616         private static FrameCallbackType internalHookFrameCallback = OnInternalHookFrameCallback;
1617
1618         private struct internalHookCallbackType
1619         {
1620             public FrameCallbackType userCallback;
1621             public int frameId;
1622         }
1623
1624         private static void OnInternalHookFrameCallback(int id)
1625         {
1626             lock (locker)
1627             {
1628                 if (frameCallbackList.ContainsKey(id))
1629                 {
1630                     if (frameCallbackList[id].userCallback != null)
1631                     {
1632                         frameCallbackList[id].userCallback.Invoke(frameCallbackList[id].frameId);
1633                         frameCallbackList.Remove(id);
1634                     }
1635                     else
1636                     {
1637                         NUILog.Error($"found userCallback is NULL");
1638                         frameCallbackList.Remove(id);
1639                     }
1640                 }
1641             }
1642         }
1643
1644         private int AddInterHookCallback(FrameCallbackType callback, int frameId)
1645         {
1646             if (null == callback)
1647             {
1648                 throw new ArgumentNullException(nameof(callback), "FrameCallbackType should not be null");
1649             }
1650             var assignedKey = 0;
1651             lock (locker)
1652             {
1653                 key++;
1654                 assignedKey = key;
1655                 frameCallbackList.Add(assignedKey, new internalHookCallbackType()
1656                 {
1657                     userCallback = callback,
1658                     frameId = frameId,
1659                 });
1660             }
1661             return assignedKey;
1662         }
1663
1664         /// <summary>
1665         /// Type of callback which is called when the frame rendering is done by graphics driver or when the frame is displayed on display.
1666         /// </summary>
1667         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
1668         [EditorBrowsable(EditorBrowsableState.Never)]
1669         public delegate void FrameCallbackType(int frameId);
1670
1671         /// <summary>
1672         /// Adds a callback that is called when the frame rendering is done by the graphics driver.
1673         /// A callback of the following type may be used:
1674         /// <code>
1675         /// void MyFunction( int frameId )
1676         /// </code>
1677         /// This callback will be deleted once it is called.
1678         /// <remarks>
1679         /// Ownership of the callback is passed onto this class
1680         /// </remarks>
1681         /// </summary>
1682         /// <param name="callback">The function to call</param>
1683         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
1684         /// <exception cref="ArgumentNullException">This exception can occur by the callback is null.</exception>
1685         [EditorBrowsable(EditorBrowsableState.Never)]
1686         public void AddFrameRenderedCallback(FrameCallbackType callback, int frameId)
1687         {
1688             var assignedKey = AddInterHookCallback(callback, frameId);
1689             Interop.WindowInternal.AddFrameRenderedCallback(SwigCPtr, new HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(internalHookFrameCallback)), assignedKey);
1690
1691             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1692         }
1693
1694         /// <summary>
1695         /// Adds a callback that is called when the frame is displayed on the display.
1696         /// A callback of the following type may be used:
1697         /// <code>
1698         /// void MyFunction( int frameId )
1699         /// </code>
1700         /// This callback will be deleted once it is called.
1701         /// <remarks>
1702         /// Ownership of the callback is passed onto this class
1703         /// </remarks>
1704         /// </summary>
1705         /// <param name="callback">The function to call</param>
1706         /// <param name="frameId">The Id to specify the frame. It will be passed when the callback is called.</param>
1707         /// <exception cref="ArgumentNullException">This exception can occur by the callback is null.</exception>
1708         [EditorBrowsable(EditorBrowsableState.Never)]
1709         public void AddFramePresentedCallback(FrameCallbackType callback, int frameId)
1710         {
1711             var assignedKey = AddInterHookCallback(callback, frameId);
1712             Interop.WindowInternal.AddFramePresentedCallback(SwigCPtr, new HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(internalHookFrameCallback)), assignedKey);
1713
1714             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1715         }
1716
1717         /// <summary>
1718         /// Search through this Window for a Layer with the given unique ID.
1719         /// </summary>
1720         /// <param name="id">The ID of the Layer to find.</param>
1721         /// <remarks>Hidden-API</remarks>
1722         /// <returns>A handle to the Layer if found, or an empty handle if not.</returns>
1723         [EditorBrowsable(EditorBrowsableState.Never)]
1724         public Layer FindLayerByID(uint id)
1725         {
1726             Layer defaultLayer = this.GetDefaultLayer();
1727             IntPtr cPtr = Interop.Actor.FindChildById(defaultLayer.SwigCPtr, id);
1728             Layer ret = this.GetInstanceSafely<Layer>(cPtr);
1729
1730             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1731             return ret;
1732         }
1733
1734         /// <summary>
1735         /// Get Native Window handle.
1736         /// <example>
1737         /// How to get Native Window handle
1738         /// <code>
1739         /// Window window = NUIApplication.GetDefaultWindow();
1740         /// var handle = window.NativeHandle;
1741         /// if(handle.IsInvalid == false)
1742         /// {
1743         ///     IntPtr nativeHandle = handle.DangerousGetHandle();
1744         ///     // do something with nativeHandle
1745         /// }
1746         /// </code>
1747         /// </example>
1748         /// </summary>
1749         /// <since_tizen> 9 </since_tizen>
1750         public SafeHandle NativeHandle
1751         {
1752             get
1753             {
1754                 return new NUI.SafeNativeWindowHandle(this);
1755             }
1756         }
1757     }
1758 }