-
-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathMultiGestureHandling.cs
More file actions
26 lines (23 loc) · 840 Bytes
/
MultiGestureHandling.cs
File metadata and controls
26 lines (23 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Silk.NET.Input
{
/// <summary>
/// Controls the behavior of how multiple two-finger gestures are handled.
/// </summary>
public enum MultiGestureHandling
{
/// <summary>
/// Only recognize the zoom gesture if both the zoom and the rotate gesture are performed.
/// </summary>
PrioritizeZoomGesture,
/// <summary>
/// Only recognize the rotate gesture if both the zoom and the rotate gesture are performed.
/// </summary>
PrioritizeRotateGesture,
/// <summary>
/// Recognize both gestures if they are performed (zoom and rotate).
/// </summary>
RecognizeBothGestures
}
}