summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/create.js
blob: 2bdae4a71f12109f9e9fa2c6e33a73e0528899b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var myComponent = null;

function createNewBlock() {
    if (myComponent == null)
        myComponent = createComponent("ImageBatch.qml");

    var obj = myComponent.createObject();
    obj.parent = layout;
    obj.offset = maximumColumn + 1;
    obj.ref = imagePanel;
    maximumColumn += 5;
}