-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtextbox.py
executable file
·77 lines (56 loc) · 1.91 KB
/
textbox.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python3
# alles wie gehabt (siehe label.py)
from qtpy.QtCore import *
from qtpy.QtGui import *
from qtpy.QtWidgets import *
import sys
app = QApplication(sys.argv)
"""
Jetzt wird es etwas komplizierter.
Wir haben Buttons und Eingabefelder.
"""
# erstellt ein neues Fenster
window = QWidget()
# vertikales Layout
layout = QVBoxLayout()
# Label
label = QLabel("Bitte Text eingeben und den Button drücken.", window)
# Textfeld
text = QLineEdit(window)
# Button
button = QPushButton("Hier klicken", window)
# alles ins Layout packen
layout.addWidget(label)
layout.addWidget(text)
layout.addWidget(button)
# Layout auf das Fenster anwenden
window.setLayout(layout)
# die Funktion, die beim Klick ausgeführt werden soll
def onClick() -> None:
# die Eingabe holen
input = text.text()
print(f"Eingabe: {input}")
# MessageBox erstellen
mb = QMessageBox(QMessageBox.Information, "Titel",
f"Der eingegebene Text war: \n{input}", QMessageBox.Ok, window)
# MessageBox anzeigen
mb.show()
# Button und Funktion verbinden
button.clicked.connect(onClick)
# Alternative:
#button.clicked.connect(lambda: QMessageBox(QMessageBox.Information, "Titel", "Der eingegebene Text war: \n{}".format(text.text()), QMessageBox.Ok, window).show())
# Fenster anzeigen
window.show()
# main loop
app.exec_()
"""
Für mehr Informationen und komplexere Beispiele siehe die offizielle Qt-Dokumentation:
https://doc.qt.io/qt-5/reference-overview.html
(Ja, die ist auf C++ bezogen, aber das meiste lässt sich auf Python übertragen.)
Diese Anleitung benutzt Qt als QWidgets von Python aus.
In Zukunft™ sollen Qt-Anwendungen allerdings mit Qt Quick
und QML entwickelt werden (siehe https://de.wikipedia.org/wiki/QML,
https://qmlbook.github.io/, https://doc.qt.io/qt-5/qtqml-index.html).
Hierbei kann mittels PyOtherSide (https://thp.io/2011/pyotherside/)
auch Python verwendet werden - von QML aus.
"""