tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:19:32 +0300
changeset 37 758a864f9613
permissions -rw-r--r--
Revision: 201037 Kit: 201039

import Qt 4.7

Item {
    width: 640
    height: 480
    Column {
        objectName: "column"
        QGraphicsWidget {
            objectName: "one"
            width: 50
            height: 50
        }
        QGraphicsWidget {
            objectName: "two"
            width: 20
            height: 10
        }
        QGraphicsWidget {
            objectName: "three"
            width: 40
            height: 20
        }
    }
}