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