X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/9ef3c1cab755348f63c462bbd350af3c3c6ecfbe..55fb297890fbd83482db2d2516a9392befb3eb21:/mac/macresid.h diff --git a/mac/macresid.h b/mac/macresid.h index 1cfc5ccf..654938c1 100644 --- a/mac/macresid.h +++ b/mac/macresid.h @@ -1,4 +1,4 @@ -/* $Id: macresid.h,v 1.8 2003/02/02 15:59:00 ben Exp $ */ +/* $Id$ */ /* * macresid.h -- Mac resource IDs @@ -19,6 +19,7 @@ #define mApple 128 #define mFile 129 #define mEdit 130 +#define mWindow 131 /* Menu Items */ /* Apple menu */ @@ -26,11 +27,12 @@ /* File menu */ #define iNew 1 #define iOpen 2 -#define iClose 4 -#define iSave 5 -#define iSaveAs 6 -#define iDuplicate 7 -#define iQuit 9 +#define iChange 4 +#define iClose 6 +#define iSave 7 +#define iSaveAs 8 +#define iDuplicate 9 +#define iQuit 11 /* Edit menu */ #define iUndo 1 #define iCut 3 @@ -38,6 +40,8 @@ #define iPaste 5 #define iClear 6 #define iSelectAll 7 +/* Window menu */ +#define iShowEventLog 1 /* Window types (and resource IDs) */ #define wNone 0 /* Dummy value for no window */ @@ -50,6 +54,26 @@ #define wLicence 131 #define wSettings 132 #define wiSettingsOpen 1 +#define wEventLog 133 +#define wQuestion 134 +#define wAbsent 135 +#define wWrong 136 /* Controls */ #define cVScroll 128 + +/* ldes for list box controls */ +#define ldes_Default 128 + +/* xDEFs */ +#define CDEF_EditBox 129 +#define SYS7_EDITBOX_VARIANT 0 +#define SYS7_TEXT_VARIANT 1 +#define SYS7_EDITBOX_PROC ((CDEF_EditBox << 4) + SYS7_EDITBOX_VARIANT) +#define SYS7_TEXT_PROC ((CDEF_EditBox << 4) + SYS7_TEXT_VARIANT) +#define CDEF_Default 130 +#define SYS7_DEFAULT_PROC (CDEF_Default << 4) +#define CDEF_ListBox 131 +#define SYS7_LISTBOX_PROC (CDEF_ListBox << 4) +#define CDEF_GroupBox 132 +#define SYS7_GROUPBOX_PROC (CDEF_GroupBox << 4)