Revert "[NUI] Add CAPTURE_ALL_TOUCH_AFTER_START property (#1852)" (#1868)
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Wed, 29 Jul 2020 02:17:20 +0000 (11:17 +0900)
committerGitHub <noreply@github.com>
Wed, 29 Jul 2020 02:17:20 +0000 (11:17 +0900)
This reverts commit 44638c8717f71c947a43fcbf273f728b0a820017.

src/Tizen.NUI/src/internal/Interop/Interop.ActorProperty.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs
src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs

index ec56de3..ca9b1a7 100755 (executable)
@@ -185,9 +185,6 @@ namespace Tizen.NUI
             [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_Actor_Property_CLIPPING_MODE_get")]
             public static extern int Actor_Property_CLIPPING_MODE_get();
 
-            [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Actor_Property_CAPTURE_ALL_TOUCH_AFTER_START_get")]
-            public static extern int ActorPropertyCaptureAllTouchAfterStartGet();
-
             [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_new_Actor_Property")]
             public static extern global::System.IntPtr new_Actor_Property();
 
index 6f08f7b..3f80c68 100755 (executable)
@@ -2291,26 +2291,6 @@ namespace Tizen.NUI.BaseComponents
             }
         }
 
-         /// <summary>
-        /// Whether the actor grab all touches even if touch leaves its boundary.
-        /// </summary>
-        /// <returns>true, if it grab all touch after start</returns>
-        [EditorBrowsable(EditorBrowsableState.Never)]
-        public bool GrabTouchAfterLeave
-        {
-            get
-            {
-                bool temp = false;
-                GetProperty(View.Property.CaptureAllTouchAfterStart).Get(out temp);
-                return temp;
-            }
-            set
-            {
-                SetProperty(View.Property.CaptureAllTouchAfterStart, new Tizen.NUI.PropertyValue(value));
-                NotifyPropertyChanged();
-            }
-        }
-
         /// <summary>
         /// Get Style, it is abstract function and must be override.
         /// </summary>
index bdd95d9..5360849 100755 (executable)
@@ -206,7 +206,6 @@ namespace Tizen.NUI.BaseComponents
             internal static readonly int MARGIN = Interop.ViewProperty.View_Property_MARGIN_get();
             internal static readonly int PADDING = Interop.ViewProperty.View_Property_PADDING_get();
             internal static readonly int SHADOW = Interop.ViewProperty.View_Property_SHADOW_get();
-            internal static readonly int CaptureAllTouchAfterStart = Interop.ActorProperty.ActorPropertyCaptureAllTouchAfterStartGet();
         }
     }
 }