src/eric7/MicroPython/Ui_ShowModulesDialog.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/MicroPython/ShowModulesDialog.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_ShowModulesDialog(object):
13 def setupUi(self, ShowModulesDialog):
14 ShowModulesDialog.setObjectName("ShowModulesDialog")
15 ShowModulesDialog.resize(400, 700)
16 ShowModulesDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(ShowModulesDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.horizontalLayout = QtWidgets.QHBoxLayout()
20 self.horizontalLayout.setObjectName("horizontalLayout")
21 self.label = QtWidgets.QLabel(parent=ShowModulesDialog)
22 self.label.setObjectName("label")
23 self.horizontalLayout.addWidget(self.label)
24 self.filterEdit = QtWidgets.QLineEdit(parent=ShowModulesDialog)
25 self.filterEdit.setClearButtonEnabled(True)
26 self.filterEdit.setObjectName("filterEdit")
27 self.horizontalLayout.addWidget(self.filterEdit)
28 self.filterButton = QtWidgets.QToolButton(parent=ShowModulesDialog)
29 self.filterButton.setObjectName("filterButton")
30 self.horizontalLayout.addWidget(self.filterButton)
31 self.verticalLayout.addLayout(self.horizontalLayout)
32 self.modulesList = QtWidgets.QListWidget(parent=ShowModulesDialog)
33 self.modulesList.setAlternatingRowColors(True)
34 self.modulesList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection)
35 self.modulesList.setObjectName("modulesList")
36 self.verticalLayout.addWidget(self.modulesList)
37 self.infoLabel = QtWidgets.QLabel(parent=ShowModulesDialog)
38 self.infoLabel.setWordWrap(True)
39 self.infoLabel.setObjectName("infoLabel")
40 self.verticalLayout.addWidget(self.infoLabel)
41 self.statusLabel = QtWidgets.QLabel(parent=ShowModulesDialog)
42 self.statusLabel.setObjectName("statusLabel")
43 self.verticalLayout.addWidget(self.statusLabel)
44 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ShowModulesDialog)
45 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
46 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
47 self.buttonBox.setObjectName("buttonBox")
48 self.verticalLayout.addWidget(self.buttonBox)
49
50 self.retranslateUi(ShowModulesDialog)
51 self.buttonBox.accepted.connect(ShowModulesDialog.accept) # type: ignore
52 self.buttonBox.rejected.connect(ShowModulesDialog.reject) # type: ignore
53 QtCore.QMetaObject.connectSlotsByName(ShowModulesDialog)
54 ShowModulesDialog.setTabOrder(self.filterEdit, self.filterButton)
55 ShowModulesDialog.setTabOrder(self.filterButton, self.modulesList)
56
57 def retranslateUi(self, ShowModulesDialog):
58 _translate = QtCore.QCoreApplication.translate
59 ShowModulesDialog.setWindowTitle(_translate("ShowModulesDialog", "Available Modules"))
60 self.label.setText(_translate("ShowModulesDialog", "Filter:"))
61 self.filterEdit.setToolTip(_translate("ShowModulesDialog", "Enter a string used to filter the list below."))
62 self.filterEdit.setPlaceholderText(_translate("ShowModulesDialog", "Enter Filter String"))
63 self.filterButton.setToolTip(_translate("ShowModulesDialog", "Press to apply the entered filter."))
64 self.modulesList.setSortingEnabled(False)

eric ide

mercurial