summaryrefslogtreecommitdiffstats
path: root/examples/declarative/snow/create.js
blob: 9def7a7b269dff81ae78714d689d3bb2374b3258 (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 = MyLayout;
    obj.offset = maximumColumn + 1;
    obj.ref = ImagePanel;
    maximumColumn += 5;
}