[dali_1.2.40] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / gestures / long-press-gesture.i
1 %csmethodmodifiers Dali::LongPressGesture::numberOfTouches "private";
2 %csmethodmodifiers Dali::LongPressGesture::screenPoint "private";
3 %csmethodmodifiers Dali::LongPressGesture::localPoint "private";
4
5 %typemap(cscode) Dali::LongPressGesture %{
6   public static LongPressGesture GetLongPressGestureFromPtr(global::System.IntPtr cPtr) {
7     LongPressGesture ret = new LongPressGesture(cPtr, false);
8     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
9     return ret;
10   }
11
12   public uint NumberOfTouches
13   {
14     get
15     {
16       return numberOfTouches;
17     }
18   }
19
20   public Vector2 ScreenPoint
21   {
22     get
23     {
24       return screenPoint;
25     }
26   }
27
28   public Vector2 LocalPoint
29   {
30     get
31     {
32       return localPoint;
33     }
34   }
35 %}