2001-03-01 18:28:20 +01:00
|
|
|
/********************/
|
|
|
|
/*** Cmd Messages ***/
|
|
|
|
/********************/
|
|
|
|
|
|
|
|
#ifndef __COMMAND_MESSAGES__
|
|
|
|
#define __COMMAND_MESSAGES__
|
|
|
|
|
|
|
|
enum CmdMsg
|
|
|
|
{
|
|
|
|
CmdMsg_None=0,
|
|
|
|
// Core
|
2001-03-22 21:49:58 +01:00
|
|
|
CmdMsg_ToggleSubView, // 1
|
|
|
|
CmdMsg_ToggleGrid, // 2
|
|
|
|
CmdMsg_Toggle2d, // 3
|
|
|
|
CmdMsg_ZoomIn, // 4
|
|
|
|
CmdMsg_ZoomOut, // 5
|
|
|
|
CmdMsg_ResetView, // 6
|
|
|
|
CmdMsg_SetLayer, // 7
|
|
|
|
CmdMsg_AddLayer, // 8
|
|
|
|
CmdMsg_DeleteLayer, // 9
|
2001-03-01 18:28:20 +01:00
|
|
|
|
|
|
|
// Generic
|
2001-03-22 21:49:58 +01:00
|
|
|
CmdMsg_SetMode, // 10
|
|
|
|
CmdMsg_Copy, // 11
|
|
|
|
CmdMsg_Paste, // 12
|
|
|
|
CmdMsg_SubViewLoad, // 13
|
|
|
|
CmdMsg_SubViewDelete, // 14
|
|
|
|
CmdMsg_SubViewUpdate, // 15
|
|
|
|
CmdMsg_SubViewSet, // 16
|
2001-03-29 19:59:01 +02:00
|
|
|
|
2001-05-09 23:56:48 +02:00
|
|
|
// Elem
|
2001-03-22 21:49:58 +01:00
|
|
|
CmdMsg_MirrorX, // 17
|
|
|
|
CmdMsg_MirrorY, // 18
|
2001-05-09 23:56:48 +02:00
|
|
|
CmdMsg_Rotate, // 19
|
|
|
|
CmdMsg_SetColFlag, // 20
|
|
|
|
CmdMsg_ActiveBrushLeft, // 21
|
|
|
|
CmdMsg_ActiveBrushRight, // 22
|
2001-03-29 19:59:01 +02:00
|
|
|
|
|
|
|
// Thing
|
|
|
|
CmdMsg_ThingListDelete, // 23
|
2001-04-07 23:05:33 +02:00
|
|
|
CmdMsg_ThingListGoto, // 24
|
|
|
|
CmdMsg_ThingListSelect, // 25
|
|
|
|
CmdMsg_ThingLevelSelect, // 26
|
|
|
|
CmdMsg_ThingPosSelect, // 27
|
|
|
|
CmdMsg_ThingPosUp, // 28
|
|
|
|
CmdMsg_ThingPosDown, // 29
|
|
|
|
CmdMsg_ThingPosDelete, // 30
|
2001-04-30 23:49:54 +02:00
|
|
|
// Shade
|
|
|
|
CmdMsg_ShadeGfxNew, // 31
|
|
|
|
CmdMsg_ShadeGfxSelect, // 32
|
|
|
|
CmdMsg_ShadeGfxGoto, // 33
|
|
|
|
CmdMsg_ShadeGfxDelete, // 34
|
2001-07-10 18:56:47 +02:00
|
|
|
// Misc
|
|
|
|
CmdMsg_Report, // 35
|
2001-04-30 23:49:54 +02:00
|
|
|
|
2001-03-01 18:28:20 +01:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
/*****************************************************************************/
|