summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml
blob: 70fafd6482e2409ad837468745f1f0d67b7fa95b (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
52
53
54
55
56
57
import Qt 4.6

QGraphicsView {
    objectName: "GView"
    size: "800x600"

    QGraphicsScene {
        objectName: "GScene"
        sceneRect: "0,0,500x300"

        QGraphicsWidget {
            layout: QGraphicsLinearLayout {
                orientation: Qt.Horizontal
                QGraphicsWidget {
                    layout: QGraphicsLinearLayout {
                        spacing: 10; orientation: Qt.Vertical
                        LayoutItem {
                            QGraphicsLinearLayout.stretchFactor: 1
                            objectName: "left"
                            minimumSize: "100x100"
                            maximumSize: "300x300"
                            preferredSize: "100x100"
                            Rectangle { objectName: "yellowRect"; color: "yellow"; anchors.fill: parent }
                        }
                        LayoutItem {
                            QGraphicsLinearLayout.stretchFactor: 10
                            objectName: "left"
                            minimumSize: "100x100"
                            maximumSize: "300x300"
                            preferredSize: "100x100"
                            Rectangle { objectName: "yellowRect"; color: "blue"; anchors.fill: parent }
                        }
                    }
                }
                QGraphicsWidget {
                    layout: QGraphicsLinearLayout {
                        spacing: 10; orientation: Qt.Vertical
                        LayoutItem {
                            objectName: "left"
                            minimumSize: "100x100"
                            maximumSize: "300x300"
                            preferredSize: "100x100"
                            Rectangle { objectName: "yellowRect"; color: "red"; anchors.fill: parent }
                        }
                        LayoutItem {
                            objectName: "left"
                            minimumSize: "100x100"
                            maximumSize: "300x300"
                            preferredSize: "100x100"
                            Rectangle { objectName: "yellowRect"; color: "green"; anchors.fill: parent }
                        }
                    }
                }
            }
        }
    }
}