|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCodeSelectionDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.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_CodeStyleCodeSelectionDialog(object): |
|
13 def setupUi(self, CodeStyleCodeSelectionDialog): |
|
14 CodeStyleCodeSelectionDialog.setObjectName("CodeStyleCodeSelectionDialog") |
|
15 CodeStyleCodeSelectionDialog.resize(500, 400) |
|
16 CodeStyleCodeSelectionDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(CodeStyleCodeSelectionDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.label = QtWidgets.QLabel(parent=CodeStyleCodeSelectionDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.verticalLayout.addWidget(self.label) |
|
22 self.codeTable = QtWidgets.QTreeWidget(parent=CodeStyleCodeSelectionDialog) |
|
23 self.codeTable.setEditTriggers(QtWidgets.QAbstractItemView.EditTrigger.NoEditTriggers) |
|
24 self.codeTable.setAlternatingRowColors(True) |
|
25 self.codeTable.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection) |
|
26 self.codeTable.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows) |
|
27 self.codeTable.setRootIsDecorated(False) |
|
28 self.codeTable.setAllColumnsShowFocus(True) |
|
29 self.codeTable.setWordWrap(True) |
|
30 self.codeTable.setObjectName("codeTable") |
|
31 self.verticalLayout.addWidget(self.codeTable) |
|
32 self.buttonBox = QtWidgets.QDialogButtonBox(parent=CodeStyleCodeSelectionDialog) |
|
33 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
34 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
35 self.buttonBox.setObjectName("buttonBox") |
|
36 self.verticalLayout.addWidget(self.buttonBox) |
|
37 |
|
38 self.retranslateUi(CodeStyleCodeSelectionDialog) |
|
39 self.buttonBox.accepted.connect(CodeStyleCodeSelectionDialog.accept) # type: ignore |
|
40 self.buttonBox.rejected.connect(CodeStyleCodeSelectionDialog.reject) # type: ignore |
|
41 QtCore.QMetaObject.connectSlotsByName(CodeStyleCodeSelectionDialog) |
|
42 CodeStyleCodeSelectionDialog.setTabOrder(self.codeTable, self.buttonBox) |
|
43 |
|
44 def retranslateUi(self, CodeStyleCodeSelectionDialog): |
|
45 _translate = QtCore.QCoreApplication.translate |
|
46 CodeStyleCodeSelectionDialog.setWindowTitle(_translate("CodeStyleCodeSelectionDialog", "Code Style Message Codes")) |
|
47 self.label.setText(_translate("CodeStyleCodeSelectionDialog", "Select the message codes from the list:")) |
|
48 self.codeTable.setToolTip(_translate("CodeStyleCodeSelectionDialog", "Select the message codes from this table")) |
|
49 self.codeTable.headerItem().setText(0, _translate("CodeStyleCodeSelectionDialog", "Code")) |
|
50 self.codeTable.headerItem().setText(1, _translate("CodeStyleCodeSelectionDialog", "Message")) |