blob: ed940f727fb0fd75a536bd21a13b743072a2e624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
Resource Compiler.
This compiler converts .src files and .hrc equivalents into binary
.res files. The basic idea is that this provides a map between
integer identifiers and the resources: string, pixmap (only the
file-name), and VCL control properties.
In more detail:
Typically we would have a .hrc file with entries like this:
#define SID_STR_FOO 1234
And then a .src file with some entries like this:
String SID_STR_FOO
{
Text [ en-US ] = "Foo !" ;
};
This is compiled into a binary resource file, we have many of these
which live in program/resource/ and then tends to get used in the code
thus:
String aStr( ResId( SID_STR_FOO ) );
It is important to note that any appearance of hierarchical structure
in the .src files is in fact a mirage. The file is compiled at root
into a plain map<integer,resource>.
There is some German documentation about it in a subdirectory called
[git:rsc/doku]. Seems to be very old (January 1992).
|