Release 4.0.0-preview1-00235
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / LongPressGesture.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16
17 namespace Tizen.NUI
18 {
19
20     /// <summary>
21     /// A long press gesture is emitted when the user holds the screen with the stated number of fingers.<br>
22     /// A long press gesture finishes when all touches have been released.<br>
23     /// </summary>
24     public class LongPressGesture : Gesture
25     {
26         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
27
28         internal LongPressGesture(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.LongPressGesture_SWIGUpcast(cPtr), cMemoryOwn)
29         {
30             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
31         }
32
33         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(LongPressGesture obj)
34         {
35             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
36         }
37
38         protected override void Dispose(DisposeTypes type)
39         {
40             if(disposed)
41             {
42                 return;
43             }
44
45             if(type == DisposeTypes.Explicit)
46             {
47                 //Called by User
48                 //Release your own managed resources here.
49                 //You should release all of your own disposable objects here.
50             }
51
52             //Release your own unmanaged resources here.
53             //You should not access any managed member here except static instance.
54             //because the execution order of Finalizes is non-deterministic.
55
56             if (swigCPtr.Handle != global::System.IntPtr.Zero)
57             {
58                 if (swigCMemOwn)
59                 {
60                     swigCMemOwn = false;
61                     NDalicPINVOKE.delete_LongPressGesture(swigCPtr);
62                 }
63                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
64             }
65
66             base.Dispose(type);
67         }
68
69
70         internal static LongPressGesture GetLongPressGestureFromPtr(global::System.IntPtr cPtr)
71         {
72             LongPressGesture ret = new LongPressGesture(cPtr, false);
73             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
74             return ret;
75         }
76
77         /// <summary>
78         /// The number of touch points in this long press gesture, i.e., the number of fingers the user had
79         /// on the screen to generate the long press gesture.<br>
80         /// </summary>
81         public uint NumberOfTouches
82         {
83             get
84             {
85                 return numberOfTouches;
86             }
87         }
88
89         /// <summary>
90         /// This is the point, in screen coordinates, where the long press occurred.<br>
91         /// If a multi-touch long press, then this is the centroid of all the touch points.<br>
92         /// </summary>
93         public Vector2 ScreenPoint
94         {
95             get
96             {
97                 return screenPoint;
98             }
99         }
100
101         /// <summary>
102         /// This is the point, in local actor coordinates, where the long press occurred.<br>
103         /// If a multi-touch long press, then this is the centroid of all the touch points.<br>
104         /// </summary>
105         public Vector2 LocalPoint
106         {
107             get
108             {
109                 return localPoint;
110             }
111         }
112
113         /// <summary>
114         /// The constructor.
115         /// </summary>
116         /// <param name="state">The state of the gesture</param>
117         public LongPressGesture(Gesture.StateType state) : this(NDalicPINVOKE.new_LongPressGesture__SWIG_0((int)state), true)
118         {
119             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
120         }
121
122
123         private uint numberOfTouches
124         {
125             set
126             {
127                 NDalicPINVOKE.LongPressGesture_numberOfTouches_set(swigCPtr, value);
128                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
129             }
130             get
131             {
132                 uint ret = NDalicPINVOKE.LongPressGesture_numberOfTouches_get(swigCPtr);
133                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
134                 return ret;
135             }
136         }
137
138         private Vector2 screenPoint
139         {
140             set
141             {
142                 NDalicPINVOKE.LongPressGesture_screenPoint_set(swigCPtr, Vector2.getCPtr(value));
143                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
144             }
145             get
146             {
147                 global::System.IntPtr cPtr = NDalicPINVOKE.LongPressGesture_screenPoint_get(swigCPtr);
148                 Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false);
149                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
150                 return ret;
151             }
152         }
153
154         private Vector2 localPoint
155         {
156             set
157             {
158                 NDalicPINVOKE.LongPressGesture_localPoint_set(swigCPtr, Vector2.getCPtr(value));
159                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
160             }
161             get
162             {
163                 global::System.IntPtr cPtr = NDalicPINVOKE.LongPressGesture_localPoint_get(swigCPtr);
164                 Vector2 ret = (cPtr == global::System.IntPtr.Zero) ? null : new Vector2(cPtr, false);
165                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
166                 return ret;
167             }
168         }
169
170     }
171
172 }