1 | // Aseprite |
2 | // Copyright (C) 2018 Igara Studio S.A. |
3 | // Copyright (C) 2016-2018 David Capello |
4 | // |
5 | // This program is distributed under the terms of |
6 | // the End-User License Agreement for Aseprite. |
7 | |
8 | #ifndef APP_TOOLS_TOOL_LOOP_MODIFIERS_H_INCLUDED |
9 | #define APP_TOOLS_TOOL_LOOP_MODIFIERS_H_INCLUDED |
10 | #pragma once |
11 | |
12 | namespace app { |
13 | namespace tools { |
14 | |
15 | enum class ToolLoopModifiers { |
16 | kNone = 0x00000000, |
17 | kReplaceSelection = 0x00000001, |
18 | kAddSelection = 0x00000002, |
19 | kSubtractSelection = 0x00000004, |
20 | kIntersectSelection = 0x00000008, |
21 | kMoveOrigin = 0x00000010, |
22 | kSquareAspect = 0x00000020, |
23 | kFromCenter = 0x00000040, |
24 | kRotateShape = 0x00000080, |
25 | }; |
26 | |
27 | } // namespace tools |
28 | } // namespace app |
29 | |
30 | #endif |
31 | |