diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-05 19:15:46 +0100 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-05 19:15:46 +0100 |
commit | 7253fb5794bd06f7227eacf9df9c3ca9f8108a07 (patch) | |
tree | 856d97cffebf5d09dc1a9995781e3a21efc32b9e /heimdall-frontend/source/qml/RootForm.ui.qml | |
parent | Actually fix #261 (CMake Linux detection) (diff) | |
download | Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar.gz Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar.bz2 Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar.lz Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar.xz Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.tar.zst Heimdall-7253fb5794bd06f7227eacf9df9c3ca9f8108a07.zip |
Diffstat (limited to '')
-rw-r--r-- | heimdall-frontend/source/qml/RootForm.ui.qml | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/heimdall-frontend/source/qml/RootForm.ui.qml b/heimdall-frontend/source/qml/RootForm.ui.qml new file mode 100644 index 0000000..bc97a58 --- /dev/null +++ b/heimdall-frontend/source/qml/RootForm.ui.qml @@ -0,0 +1,73 @@ +import QtQuick 2.4 +import QtQuick.Controls 1.3 +import QtQuick.Layouts 1.1 + +Rectangle { + id: rectangle1 + width: 620 + height: 460 + color: "#eeeeee" + + RowLayout { + id: rowLayout1 + anchors.fill: parent + + Rectangle { + id: rectangle6 + color: "#222222" + width: 180 + anchors.top: parent.top + anchors.topMargin: 0 + anchors.bottom: parent.bottom + anchors.bottomMargin: 0 + + ListView { + id: listView1 + anchors.fill: parent + delegate: Item { + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + height: 40 + Row { + spacing: 8 + + Rectangle { + width: 40 + height: 40 + color: colorCode + } + + Text { + text: name + color: '#eeeeee' + anchors.verticalCenter: parent.verticalCenter + } + } + } + model: ListModel { + ListElement { + name: "Load Firmware" + colorCode: "red" + } + + ListElement { + name: "Utilities" + colorCode: "blue" + } + + ListElement { + name: "Configuration" + colorCode: "green" + } + } + } + } + DropFiles { + id: dropFiles1 + Layout.fillWidth: true + } + } + +} |