1 | // Aseprite |
2 | // Copyright (C) 2017 David Capello |
3 | // |
4 | // This program is distributed under the terms of |
5 | // the End-User License Agreement for Aseprite. |
6 | |
7 | #ifndef APP_UI_KEY_CONTEXT_H_INCLUDED |
8 | #define APP_UI_KEY_CONTEXT_H_INCLUDED |
9 | #pragma once |
10 | |
11 | namespace app { |
12 | |
13 | enum class KeyContext { |
14 | Any, |
15 | Normal, |
16 | SelectionTool, |
17 | TranslatingSelection, |
18 | ScalingSelection, |
19 | RotatingSelection, |
20 | MoveTool, |
21 | FreehandTool, |
22 | ShapeTool, |
23 | MouseWheel, |
24 | }; |
25 | |
26 | } // namespace app |
27 | |
28 | #endif |
29 | |