markus / MarkupToPDF / Controls / Common / MouseMode.cs @ a9a82876
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
using System.Net; |
7 |
using System.Windows; |
8 |
using System.Windows.Controls; |
9 |
using System.Windows.Documents; |
10 |
using System.Windows.Ink; |
11 |
using System.Windows.Input; |
12 |
using System.Windows.Media; |
13 |
using System.Windows.Media.Animation; |
14 |
using System.Windows.Shapes; |
15 |
|
16 |
namespace MarkupToPDF.Controls.Common |
17 |
{ |
18 |
public enum MouseMode |
19 |
{ |
20 |
/// <summary> |
21 |
/// Not in any special mode. |
22 |
/// </summary> |
23 |
None, |
24 |
|
25 |
/// <summary> |
26 |
/// The user is left-mouse-button-dragging to pan the viewport. |
27 |
/// </summary> |
28 |
Panning, |
29 |
|
30 |
/// <summary> |
31 |
/// The user is holding down shift and left-clicking or right-clicking to zoom in or out. |
32 |
/// </summary> |
33 |
Zooming, |
34 |
|
35 |
/// <summary> |
36 |
/// The user is drawing Comment |
37 |
/// </summary> |
38 |
Drawing, |
39 |
|
40 |
/// <summary> |
41 |
/// |
42 |
/// </summary> |
43 |
Selecting |
44 |
} |
45 |
} |