blob: be928f0234195135d4099632bb97385ff4e3427a (
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
48
49
50
51
|
//![0]
var component;
var sprite;
function finishCreation() {
if (component.status == Component.Ready) {
sprite = component.createObject();
if (sprite == null) {
// Error Handling
} else {
sprite.parent = appWindow;
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();
if (sprite == null) {
// Error Handling
console.log("Error loading component:", component.errorsString());
} else {
sprite.parent = appWindow;
sprite.x = 100;
sprite.y = 100;
// ...
}
//![2]
}
createSpriteObjects();
|