summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPinchGestureController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IPinchGestureController.cs')
-rw-r--r--Xamarin.Forms.Core/IPinchGestureController.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IPinchGestureController.cs b/Xamarin.Forms.Core/IPinchGestureController.cs
new file mode 100644
index 00000000..9848fa74
--- /dev/null
+++ b/Xamarin.Forms.Core/IPinchGestureController.cs
@@ -0,0 +1,15 @@
+namespace Xamarin.Forms
+{
+ internal interface IPinchGestureController
+ {
+ bool IsPinching { get; set; }
+
+ void SendPinch(Element sender, double scale, Point currentScalePoint);
+
+ void SendPinchCanceled(Element sender);
+
+ void SendPinchEnded(Element sender);
+
+ void SendPinchStarted(Element sender, Point intialScalePoint);
+ }
+} \ No newline at end of file