Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. GridLayout
  2.         {
  3.             id: leftPanelGrid
  4.             anchors.topMargin: 80
  5.             anchors.fill: parent
  6.             rowSpacing: 5
  7.             rows: 4
  8.             columns: 2
  9.  
  10.             Image
  11.             {
  12.                 id: companyIcon
  13.                 width:  Core.smallIconSize
  14.                 height: Core.smallIconSize
  15.                 Layout.row: 0
  16.                 Layout.column: 0
  17.                 source: "location.png"
  18.             }
  19.  
  20.             Label
  21.             {
  22.                 color: "#000000"
  23.                 text: qsTr("Company:")
  24.                 font.family: "Segoe UI"
  25.                 font.pointSize: 10
  26.                 Layout.row: 0
  27.                 Layout.column: 1
  28.             }
  29.  
  30.             Label
  31.             {
  32.                 id: companyLabel
  33.                 color: "#ffffff"
  34.                 text: qsTr("Test comp")
  35.                 font.family: "Segoe UI"
  36.                 font.pointSize: 12
  37.                 Layout.row: 1
  38.                 Layout.column: 1
  39.             }
  40.  
  41.             Label
  42.             {
  43.                 id: adressLabel
  44.                 x: 0
  45.                 y: 0
  46.                 width: 178
  47.                 height: 36
  48.                 text: qsTr("Address ........Lorem ipsum dolor sit amet")
  49.                 horizontalAlignment: Text.AlignLeft
  50.                 wrapMode: Text.WrapAtWordBoundaryOrAnywhere
  51.                 font.pointSize: 10
  52.                 font.family: "Segoe UI"
  53.                 Layout.row: 2
  54.                 Layout.column: 1
  55.             }
  56.  
  57.             Label
  58.             {
  59.                 id: companyICLabel
  60.                 width: 178
  61.                 height: 21
  62.                 text: qsTr("IČ: 123456789")
  63.                 font.family: "Segoe UI"
  64.                 horizontalAlignment: Text.AlignLeft
  65.                 font.pointSize: 10
  66.                 wrapMode: Text.NoWrap
  67.                 Layout.row: 3
  68.                 Layout.column: 1
  69.             }
  70.  
  71.             Label
  72.             {
  73.                 id: companyDICLabel
  74.                 width: 178
  75.                 height: 21
  76.                 text: qsTr("DIČ: CZ123456789")
  77.                 font.family: "Segoe UI"
  78.                 horizontalAlignment: Text.AlignLeft
  79.                 font.pointSize: 10
  80.                 wrapMode: Text.NoWrap
  81.                 Layout.row: 4
  82.                 Layout.column: 1
  83.             }
  84.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement