oboy/qt/BackgroundMapForm.ui.qml

58 lines
1.2 KiB
QML
Raw Normal View History

2016-04-18 23:06:17 +02:00
import QtQuick 2.4
Item {
width: 400
height: 400
2016-08-08 23:11:34 +02:00
GridView {
id: bgmap_01
visible: true
smooth: false
enabled: false
keyNavigationWraps: false
interactive: false
anchors.fill: parent
flickableDirection: Flickable.VerticalFlick
delegate: Item {
x: 5
height: 50
Column {
width: 8
height: 8
spacing: 0
Rectangle {
x: 0
width: 8
height: 8
color: colorCode
border.width: 1
anchors.horizontalCenter: parent.horizontalCenter
2016-04-18 23:06:17 +02:00
}
2016-08-08 23:11:34 +02:00
}
}
cellWidth: 8
model: ListModel {
ListElement {
name: "Grey"
colorCode: "grey"
}
2016-04-18 23:06:17 +02:00
2016-08-08 23:11:34 +02:00
ListElement {
name: "Red"
colorCode: "red"
}
ListElement {
name: "Blue"
colorCode: "blue"
}
ListElement {
name: "Green"
colorCode: "green"
2016-04-18 23:06:17 +02:00
}
}
2016-08-08 23:11:34 +02:00
cellHeight: 8
2016-04-18 23:06:17 +02:00
}
}