|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Project_Django/ProjectDjango/DjangoRunTestServerDataDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.4.0 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_DjangoRunTestServerDataDialog(object): |
|
13 def setupUi(self, DjangoRunTestServerDataDialog): |
|
14 DjangoRunTestServerDataDialog.setObjectName("DjangoRunTestServerDataDialog") |
|
15 DjangoRunTestServerDataDialog.resize(600, 92) |
|
16 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Minimum) |
|
17 sizePolicy.setHorizontalStretch(0) |
|
18 sizePolicy.setVerticalStretch(0) |
|
19 sizePolicy.setHeightForWidth(DjangoRunTestServerDataDialog.sizePolicy().hasHeightForWidth()) |
|
20 DjangoRunTestServerDataDialog.setSizePolicy(sizePolicy) |
|
21 DjangoRunTestServerDataDialog.setSizeGripEnabled(True) |
|
22 self.verticalLayout = QtWidgets.QVBoxLayout(DjangoRunTestServerDataDialog) |
|
23 self.verticalLayout.setObjectName("verticalLayout") |
|
24 self.label = QtWidgets.QLabel(DjangoRunTestServerDataDialog) |
|
25 self.label.setObjectName("label") |
|
26 self.verticalLayout.addWidget(self.label) |
|
27 self.fixturePicker = EricPathPicker(DjangoRunTestServerDataDialog) |
|
28 self.fixturePicker.setFocusPolicy(QtCore.Qt.FocusPolicy.WheelFocus) |
|
29 self.fixturePicker.setObjectName("fixturePicker") |
|
30 self.verticalLayout.addWidget(self.fixturePicker) |
|
31 self.buttonBox = QtWidgets.QDialogButtonBox(DjangoRunTestServerDataDialog) |
|
32 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
33 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
34 self.buttonBox.setObjectName("buttonBox") |
|
35 self.verticalLayout.addWidget(self.buttonBox) |
|
36 |
|
37 self.retranslateUi(DjangoRunTestServerDataDialog) |
|
38 self.buttonBox.accepted.connect(DjangoRunTestServerDataDialog.accept) # type: ignore |
|
39 self.buttonBox.rejected.connect(DjangoRunTestServerDataDialog.reject) # type: ignore |
|
40 QtCore.QMetaObject.connectSlotsByName(DjangoRunTestServerDataDialog) |
|
41 |
|
42 def retranslateUi(self, DjangoRunTestServerDataDialog): |
|
43 _translate = QtCore.QCoreApplication.translate |
|
44 DjangoRunTestServerDataDialog.setWindowTitle(_translate("DjangoRunTestServerDataDialog", "testserver Command Options")) |
|
45 self.label.setText(_translate("DjangoRunTestServerDataDialog", "Enter the list of fixture patterns or the path of a fixture file.")) |
|
46 from eric7.EricWidgets.EricPathPicker import EricPathPicker |
|
47 |
|
48 |
|
49 if __name__ == "__main__": |
|
50 import sys |
|
51 app = QtWidgets.QApplication(sys.argv) |
|
52 DjangoRunTestServerDataDialog = QtWidgets.QDialog() |
|
53 ui = Ui_DjangoRunTestServerDataDialog() |
|
54 ui.setupUi(DjangoRunTestServerDataDialog) |
|
55 DjangoRunTestServerDataDialog.show() |
|
56 sys.exit(app.exec()) |