src/eric7/Debugger/Ui_ExceptionsFilterDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Debugger/ExceptionsFilterDialog.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_ExceptionsFilterDialog(object):
13 def setupUi(self, ExceptionsFilterDialog):
14 ExceptionsFilterDialog.setObjectName("ExceptionsFilterDialog")
15 ExceptionsFilterDialog.resize(450, 400)
16 ExceptionsFilterDialog.setSizeGripEnabled(True)
17 self.gridLayout = QtWidgets.QGridLayout(ExceptionsFilterDialog)
18 self.gridLayout.setObjectName("gridLayout")
19 self.exceptionList = QtWidgets.QListWidget(parent=ExceptionsFilterDialog)
20 self.exceptionList.setAlternatingRowColors(True)
21 self.exceptionList.setObjectName("exceptionList")
22 self.gridLayout.addWidget(self.exceptionList, 0, 0, 1, 3)
23 self.addButton = QtWidgets.QPushButton(parent=ExceptionsFilterDialog)
24 self.addButton.setEnabled(False)
25 self.addButton.setObjectName("addButton")
26 self.gridLayout.addWidget(self.addButton, 1, 0, 1, 1)
27 self.exceptionEdit = QtWidgets.QLineEdit(parent=ExceptionsFilterDialog)
28 self.exceptionEdit.setObjectName("exceptionEdit")
29 self.gridLayout.addWidget(self.exceptionEdit, 1, 1, 1, 2)
30 self.deleteButton = QtWidgets.QPushButton(parent=ExceptionsFilterDialog)
31 self.deleteButton.setEnabled(False)
32 self.deleteButton.setObjectName("deleteButton")
33 self.gridLayout.addWidget(self.deleteButton, 2, 0, 1, 1)
34 self.deleteAllButton = QtWidgets.QPushButton(parent=ExceptionsFilterDialog)
35 self.deleteAllButton.setObjectName("deleteAllButton")
36 self.gridLayout.addWidget(self.deleteAllButton, 2, 1, 1, 1)
37 spacerItem = QtWidgets.QSpacerItem(261, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
38 self.gridLayout.addItem(spacerItem, 2, 2, 1, 1)
39 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ExceptionsFilterDialog)
40 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
41 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
42 self.buttonBox.setObjectName("buttonBox")
43 self.gridLayout.addWidget(self.buttonBox, 3, 0, 1, 3)
44
45 self.retranslateUi(ExceptionsFilterDialog)
46 self.buttonBox.accepted.connect(ExceptionsFilterDialog.accept) # type: ignore
47 self.buttonBox.rejected.connect(ExceptionsFilterDialog.reject) # type: ignore
48 QtCore.QMetaObject.connectSlotsByName(ExceptionsFilterDialog)
49 ExceptionsFilterDialog.setTabOrder(self.exceptionList, self.exceptionEdit)
50 ExceptionsFilterDialog.setTabOrder(self.exceptionEdit, self.addButton)
51 ExceptionsFilterDialog.setTabOrder(self.addButton, self.deleteButton)
52 ExceptionsFilterDialog.setTabOrder(self.deleteButton, self.deleteAllButton)
53 ExceptionsFilterDialog.setTabOrder(self.deleteAllButton, self.buttonBox)
54
55 def retranslateUi(self, ExceptionsFilterDialog):
56 _translate = QtCore.QCoreApplication.translate
57 ExceptionsFilterDialog.setWindowTitle(_translate("ExceptionsFilterDialog", "Exceptions Filter"))
58 ExceptionsFilterDialog.setWhatsThis(_translate("ExceptionsFilterDialog", "<b>Exception Filter</b>\n"
59 "<p>This dialog is used to enter the exception types, that shall be highlighted during a debugging session. If this list is empty, all exception types will be highlighted. If the exception reporting flag in the \"Start Debugging\" dialog is unchecked, no exception will be reported at all.</p>\n"
60 "<p>Please note, that unhandled exceptions are always highlighted independent of these settings.</p>"))
61 self.exceptionList.setToolTip(_translate("ExceptionsFilterDialog", "List of exceptions that shall be highlighted"))
62 self.addButton.setToolTip(_translate("ExceptionsFilterDialog", "Press to add the entered exception to the list"))
63 self.addButton.setText(_translate("ExceptionsFilterDialog", "Add"))
64 self.exceptionEdit.setToolTip(_translate("ExceptionsFilterDialog", "Enter an exception type that shall be highlighted"))
65 self.deleteButton.setToolTip(_translate("ExceptionsFilterDialog", "Press to delete the selected exception from the list"))
66 self.deleteButton.setText(_translate("ExceptionsFilterDialog", "Delete"))
67 self.deleteAllButton.setToolTip(_translate("ExceptionsFilterDialog", "Press to delete all exceptions from the list"))
68 self.deleteAllButton.setText(_translate("ExceptionsFilterDialog", "Delete All"))

eric ide

mercurial