1 /* 2 * PROJECT: ReactOS VGA Font Editor 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Header containing resource IDs 5 * COPYRIGHT: Copyright 2008 Colin Finck (colin@reactos.org) 6 */ 7 8 #ifndef __RESOURCE_H 9 #define __RESOURCE_H 10 11 #define IDC_STATIC -1 12 13 // Icons 14 #define IDI_MAIN 100 15 #define IDI_DOC 101 16 17 // Accelerator Tables 18 #define IDA_MAINACCELERATORS 201 19 20 // Menus 21 #define IDM_MAINMENU 301 22 23 // Bitmaps 24 #define IDB_MAIN_TOOLBAR 401 25 #define IDB_EDIT_GLYPH_TOOLBOX 402 26 27 // Dialogs 28 #define IDD_ABOUT 501 29 #define IDD_EDITGLYPH 502 30 31 // Dialog Controls 32 #define IDC_EDIT_GLYPH_TOOLBOX 601 33 #define IDC_EDIT_GLYPH_EDIT 602 34 #define IDC_EDIT_GLYPH_PREVIEW 603 35 36 // Command IDs 37 #define ID_FILE_NEW 1001 38 #define ID_FILE_OPEN 1002 39 #define ID_FILE_CLOSE 1003 40 #define ID_FILE_SAVE 1004 41 #define ID_FILE_SAVE_AS 1005 42 #define ID_FILE_EXIT 1006 43 44 #define ID_EDIT_GLYPH 2001 45 #define ID_EDIT_COPY 2002 46 #define ID_EDIT_PASTE 2003 47 48 #define ID_WINDOW_TILE_HORZ 3001 49 #define ID_WINDOW_TILE_VERT 3002 50 #define ID_WINDOW_CASCADE 3003 51 #define ID_WINDOW_NEXT 3004 52 #define ID_WINDOW_ARRANGE 3005 53 54 #define ID_HELP_ABOUT 4001 55 56 #define ID_TOOLBOX_PEN 5001 57 58 // Strings 59 #define IDS_OPENFILTER 10001 60 #define IDS_SAVEFILTER 10002 61 #define IDS_OPENERROR 10003 62 #define IDS_READERROR 10004 63 #define IDS_WRITEERROR 10005 64 #define IDS_UNSUPPORTEDFORMAT 10006 65 #define IDS_UNSUPPORTEDPSF 10007 66 #define IDS_DOCNAME 10008 67 #define IDS_SAVEPROMPT 10009 68 #define IDS_APPTITLE 10010 69 #define IDS_CLOSEEDIT 10011 70 71 #define IDS_TOOLTIP_NEW 11001 72 #define IDS_TOOLTIP_OPEN 11002 73 #define IDS_TOOLTIP_SAVE 11003 74 #define IDS_TOOLTIP_EDIT_GLYPH 11004 75 #define IDS_TOOLTIP_COPY 11005 76 #define IDS_TOOLTIP_PASTE 11006 77 78 #endif 79