summaryrefslogtreecommitdiff
path: root/src/frontend/qtquick/main.qml
blob: 3775f2bbb9002e3275bf5a1f2f2cdd1bb6acbb0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: PROJECT_TITLE

	// DropDown for groups (including an "all" option)
	Item {
		width: parent.width
		height: 50
		ComboBox {
			anchors.fill: parent
			id: groupComboBox
			model: [
				"all"
				//...
			]
		}
	}
}