1 #pragma once
2 
3 #ifndef VIEWCOMMANDIDS_H
4 #define VIEWCOMMANDIDS_H
5 
6 #define V_ViewReset "T_ViewReset"
7 #define V_ZoomIn "T_Zoomin"  // Can't change prefix due to retrocompatibility
8 #define V_ZoomOut "T_Zoomout"
9 #define V_ZoomReset "T_ZoomReset"
10 #define V_ZoomFit "T_ZoomFit"
11 #define V_ShowHideFullScreen "T_ShowHideFullScreen"
12 #define V_ActualPixelSize "T_ActualPixelSize"
13 #define V_FlipX "T_FlipX"
14 #define V_FlipY "T_FlipY"
15 #define V_RotateReset "T_RotateReset"
16 #define V_PositionReset "T_PositionReset"
17 
18 // folloing command ids are for command bar
19 #define VB_ViewReset "VB_ViewReset"
20 #define VB_ZoomFit "VB_ZoomFit"
21 #define VB_ZoomReset "VB_ZoomReset"
22 #define VB_RotateReset "VB_RotateReset"
23 #define VB_PositionReset "VB_PositionReset"
24 #define VB_ActualPixelSize "VB_ActualPixelSize"
25 #define VB_FlipX "VB_FlipX"
26 #define VB_FlipY "VB_FlipY"
27 
28 #endif  // VIEWCOMMANDIDS_H
29