-
Notifications
You must be signed in to change notification settings - Fork 3
/
dialog_example_2.py
74 lines (55 loc) · 2.2 KB
/
dialog_example_2.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
import sys
from PySide2 import QtWidgets
from eqt.ui import FormDialog
class MainUI(QtWidgets.QMainWindow):
def __init__(self, parent=None):
QtWidgets.QMainWindow.__init__(self, parent)
pb = QtWidgets.QPushButton(self)
pb.setText("Open Dialog with form layout")
pb.clicked.connect(lambda: self.openFormDialog())
layout = QtWidgets.QHBoxLayout()
layout.addWidget(pb)
widg = QtWidgets.QWidget()
widg.setLayout(layout)
self.setCentralWidget(widg)
self.show()
def openFormDialog(self):
dialog = FormDialog(parent=self, title='Example')
dialog.Ok.clicked.connect(lambda: self.accepted())
# Example on how to add elements to the FormDialog
# add input 1 as QLineEdit
qlabel = QtWidgets.QLabel(dialog.groupBox)
qlabel.setText("Input 1: ")
qwidget = QtWidgets.QLineEdit(dialog.groupBox)
qwidget.setClearButtonEnabled(True)
# finally add to the form widget
dialog.addSpanningWidget(QtWidgets.QLabel("Input Values: "), 'input_title')
dialog.addWidget(qwidget, qlabel, 'input1')
# add input 2 as QComboBox
qlabel = QtWidgets.QLabel(dialog.groupBox)
qlabel.setText("Input 2: ")
qwidget = QtWidgets.QComboBox(dialog.groupBox)
qwidget.addItem("option 1")
qwidget.addItem("option 2")
qwidget.setCurrentIndex(0)
qwidget.setEnabled(True)
# finally add to the form widget
dialog.addWidget(qwidget, qlabel, 'input2')
dialog.addWidget(QtWidgets.QLabel("Example Vertical Layout Text"), layout="vertical")
# Example of using 'getWidget':
dialog.getWidget('input2').setCurrentIndex(1)
# store a reference
self.dialog = dialog
self.dialog.onCancel = self.rejected
dialog.exec()
def accepted(self):
print("accepted")
print(self.dialog.widgets['input1_field'].text())
print(self.dialog.widgets['input2_field'].currentText())
self.dialog.close()
def rejected(self):
print("rejected")
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
window = MainUI()
sys.exit(app.exec_())