mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-20 05:45:27 -05:00

I'm tired of remembering all those fiddly magic numbers and copying them back and forth between the .rc file and the source code. I'm even more tired of having to remember that in the long string of numbers after a dialog item definition, the first one of them _isn't_ one of the position and size coordinates. I've given them all symbolic names, like they should have had all along. I think I originally didn't bother because this was such a small GUI compared to the much larger one in PuTTY proper. But it's growing!
32 lines
751 B
C
Executable File
32 lines
751 B
C
Executable File
/*
|
|
* Constant definitions for the Pageant resource file.
|
|
*/
|
|
|
|
#define IDI_MAINICON 200
|
|
#define IDI_TRAYICON 201
|
|
|
|
#define IDD_KEYLIST 211
|
|
#define IDD_LOAD_PASSPHRASE 210
|
|
#define IDD_ONDEMAND_PASSPHRASE 212
|
|
#define IDD_ABOUT 213
|
|
#define IDD_LICENCE 214
|
|
|
|
#define IDC_PASSPHRASE_STATIC1 100
|
|
#define IDC_PASSPHRASE_FINGERPRINT 101
|
|
#define IDC_PASSPHRASE_STATIC2 102
|
|
#define IDC_PASSPHRASE_EDITBOX 103
|
|
|
|
#define IDC_KEYLIST_LISTBOX 100
|
|
#define IDC_KEYLIST_ADDKEY 101
|
|
#define IDC_KEYLIST_ADDKEY_ENC 110
|
|
#define IDC_KEYLIST_REMOVE 102
|
|
#define IDC_KEYLIST_HELP 103
|
|
#define IDC_KEYLIST_FPTYPE_STATIC 104
|
|
#define IDC_KEYLIST_FPTYPE 105
|
|
|
|
#define IDC_ABOUT_LICENCE 101
|
|
#define IDC_ABOUT_WEBSITE 102
|
|
#define IDC_ABOUT_TEXTBOX 1000
|
|
|
|
#define IDC_LICENCE_TEXTBOX 1000
|