mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +00:00
06a48a0c06
- Change the creator of files we don't want the user to open to 'pTTI' (for "PuTTY internal"), and give them application-missing strings. - Provide missing-application names for saved sessions. - Provide a ResEdit 'TMPL' resource for integers in saved sessions. - Provide an icon for saved session stationery pads (maybe "Default Settings" should be one of these by default). No code to handle this yet. [originally from svn r2640]
55 lines
1022 B
C
55 lines
1022 B
C
/* $Id: macresid.h,v 1.4 2003/01/18 16:10:21 ben Exp $ */
|
|
|
|
/*
|
|
* macresid.h -- Mac resource IDs
|
|
*
|
|
* This file is shared by C and Rez source files
|
|
*/
|
|
|
|
/* TMPL for saved sessions */
|
|
#define TMPL_Int 128
|
|
|
|
/* Menu bar IDs */
|
|
#define MBAR_Main 128
|
|
|
|
/* Menu IDs */
|
|
#define mApple 128
|
|
#define mFile 129
|
|
#define mEdit 130
|
|
|
|
/* Menu Items */
|
|
/* Apple menu */
|
|
#define iAbout 1
|
|
/* File menu */
|
|
#define iNew 1
|
|
#define iOpen 2
|
|
#define iClose 3
|
|
#define iQuit 5
|
|
/* Edit menu */
|
|
#define iUndo 1
|
|
#define iCut 3
|
|
#define iCopy 4
|
|
#define iPaste 5
|
|
#define iClear 6
|
|
#define iSelectAll 7
|
|
|
|
/* Window types (and resource IDs) */
|
|
#define wNone 0 /* Dummy value for no window */
|
|
#define wDA 1 /* Dummy value for desk accessory */
|
|
#define wFatal 128
|
|
#define wAbout 129
|
|
#define wiAboutLicence 1
|
|
#define wiAboutVersion 3
|
|
#define wTerminal 130
|
|
#define wLicence 131
|
|
#define wSettings 132
|
|
#define wiSettingsOpen 1
|
|
|
|
/* Controls */
|
|
#define cVScroll 128
|
|
|
|
/* Preferences */
|
|
#define PREF_wordness_type 'wORD'
|
|
|
|
#define PREF_settings 1024
|