46 lines
2.4 KiB
C
46 lines
2.4 KiB
C
|
|
|
|
/* definition of constants for custom resources ID*/
|
|
/* and for Event Editor popupmenu internal ID*/
|
|
|
|
#define C_CustomIDUserStart 4500
|
|
|
|
#define C_CustomIDStart (C_CustomIDUserStart) /* 4500*/
|
|
#define C_CustomIDEnd (C_CustomIDStart+500) /* 5000*/
|
|
|
|
#define C_EditMenuIDStart (C_CustomIDEnd+1) /* 5001*/
|
|
/* !!!! We must change the general dialog bar buttons ID if*/
|
|
/* we change that two ids !!!!*/
|
|
#define C_EditMenuIDUndo (C_EditMenuIDStart+0) /* 5001 (first entry of EditMenu)*/
|
|
#define C_EditMenuIDRedo (C_EditMenuIDStart+1) /* 5002 (second entry of EditMenu)*/
|
|
#define C_EditMenuIDEnd (C_EditMenuIDStart+50) /* 5051*/
|
|
|
|
#define C_EDTPopUpMenuIDStart (C_EditMenuIDEnd+1) /* 5052*/
|
|
#define C_EDTPopUpMenuIDEnd (C_EDTPopUpMenuIDStart+50) /* 5102*/
|
|
|
|
#define C_EditorMenuIDStart (C_EDTPopUpMenuIDEnd+1) /* 5103*/
|
|
#define C_EditorMenuIDEnd (C_EditorMenuIDStart+50) /* 5153*/
|
|
#define C_ToolMenuIDStart (C_EditorMenuIDEnd+1) /* 5154*/
|
|
#define C_ToolMenuIDEnd (C_ToolMenuIDStart+50) /* 5204*/
|
|
/*ANNECY Shaitan NewInterface 24/03/98 {*/
|
|
#define C_LoadMenuIDStart (C_ToolMenuIDEnd+1) /* 5255*/
|
|
#define C_LoadMenuIDEnd (C_LoadMenuIDStart+50) /* 5305*/
|
|
#define C_3DViewMenuIDStart (C_LoadMenuIDEnd+1) /* 5306*/
|
|
#define C_3DViewMenuIDEnd (C_3DViewMenuIDStart+50) /* 5356*/
|
|
#define C_SpecificMenuIDStart (C_3DViewMenuIDEnd+1) /* 5357*/
|
|
#define C_SpecificMenuIDEnd (C_SpecificMenuIDStart+50) /* 5407*/
|
|
/*ENDANNECY Shaitan NewInterface }*/
|
|
#define C_PrefMenuIDStart (C_SpecificMenuIDEnd+1) /* 5408*/
|
|
#define C_PrefMenuIDEnd (C_PrefMenuIDStart+50) /* 5458*/
|
|
|
|
/*Mircea Dunka - DialogBar buttons for editors*/
|
|
#define C_EditorButtonIDStart (C_PrefMenuIDEnd+1) /* 5459*/
|
|
#define C_EditorButtonIDEnd (C_EditorButtonIDStart+50) /* 5509*/
|
|
|
|
#define C_HelpMenuIDStart (C_EditorButtonIDEnd+1) /* 5560*/
|
|
#define C_HelpMenuIDEnd (C_HelpMenuIDStart+50) /* 5610*/
|
|
|
|
/* update the next value when add a new group*/
|
|
#define C_CustomIDUserEnd (C_HelpMenuIDEnd+1) /* 5611*/
|
|
|