summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPinchGestureController.cs
blob: 9848fa74533b70c175f9ef72b127f3bceb59e230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
	}
}