Tulip  6.0.0
Large graphs analysis and drawing
StandardInteractorPriority.h
1 /**
2  *
3  * This file is part of Tulip (https://tulip.labri.fr)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 #ifndef INTERACTORPRIORITY_H_
20 #define INTERACTORPRIORITY_H_
21 
22 namespace tlp {
23 
24 // List of standard interactors priorities
25 // just insert a new one at the right place
26 class StandardInteractorPriority {
27 public:
28  enum priority {
29  None = 0,
30  ViewInteractor1,
31  ViewInteractor2,
32  ViewInteractor3,
33  ViewInteractor4,
34  ViewInteractor5,
35  ViewInteractor6,
36  ViewInteractor7,
37  MagnifyingGlass,
38  FishEye,
39  NeighborhoodHighlighter,
40  ZoomOnRectangle,
41  DeleteElement,
42  EditEdgeBends,
43  AddNodesOrEdges,
44  PathSelection,
45  FreeHandSelection,
46  RectangleSelectionModifier,
47  RectangleSelection,
48  GetInformation,
49  Navigation
50  };
51 };
52 } // namespace tlp
53 
54 #endif