src/eric7/Debugger/Ui_VariablesFilterDialog.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/VariablesFilterDialog.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_VariablesFilterDialog(object):
13 def setupUi(self, VariablesFilterDialog):
14 VariablesFilterDialog.setObjectName("VariablesFilterDialog")
15 VariablesFilterDialog.resize(600, 500)
16 VariablesFilterDialog.setSizeGripEnabled(True)
17 self.gridLayout = QtWidgets.QGridLayout(VariablesFilterDialog)
18 self.gridLayout.setObjectName("gridLayout")
19 self.label = QtWidgets.QLabel(parent=VariablesFilterDialog)
20 self.label.setWordWrap(True)
21 self.label.setObjectName("label")
22 self.gridLayout.addWidget(self.label, 0, 0, 1, 2)
23 self.localsLabel = QtWidgets.QLabel(parent=VariablesFilterDialog)
24 self.localsLabel.setObjectName("localsLabel")
25 self.gridLayout.addWidget(self.localsLabel, 1, 0, 1, 1)
26 self.globalsLabel = QtWidgets.QLabel(parent=VariablesFilterDialog)
27 self.globalsLabel.setObjectName("globalsLabel")
28 self.gridLayout.addWidget(self.globalsLabel, 1, 1, 1, 1)
29 self.localsList = QtWidgets.QListWidget(parent=VariablesFilterDialog)
30 self.localsList.setAlternatingRowColors(True)
31 self.localsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
32 self.localsList.setObjectName("localsList")
33 self.gridLayout.addWidget(self.localsList, 2, 0, 1, 1)
34 self.globalsList = QtWidgets.QListWidget(parent=VariablesFilterDialog)
35 self.globalsList.setAlternatingRowColors(True)
36 self.globalsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
37 self.globalsList.setObjectName("globalsList")
38 self.gridLayout.addWidget(self.globalsList, 2, 1, 1, 1)
39 self.buttonBox = QtWidgets.QDialogButtonBox(parent=VariablesFilterDialog)
40 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
41 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Apply|QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok|QtWidgets.QDialogButtonBox.StandardButton.Reset)
42 self.buttonBox.setObjectName("buttonBox")
43 self.gridLayout.addWidget(self.buttonBox, 3, 0, 1, 2)
44 self.localsLabel.setBuddy(self.localsList)
45 self.globalsLabel.setBuddy(self.globalsList)
46
47 self.retranslateUi(VariablesFilterDialog)
48 self.buttonBox.accepted.connect(VariablesFilterDialog.accept) # type: ignore
49 self.buttonBox.rejected.connect(VariablesFilterDialog.reject) # type: ignore
50 QtCore.QMetaObject.connectSlotsByName(VariablesFilterDialog)
51 VariablesFilterDialog.setTabOrder(self.localsList, self.globalsList)
52
53 def retranslateUi(self, VariablesFilterDialog):
54 _translate = QtCore.QCoreApplication.translate
55 VariablesFilterDialog.setWindowTitle(_translate("VariablesFilterDialog", "Variables Type Filter"))
56 VariablesFilterDialog.setWhatsThis(_translate("VariablesFilterDialog", "<b>Filter Dialog</b>\n"
57 "<p> This dialog gives the user the possibility to select what kind of variables should <b>not</b> be shown during a debugging session.</p>"))
58 self.label.setText(_translate("VariablesFilterDialog", "Select the variable types to be shown in the variables viewers:"))
59 self.localsLabel.setText(_translate("VariablesFilterDialog", "&Locals Viewer"))
60 self.globalsLabel.setText(_translate("VariablesFilterDialog", "&Globals Viewer"))
61 self.localsList.setToolTip(_translate("VariablesFilterDialog", "Locals Filter List"))
62 self.localsList.setWhatsThis(_translate("VariablesFilterDialog", "<b>Locals Filter List</b>\n"
63 "<p>Select the variable types you want to be shown in the local variables viewer.</p<"))
64 self.localsList.setSortingEnabled(True)
65 self.globalsList.setToolTip(_translate("VariablesFilterDialog", "Globals Filter List"))
66 self.globalsList.setWhatsThis(_translate("VariablesFilterDialog", "<b>Globals Filter List</b>\n"
67 "<p>Select the variable types you want to be shown in the global variables viewer.</p<"))
68 self.globalsList.setSortingEnabled(True)

eric ide

mercurial