From 034889141391985f0ad1727ae6e32719d9c5a360 Mon Sep 17 00:00:00 2001 From: JoogabYun <40262755+JoogabYun@users.noreply.github.com> Date: Tue, 3 Nov 2020 15:34:37 +0900 Subject: [PATCH] Revert "[NUI] Add TouchArea property. (#2105)" (#2166) This reverts commit 4a36f8f08fe9d580b35d740b8462a9a75fabd401. --- .../src/internal/Interop/Interop.ActorProperty.cs | 3 --- src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs | 1 - src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs | 20 -------------------- 3 files changed, 24 deletions(-) diff --git a/src/Tizen.NUI/src/internal/Interop/Interop.ActorProperty.cs b/src/Tizen.NUI/src/internal/Interop/Interop.ActorProperty.cs index 2b0c9b4..ec56de3 100755 --- a/src/Tizen.NUI/src/internal/Interop/Interop.ActorProperty.cs +++ b/src/Tizen.NUI/src/internal/Interop/Interop.ActorProperty.cs @@ -188,9 +188,6 @@ namespace Tizen.NUI [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_Actor_Property_TOUCH_AREA_get")] - public static extern int ActorPropertyTouchAreaGet(); - [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_new_Actor_Property")] public static extern global::System.IntPtr new_Actor_Property(); diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs index cfc8534..afdc48b 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewEnum.cs @@ -208,7 +208,6 @@ namespace Tizen.NUI.BaseComponents 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(); - internal static readonly int TouchArea = Interop.ActorProperty.ActorPropertyTouchAreaGet(); } } } diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs index 626c7f8..1bcf86e 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewEvent.cs @@ -1278,25 +1278,5 @@ namespace Tizen.NUI.BaseComponents } } - /// - /// TouchArea can reset the view's touchable area.
- /// If you set the TouchArea on an view, when you touch the view, the touch area is used rather than the size of the view. - ///
- [EditorBrowsable(EditorBrowsableState.Never)] - public Size2D TouchArea - { - get - { - Size2D temp = new Size2D(0, 0); - GetProperty(View.Property.TouchArea).Get(temp); - return new Size2D(temp.Width, temp.Height); - } - set - { - SetProperty(View.Property.TouchArea, new Tizen.NUI.PropertyValue(value)); - NotifyPropertyChanged(); - } - } - } } -- 2.7.4