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