Advertisement
artemmarchenko

centering with margin

Aug 26th, 2011
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 1.0
  2.  
  3.  
  4. Rectangle {
  5.     id: outerRect
  6.     width: innerRect.width + 20;
  7.     height: innerRect.height + 20
  8.  
  9.     color: "lightblue"
  10.     Rectangle {
  11.         id: innerRect
  12.         anchors.horizontalCenter: parent.horizontalCenter
  13.         anchors.verticalCenter: parent.verticalCenter
  14.         width: childrenRect.width
  15.         height: childrenRect.height
  16.         Row {
  17.             id: innerChild
  18.             spacing: 10
  19.             Rectangle {
  20.                 width: 100
  21.                 height: 100
  22.                 color: "red"
  23.             }
  24.             Rectangle {
  25.                 width: 100
  26.                 height: 100
  27.                 color: "green"
  28.             }
  29.             Rectangle {
  30.                 width: 100
  31.                 height: 100
  32.                 color: "blue"
  33.             }
  34.         }
  35.     }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement