-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainMenu.qml
48 lines (37 loc) · 932 Bytes
/
MainMenu.qml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import QtQuick 2.0
Rectangle {
id: root
signal conferences
signal events
signal recordings
signal settings
Grid {
columns: 2
anchors.centerIn: parent
spacing: Math.min(tileWidth / 3, tileHeight / 3)
TileButton {
text: qsTr("Conferences")
width: tileWidth
height: tileHeight
onClicked: root.conferences()
}
TileButton {
text: qsTr("Events")
width: tileWidth
height: tileHeight
onClicked: root.events()
}
TileButton {
text: qsTr("Recordings")
width: tileWidth
height: tileHeight
onClicked: root.recordings()
}
TileButton {
text: qsTr("Settings")
width: tileWidth
height: tileHeight
onClicked: root.settings()
}
}
}