summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/IGestureController.cs
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-02-22 19:49:54 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:30 +0900
commita6a7459ebdac9a907928675b2a80ec33202fba5a (patch)
tree377572ffcc2a754dd38aa730f75569c0c0509cab /Xamarin.Forms.Platform.Tizen/IGestureController.cs
parent884625d1be0e04f16bad7c8b776a1d1066cf31f2 (diff)
downloadxamarin-forms-a6a7459ebdac9a907928675b2a80ec33202fba5a.tar.gz
xamarin-forms-a6a7459ebdac9a907928675b2a80ec33202fba5a.tar.bz2
xamarin-forms-a6a7459ebdac9a907928675b2a80ec33202fba5a.zip
Refactoring GestureHandler for extension
- Design : http://suprem.sec.samsung.net/confluence/display/SPTDTLC/Refactoring+GestureHandler Change-Id: I1cbcf830b4b1076c227b0ea641508198c7cb2102 Signed-off-by: SungHyun Min <shyun.min@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/IGestureController.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/IGestureController.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/IGestureController.cs b/Xamarin.Forms.Platform.Tizen/IGestureController.cs
new file mode 100644
index 00000000..e29975fd
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/IGestureController.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ public interface IGestureController
+ {
+ void SendStarted(View sender, object data);
+
+ void SendMoved(View sender, object data);
+
+ void SendCompleted(View sender, object data);
+
+ void SendCanceled(View sender, object data);
+ }
+} \ No newline at end of file