[NUI] DragAndDrop : Add APIs for Window
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / DragAndDrop / DragAndDrop.cs
index 491875a..c60558e 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright(c) 2022 Samsung Electronics Co., Ltd.
+ * Copyright(c) 2023 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -24,25 +24,30 @@ using Tizen.NUI.BaseComponents;
 namespace Tizen.NUI
 {
     /// <summary>
-    /// DragAndDrop controls the drag objet and data.
+    /// DragAndDrop controls the drag object and data.
     /// </summary>
+    /// <since_tizen> 10 </since_tizen>
     [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliability", "CA2000: Dispose objects before losing scope", Justification = "It does not have ownership.")]
-    [EditorBrowsable(EditorBrowsableState.Never)]
     public class DragAndDrop : BaseHandle
     {
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public delegate void SourceEventHandler(SourceEventType sourceEventType);
+        public delegate void SourceEventHandler(DragSourceEventType sourceEventType);
         private delegate void InternalSourceEventHandler(int sourceEventType);
         public delegate void DragAndDropEventHandler(View targetView, DragEvent dragEvent);
+        public delegate void DragAndDropWindowEventHandler(Window targetWindow, DragEvent dragEvent);
         private delegate void InternalDragAndDropEventHandler(global::System.IntPtr dragEvent);
         private InternalSourceEventHandler sourceEventCb;
         private Dictionary<View, InternalDragAndDropEventHandler> targetEventDictionary = new Dictionary<View, InternalDragAndDropEventHandler>();
+        private Dictionary<Window, InternalDragAndDropEventHandler> targetWindowEventDictionary = new Dictionary<Window, InternalDragAndDropEventHandler>();
         private View mShadowView;
         private Window mDragWindow;
-        private int shadowWidth = 100;
-        private int shadowHeight = 100;
+        private int shadowWidth;
+        private int shadowHeight;
+
+        private bool initDrag = false;
+
+        private const int MinDragWindowWidth = 100;
+        private const int MinDragWindowHeight = 100;
 
-        [EditorBrowsable(EditorBrowsableState.Never)]
         private DragAndDrop() : this(Interop.DragAndDrop.New(), true)
         {
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
@@ -53,10 +58,26 @@ namespace Tizen.NUI
 
         }
 
+        private void ReleaseDragWindow()
+        {
+            if (mDragWindow)
+            {                        
+                if (mShadowView)
+                {
+                    //Application has Shadow View ownership, so DnD doesn't dispose Shadow View
+                    mDragWindow.Remove(mShadowView);
+                    mShadowView = null;
+                }
+            
+                mDragWindow.Dispose();
+                mDragWindow = null;                      
+            }         
+        }
+
         /// <summary>
         /// Gets the singleton instance of DragAndDrop.
         /// </summary>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public static DragAndDrop Instance { get; } = new DragAndDrop();
 
         /// <summary>
@@ -66,87 +87,98 @@ namespace Tizen.NUI
         /// <param name="shadowView">The shadow view for drag object</param>
         /// <param name="dragData">The data to send</param>
         /// <param name="callback">The source event callback</param>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public void StartDragAndDrop(View sourceView, View shadowView, DragData dragData, SourceEventHandler callback)
-        {
+        {            
+            if (initDrag)
+            {
+                 Tizen.Log.Fatal("NUI", "Start Drag And Drop Initializing...");
+                 return;
+            }
+            initDrag = true;
+
+            if (Window.IsSupportedMultiWindow() == false)
+            {
+                throw new NotSupportedException("This device does not support surfaceless_context. So Window cannot be created.");
+            }
+
             if (null == shadowView)
             {
                 throw new ArgumentNullException(nameof(shadowView));
             }
 
+            ReleaseDragWindow();
+
             shadowWidth = (int)shadowView.Size.Width;
             shadowHeight = (int)shadowView.Size.Height;
 
-            // Prevents shadowView size from being smaller than 100 pixel
-            if (shadowView.Size.Width < 100)
+            if (shadowView.Size.Width < MinDragWindowWidth)
             {
-                shadowWidth = 100;
+                shadowWidth = MinDragWindowWidth;
             }
 
-            if (shadowView.Size.Height < 100)
+            if (shadowView.Size.Height < MinDragWindowHeight)
             {
-                shadowHeight = 100;
+                shadowHeight = MinDragWindowHeight;
             }
 
-            if (null == mDragWindow)
+            mDragWindow = new Window("DragWindow", new Rectangle(-shadowWidth, -shadowHeight, shadowWidth, shadowHeight), true)
             {
-                mDragWindow = new Window("DragWindow", new Rectangle(-shadowWidth, -shadowHeight, shadowWidth, shadowHeight), true)
-                {
-                    BackgroundColor = Color.Transparent,
-                };
-            }
-
-            mDragWindow.SetWindowSize(new Size(shadowWidth, shadowHeight));
-            shadowView.SetOpacity(0.9f);
+                BackgroundColor = Color.Transparent,
+            };
 
-            if (mShadowView)
+            if (mDragWindow)
             {
-                mShadowView.Hide();
-                mDragWindow.Remove(mShadowView);
-                mShadowView.Dispose();
-            }
+                //Set Window Orientation Available
+                List<Window.WindowOrientation> list = new List<Window.WindowOrientation>();
+                list.Add(Window.WindowOrientation.Landscape);
+                list.Add(Window.WindowOrientation.LandscapeInverse);
+                list.Add(Window.WindowOrientation.NoOrientationPreference);
+                list.Add(Window.WindowOrientation.Portrait);
+                list.Add(Window.WindowOrientation.PortraitInverse);
+                mDragWindow.SetAvailableOrientations(list);
 
-            mShadowView = shadowView;
-            mDragWindow.Add(mShadowView);
+                //Initialize Drag Window Size based on Shadow View Size,
+                //Don't set Drag Window Posiiton, Window Server sets Position Internally
+                mDragWindow.SetWindowSize(new Size(shadowWidth, shadowHeight));
 
-            //Update Window Directly
-            mDragWindow.VisibiltyChangedSignalEmit(true);
-            mDragWindow.RenderOnce();
-
-            sourceEventCb = (sourceEventType) =>
-            {
-                if ((SourceEventType)sourceEventType == SourceEventType.Finish)
-                {
-                    if (mShadowView)
-                    {
-                        mShadowView.Hide();
-                        mDragWindow.Remove(mShadowView);
-                        mShadowView.Dispose();
+                //Make Position 0, 0 for Moving into Drag Window
+                shadowView.Position = new Position(0, 0);
+            
+                mShadowView = shadowView;
+                mDragWindow.Add(mShadowView);
+           
+                sourceEventCb = (sourceEventType) =>
+                {   
+                    if ((DragSourceEventType)sourceEventType != DragSourceEventType.Start)
+                    {     
+                        Tizen.Log.Fatal("NUI", "DnD Source Event is Called");  
+                        ReleaseDragWindow();                
                     }
 
-                    //Update Window Directly
-                    mDragWindow.VisibiltyChangedSignalEmit(true);
-                    mDragWindow.RenderOnce();
-                }
+                    callback((DragSourceEventType)sourceEventType);
+                };
 
-                callback((SourceEventType)sourceEventType);
-            };
+                //Show Drag Window before StartDragAndDrop
+                mDragWindow.Show();
 
-            if (!Interop.DragAndDrop.StartDragAndDrop(SwigCPtr, View.getCPtr(sourceView), Window.getCPtr(mDragWindow), dragData.MimeType, dragData.Data,
-                                                      new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(sourceEventCb))))
-            {
-                throw new InvalidOperationException("Fail to StartDragAndDrop");
-            }
+                if (!Interop.DragAndDrop.StartDragAndDrop(SwigCPtr, View.getCPtr(sourceView), Window.getCPtr(mDragWindow), dragData.MimeType, dragData.Data,
+                                                        new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(sourceEventCb))))
+                {
+                    throw new InvalidOperationException("Fail to StartDragAndDrop");
+                }
 
-            mDragWindow.Show();
+            }         
+            
+            initDrag = false;
         }
 
         /// <summary>
         /// Adds listener for drop targets
         /// </summary>
         /// <param name="targetView">The target view</param>
-        /// <param name="callback">The callback function to get drag event</param>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <param name="callback">The callback function to get drag event when the drag source enters, moves, leaves and drops on the drop target</param>
+        /// <since_tizen> 10 </since_tizen>
         public void AddListener(View targetView, DragAndDropEventHandler callback)
         {
             InternalDragAndDropEventHandler cb = (dragEvent) =>
@@ -185,7 +217,7 @@ namespace Tizen.NUI
             if (!Interop.DragAndDrop.AddListener(SwigCPtr, View.getCPtr(targetView),
                                                  new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(cb))))
             {
-                 throw new InvalidOperationException("Fail to AddListener");
+                 throw new InvalidOperationException("Fail to AddListener for View");
             }
         }
 
@@ -194,12 +226,12 @@ namespace Tizen.NUI
         /// </summary>
         /// <param name="targetView">The target view</param>
         /// <param name="callback">The callback function to remove</param>
-        [EditorBrowsable(EditorBrowsableState.Never)]
+        /// <since_tizen> 10 </since_tizen>
         public void RemoveListener(View targetView, DragAndDropEventHandler callback)
         {
             if (!targetEventDictionary.ContainsKey(targetView))
             {
-                 throw new InvalidOperationException("Fail to RemoveListener");
+                 throw new InvalidOperationException("Fail to RemoveListener for View");
             }
 
             InternalDragAndDropEventHandler cb = targetEventDictionary[targetView];
@@ -207,7 +239,77 @@ namespace Tizen.NUI
             if (!Interop.DragAndDrop.RemoveListener(SwigCPtr, View.getCPtr(targetView),
                                                     new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(cb))))
             {
-                 throw new InvalidOperationException("Fail to RemoveListener");
+                 throw new InvalidOperationException("Fail to RemoveListener for View");
+            }
+        }
+
+        /// <summary>
+        /// Adds listener for drop targets
+        /// </summary>
+        /// <param name="targetWindow">The target Window</param>
+        /// <param name="callback">The callback function to get drag event when the drag source enters, moves, leaves and drops on the drop target</param>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        public void AddListener(Window targetWindow, DragAndDropWindowEventHandler callback)
+        {
+            InternalDragAndDropEventHandler cb = (dragEvent) =>
+            {
+                DragType type = (DragType)Interop.DragAndDrop.GetAction(dragEvent);
+                DragEvent ev = new DragEvent();
+                global::System.IntPtr cPtr = Interop.DragAndDrop.GetPosition(dragEvent);
+                ev.Position = (cPtr == global::System.IntPtr.Zero) ? null : new Position(cPtr, false);
+
+                if (type == DragType.Enter)
+                {
+                    ev.DragType = type;
+                    callback(targetWindow, ev);
+                }
+                else if (type == DragType.Leave)
+                {
+                    ev.DragType = type;
+                    callback(targetWindow, ev);
+                }
+                else if (type == DragType.Move)
+                {
+                    ev.DragType = type;
+                    callback(targetWindow, ev);
+                }
+                else if (type == DragType.Drop)
+                {
+                    ev.DragType = type;
+                    ev.MimeType = Interop.DragAndDrop.GetMimeType(dragEvent);
+                    ev.Data = Interop.DragAndDrop.GetData(dragEvent);
+                    callback(targetWindow, ev);
+                }
+            };
+
+            targetWindowEventDictionary.Add(targetWindow, cb);
+
+            if (!Interop.DragAndDrop.WindowAddListener(SwigCPtr, Window.getCPtr(targetWindow),
+                                                       new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(cb))))
+            {
+                 throw new InvalidOperationException("Fail to AddListener for Window");
+            }
+        }
+
+        /// <summary>
+        /// Removes listener for drop targets
+        /// </summary>
+        /// <param name="targetWindow">The target window</param>
+        /// <param name="callback">The callback function to remove</param>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        public void RemoveListener(Window targetWindow, DragAndDropWindowEventHandler callback)
+        {
+            if (!targetWindowEventDictionary.ContainsKey(targetWindow))
+            {
+                 throw new InvalidOperationException("Fail to RemoveListener for Window");
+            }
+
+            InternalDragAndDropEventHandler cb = targetWindowEventDictionary[targetWindow];
+            targetWindowEventDictionary.Remove(targetWindow);
+            if (!Interop.DragAndDrop.WindowRemoveListener(SwigCPtr, Window.getCPtr(targetWindow),
+                                                          new global::System.Runtime.InteropServices.HandleRef(this, Marshal.GetFunctionPointerForDelegate<Delegate>(cb))))
+            {
+                 throw new InvalidOperationException("Fail to RemoveListener for Window");
             }
         }
     }