Advertisement
Guest User

Untitled

a guest
Jan 24th, 2016
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 1.73 KB | None | 0 0
  1. TableViewStyle
  2. {
  3.  
  4.     Component {
  5.  
  6.         id: header
  7.         Rectangle {
  8.             anchors.topMargin: 5
  9.             height: 22
  10.             anchors.verticalCenter: parent.verticalCenter
  11.             color: "#6d6e70"
  12.             Text {
  13.                 anchors.fill: parent
  14.                 anchors.verticalCenter: parent.verticalCenter
  15.                 horizontalAlignment: Text.Center
  16.                 verticalAlignment: Text.AlignVCenter
  17.                 text: styleData.value
  18.                 color: "white"
  19.                 renderType: Text.NativeRendering
  20.             }
  21.             Rectangle {
  22.                 anchors.right: parent.right
  23.                 anchors.top: parent.top
  24.                 anchors.bottom: parent.bottom
  25.                 anchors.bottomMargin: 1
  26.                 anchors.topMargin: 1
  27.                 width: 1
  28.                 color: "black"
  29.             }
  30.         }
  31.     }
  32.     Component {
  33.         id: defaultRow
  34.         Rectangle {
  35.             height: 30
  36.             property color selectedColor: styleData.row % 2 ? "#fbfbfc" : "white"
  37.             color: styleData.selected ? "#999" : selectedColor
  38.         }
  39.  
  40.     }
  41.     Component {
  42.         id: largeRow
  43.         Rectangle {
  44.             height: 120
  45.             property color selectedColor: styleData.row % 2 ? "#fbfbfc" : "white"
  46.             color: styleData.selected ? "#999" : selectedColor
  47.         }
  48.     }
  49.  
  50.     Component {
  51.         id: imageDelegate
  52.         Image {
  53.             anchors.verticalCenter: parent.verticalCenter
  54.             anchors.horizontalCenter: parent.horizontalCenter
  55.             fillMode: Image.PreserveAspectFit
  56.             cache: true;
  57.             asynchronous: true;
  58.             source: styleData.value
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement