forked from PDA-UR/LatencyFittslawSetup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotification.py
44 lines (30 loc) · 1.42 KB
/
notification.py
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
from PyQt5.QtWidgets import QApplication, QMainWindow, QPushButton, QMessageBox, QVBoxLayout, QWidget, QLabel, QSpacerItem, QSizePolicy
from PyQt5.QtGui import QFont
from PyQt5.QtCore import Qt
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.label = QLabel("Bitte füllen Sie den Fragebogen aus und klicken Sie dann auf 'Weiter'.")
self.button = QPushButton("Weiter", self)
self.button.clicked.connect(self.on_button_clicked)
fontBig = QFont("Arial", 20)
fontMid = QFont("Arial", 14)
self.label.setFont(fontBig)
self.button.setFont(fontMid)
self.layout = QVBoxLayout()
self.layout.setContentsMargins(0, 400, 0, 400)
self.layout.addWidget(self.label, 0, Qt.AlignCenter)
self.layout.addWidget(self.button, 0, Qt.AlignCenter)
self.central_widget = QWidget()
self.central_widget.setLayout(self.layout)
self.setCentralWidget(self.central_widget)
self.showFullScreen()
def on_button_clicked(self):
reply = QMessageBox.question(self, 'Fragebogen', "Sind Sie fertig mit dem Fragebogen?", QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
if reply == QMessageBox.Yes:
QMessageBox.information(self, 'Fragebogen', "Vielen Dank für Ihre Teilnahme!")
self.close()
app = QApplication([])
window = MainWindow()
window.show()
app.exec_()