diff options
author | Louie S <louie@example.com> | 2024-07-24 11:58:00 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2024-07-25 17:11:23 -0400 |
commit | 68ce496b5dd082881dde7536677f295bc40ee055 (patch) | |
tree | 53128fdd56f753b97e53f31812d7855f13583ffc /src/frontend/qtquick/main.qml | |
parent | 02add8bb097104dc02066fe390ec01465910fc76 (diff) |
First commit of qtquick branch
Diffstat (limited to 'src/frontend/qtquick/main.qml')
-rw-r--r-- | src/frontend/qtquick/main.qml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/frontend/qtquick/main.qml b/src/frontend/qtquick/main.qml new file mode 100644 index 0000000..18936fd --- /dev/null +++ b/src/frontend/qtquick/main.qml @@ -0,0 +1,25 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 +import QtQuick.Window 2.15 + +Window { + width: 640 + height: 480 + visible: true + // TODO grab this from config.h + title: qsTr("Assignment List") + + // DropDown for groups (including an "all" option) + Item { + width: parent.width + height: 50 + ComboBox { + anchors.fill: parent + id: groupComboBox + model: [ + "all" + //... + ] + } + } +} |