comparison Applications/Samples/StoneSampleCommands.yml @ 527:b1377625e4ba bgo-commands-codegen

Removed ICommand and friends + fixed warnings + added missing header files in solution (in CMakeLists.txt file)
author Benjamin Golinvaux <bgo@osimis.io>
date Sun, 17 Mar 2019 20:14:20 +0100
parents
children
comparison
equal deleted inserted replaced
522:700aa66f2f29 527:b1377625e4ba
1 #
2 # 1 2 3 4 5 6 7 8
3 # 345678901234567890123456789012345678901234567890123456789012345678901234567890
4 #
5 rootName: StoneSampleCommands
6
7 # +---------------------------------+
8 # | Messages from TypeScript to C++ |
9 # +---------------------------------+
10
11 enum Tool:
12 - LineMeasure
13 - CircleMeasure
14 - Crop
15 - Windowing
16 - Zoom
17 - Pan
18 - Move
19 - Rotate
20 - Resize
21 - Mask
22
23 struct SelectTool:
24 __handler: cpp
25 tool: Tool
26
27 enum ActionType:
28 - UndoCrop
29 - Rotate
30 - Invert
31
32 struct Action:
33 __handler: cpp
34 type: ActionType
35