summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_resources.qdoc
blob: bc85341b1ef48884e0192d0e260436a3001b99c9 (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
33
34
35
36
37
38
39
40
41
//! [0]
<file alias="cut-img.png">images/cut.png</file>
//! [0]


//! [1]
<qresource prefix="/myresources">
    <file alias="cut-img.png">images/cut.png</file>
</qresource>
//! [1]


//! [2]
<qresource>
    <file>cut.jpg</file>
</qresource>
<qresource lang="fr">
    <file alias="cut.jpg">cut_fr.jpg</file>
</qresource>
//! [2]


//! [3]
rcc -binary myresource.qrc -o myresource.rcc
//! [3]


//! [4]
QResource::registerResource("/path/to/myresource.rcc");
//! [4]


//! [5]
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Q_INIT_RESOURCE(graphlib);
    ...
    return app.exec();
}
//! [5]