summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/componentCreation.js
blob: f6fb3793b3cd7cf827509ba8a0a645867cb07f04 (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
42
43
44
45
46
47
//![0]
var component;
var sprite;

function finishCreation() {
    if (component.status == Component.Ready) {
        sprite = component.createObject(appWindow);
        if (sprite == null) {
            // Error Handling
        } else {
            sprite.x = 100;
            sprite.y = 100;
            // ...
        }
    } else if (component.status == Component.Error) {
        // Error Handling
        console.log("Error loading component:", component.errorsString());
    }
}
//![0]

function createSpriteObjects() {

//![1]
component = Qt.createComponent("Sprite.qml");
if (component.status == Component.Ready)
    finishCreation();
else
    component.statusChanged.connect(finishCreation);
//![1]

//![2]
component = Qt.createComponent("Sprite.qml");
sprite = component.createObject(appWindow);

if (sprite == null) {
    // Error Handling
    console.log("Error loading component:", component.errorsString());
} else {
    sprite.x = 100;
    sprite.y = 100;
    // ...
}
//![2]

}