diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-07 20:50:04 +0100 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2015-03-07 20:50:04 +0100 |
commit | 9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2 (patch) | |
tree | c481718ac1e87fd2093810b96fbb3c923722b2e5 /heimdall-frontend/source/qml/RootForm.qml | |
parent | Added CMake option to enable QML debugging (diff) | |
download | Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar.gz Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar.bz2 Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar.lz Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar.xz Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.tar.zst Heimdall-9514d36c4693e6a9a2f9ca2c72072a5f4ab9ffc2.zip |
Diffstat (limited to 'heimdall-frontend/source/qml/RootForm.qml')
-rw-r--r-- | heimdall-frontend/source/qml/RootForm.qml | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/heimdall-frontend/source/qml/RootForm.qml b/heimdall-frontend/source/qml/RootForm.qml new file mode 100644 index 0000000..4212048 --- /dev/null +++ b/heimdall-frontend/source/qml/RootForm.qml @@ -0,0 +1,114 @@ +import QtQuick 2.4 +import QtQuick.Controls 1.3 +import QtQuick.Layouts 1.1 + +Item { + width: 640 + height: 460 + + RowLayout { + anchors.fill: parent + spacing: 0 + + Rectangle { + color: "#222222" + width: 172 + anchors.top: parent.top + anchors.topMargin: 0 + anchors.bottom: parent.bottom + anchors.bottomMargin: 0 + + ListView { + id: list + boundsBehavior: Flickable.StopAtBounds + anchors.fill: parent + focus: true + + highlight: Item { + Rectangle { + height: 40 + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + radius: 8 + color: "#333333" + } + Rectangle { + height: 40 + anchors.right: parent.right + anchors.rightMargin: 8 + anchors.left: parent.left + anchors.leftMargin: 0 + color: "#333333" + } + } + + delegate: Item { + height: 40 + anchors.right: parent.right + anchors.rightMargin: 12 + anchors.left: parent.left + anchors.leftMargin: 0 + + Row { + spacing: 8 + + Rectangle { + width: 40 + height: 40 + color: colorCode + } + + Text { + text: name + color: '#ffffff' + anchors.verticalCenter: parent.verticalCenter + } + } + + MouseArea { + anchors.fill: parent + hoverEnabled: false + + onClicked: { + list.currentIndex = index + list.forceActiveFocus() + } + } + } + + model: ListModel { + ListElement { + name: "Load Firmware" + colorCode: "red" + } + + ListElement { + name: "Utilities" + colorCode: "blue" + } + + ListElement { + name: "Settings" + colorCode: "green" + } + } + } + } + + Rectangle { + Layout.fillWidth: true + anchors.bottom: parent.bottom + anchors.bottomMargin: 0 + anchors.top: parent.top + anchors.topMargin: 0 + + DropFiles { + id: dropFiles + anchors.fill: parent + } + } + } + +} |