-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPopupMessageView.qml
41 lines (35 loc) · 1008 Bytes
/
PopupMessageView.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
import QtQuick.Controls 2.4
import QtQuick.Dialogs 1.2
import QtQuick.Layouts 1.11
import QtQuick 2.11
import QtQuick.Window 2.0
Window {
property int count: 0
id: myWindow
width: 800
height: 200
flags: Qt.Window | Qt.WindowSystemMenuHint
| Qt.WindowTitleHint | Qt.WindowMinimizeButtonHint
| Qt.WindowMaximizeButtonHint | Qt.WindowCloseButtonHint
modality: Qt.NonModal // no need for this as it is the default value
function updateDialogStatus(){
}
Rectangle {
color: "black"
anchors.fill: parent
RowLayout {
Label {
id: stateLabel
text: logicManagerState.handlingMessage
font.pointSize: 20
color: "white"
}
BusyIndicator {}
Label {
id: timerLabel
font.pointSize: 20
color: "skyblue"
}
}
}
}