Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/WpfTestSvgSample/MouseHandlingMode.cs @ 14146

Last change on this file since 14146 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 756 bytes
Line 
1using System;
2
3namespace 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.