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