tests/auto/declarative/qdeclarativepositioners/data/horizontal-spacing.qml
changeset 30 5dc02b23752f
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
       
     1 import Qt 4.7
       
     2 
       
     3 Item {
       
     4     width: 640
       
     5     height: 480
       
     6     Row {
       
     7         objectName: "row"
       
     8         spacing: 10
       
     9         Rectangle {
       
    10             objectName: "one"
       
    11             color: "red"
       
    12             width: 50
       
    13             height: 50
       
    14         }
       
    15         Rectangle {
       
    16             objectName: "two"
       
    17             color: "red"
       
    18             width: 20
       
    19             height: 10
       
    20         }
       
    21         Rectangle {
       
    22             objectName: "three"
       
    23             color: "red"
       
    24             width: 40
       
    25             height: 20
       
    26         }
       
    27     }
       
    28 }