ProjectDjango/Ui_DjangoCheckOptionsDialog.py

branch
eric7
changeset 195
b027b4f90994
child 200
d0180bd6c1b5
equal deleted inserted replaced
194:f497097bb0aa 195:b027b4f90994
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Project_Django/ProjectDjango/DjangoCheckOptionsDialog.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_DjangoCheckOptionsDialog(object):
13 def setupUi(self, DjangoCheckOptionsDialog):
14 DjangoCheckOptionsDialog.setObjectName("DjangoCheckOptionsDialog")
15 DjangoCheckOptionsDialog.resize(500, 450)
16 DjangoCheckOptionsDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(DjangoCheckOptionsDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.deployCheckBox = QtWidgets.QCheckBox(DjangoCheckOptionsDialog)
20 self.deployCheckBox.setObjectName("deployCheckBox")
21 self.verticalLayout.addWidget(self.deployCheckBox)
22 self.label = QtWidgets.QLabel(DjangoCheckOptionsDialog)
23 self.label.setWordWrap(True)
24 self.label.setObjectName("label")
25 self.verticalLayout.addWidget(self.label)
26 self.tagsList = QtWidgets.QListWidget(DjangoCheckOptionsDialog)
27 self.tagsList.setAlternatingRowColors(True)
28 self.tagsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
29 self.tagsList.setObjectName("tagsList")
30 self.verticalLayout.addWidget(self.tagsList)
31 self.label_2 = QtWidgets.QLabel(DjangoCheckOptionsDialog)
32 self.label_2.setWordWrap(True)
33 self.label_2.setObjectName("label_2")
34 self.verticalLayout.addWidget(self.label_2)
35 self.appsComboBox = QtWidgets.QComboBox(DjangoCheckOptionsDialog)
36 self.appsComboBox.setEditable(True)
37 self.appsComboBox.setObjectName("appsComboBox")
38 self.verticalLayout.addWidget(self.appsComboBox)
39 self.settingsFileGroup = QtWidgets.QGroupBox(DjangoCheckOptionsDialog)
40 self.settingsFileGroup.setObjectName("settingsFileGroup")
41 self.horizontalLayout = QtWidgets.QHBoxLayout(self.settingsFileGroup)
42 self.horizontalLayout.setSpacing(0)
43 self.horizontalLayout.setObjectName("horizontalLayout")
44 self.settingsFileEdit = QtWidgets.QLineEdit(self.settingsFileGroup)
45 self.settingsFileEdit.setClearButtonEnabled(True)
46 self.settingsFileEdit.setObjectName("settingsFileEdit")
47 self.horizontalLayout.addWidget(self.settingsFileEdit)
48 self.settingsFileButton = QtWidgets.QToolButton(self.settingsFileGroup)
49 self.settingsFileButton.setObjectName("settingsFileButton")
50 self.horizontalLayout.addWidget(self.settingsFileButton)
51 self.verticalLayout.addWidget(self.settingsFileGroup)
52 self.buttonBox = QtWidgets.QDialogButtonBox(DjangoCheckOptionsDialog)
53 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
54 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
55 self.buttonBox.setObjectName("buttonBox")
56 self.verticalLayout.addWidget(self.buttonBox)
57
58 self.retranslateUi(DjangoCheckOptionsDialog)
59 self.buttonBox.accepted.connect(DjangoCheckOptionsDialog.accept) # type: ignore
60 self.buttonBox.rejected.connect(DjangoCheckOptionsDialog.reject) # type: ignore
61 QtCore.QMetaObject.connectSlotsByName(DjangoCheckOptionsDialog)
62
63 def retranslateUi(self, DjangoCheckOptionsDialog):
64 _translate = QtCore.QCoreApplication.translate
65 DjangoCheckOptionsDialog.setWindowTitle(_translate("DjangoCheckOptionsDialog", "Check Options"))
66 self.deployCheckBox.setToolTip(_translate("DjangoCheckOptionsDialog", "Select to enable checks for deployment mode"))
67 self.deployCheckBox.setText(_translate("DjangoCheckOptionsDialog", "Deployment Mode"))
68 self.label.setText(_translate("DjangoCheckOptionsDialog", "Select type of checks (leave unselected for all checks):"))
69 self.tagsList.setSortingEnabled(True)
70 self.label_2.setText(_translate("DjangoCheckOptionsDialog", "Enter the list of applications separated by spaces (leave empty for all apps):"))
71 self.settingsFileGroup.setTitle(_translate("DjangoCheckOptionsDialog", "Settings module for deployment mode"))
72 self.settingsFileEdit.setToolTip(_translate("DjangoCheckOptionsDialog", "Enter the module name of the deployment settings"))
73 self.settingsFileButton.setToolTip(_translate("DjangoCheckOptionsDialog", "Press to select the settings module file via a file selection dialog"))
74
75
76 if __name__ == "__main__":
77 import sys
78 app = QtWidgets.QApplication(sys.argv)
79 DjangoCheckOptionsDialog = QtWidgets.QDialog()
80 ui = Ui_DjangoCheckOptionsDialog()
81 ui.setupUi(DjangoCheckOptionsDialog)
82 DjangoCheckOptionsDialog.show()
83 sys.exit(app.exec())

eric ide

mercurial