ReactOS
0.4.16-dev-297-gc569aee
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
resource.h
Go to the documentation of this file.
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
modules
rosapps
applications
devutils
vgafontedit
resource.h
Generated on Wed Nov 27 2024 06:15:19 for ReactOS by
1.9.6