Last change
on this file since 13757 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
756 bytes
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 |
|
---|
| 3 | namespace WpfTestSvgSample
|
---|
| 4 | {
|
---|
| 5 | /// <summary>
|
---|
| 6 | /// Defines the current state of the mouse handling logic.
|
---|
| 7 | /// </summary>
|
---|
| 8 | public enum MouseHandlingMode
|
---|
| 9 | {
|
---|
| 10 | /// <summary>
|
---|
| 11 | /// Not in any special mode.
|
---|
| 12 | /// </summary>
|
---|
| 13 | None,
|
---|
| 14 |
|
---|
| 15 | /// <summary>
|
---|
| 16 | /// The user is left-dragging rectangles with the mouse.
|
---|
| 17 | /// </summary>
|
---|
| 18 | DraggingRectangles,
|
---|
| 19 |
|
---|
| 20 | /// <summary>
|
---|
| 21 | /// The user is left-mouse-button-dragging to pan the viewport.
|
---|
| 22 | /// </summary>
|
---|
| 23 | Panning,
|
---|
| 24 |
|
---|
| 25 | /// <summary>
|
---|
| 26 | /// The user is holding down shift and left-clicking or right-clicking to zoom in or out.
|
---|
| 27 | /// </summary>
|
---|
| 28 | Zooming,
|
---|
| 29 | }
|
---|
| 30 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.