src/eric7/PluginManager/Ui_PluginInfoDialog.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/PluginManager/PluginInfoDialog.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_PluginInfoDialog(object):
13 def setupUi(self, PluginInfoDialog):
14 PluginInfoDialog.setObjectName("PluginInfoDialog")
15 PluginInfoDialog.resize(800, 600)
16 PluginInfoDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(PluginInfoDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.label = QtWidgets.QLabel(parent=PluginInfoDialog)
20 self.label.setWordWrap(True)
21 self.label.setObjectName("label")
22 self.vboxlayout.addWidget(self.label)
23 self.pluginList = QtWidgets.QTreeWidget(parent=PluginInfoDialog)
24 self.pluginList.setAlternatingRowColors(True)
25 self.pluginList.setRootIsDecorated(False)
26 self.pluginList.setItemsExpandable(False)
27 self.pluginList.setAllColumnsShowFocus(True)
28 self.pluginList.setObjectName("pluginList")
29 self.vboxlayout.addWidget(self.pluginList)
30 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PluginInfoDialog)
31 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
32 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
33 self.buttonBox.setObjectName("buttonBox")
34 self.vboxlayout.addWidget(self.buttonBox)
35
36 self.retranslateUi(PluginInfoDialog)
37 self.buttonBox.accepted.connect(PluginInfoDialog.accept) # type: ignore
38 self.buttonBox.rejected.connect(PluginInfoDialog.reject) # type: ignore
39 QtCore.QMetaObject.connectSlotsByName(PluginInfoDialog)
40 PluginInfoDialog.setTabOrder(self.pluginList, self.buttonBox)
41
42 def retranslateUi(self, PluginInfoDialog):
43 _translate = QtCore.QCoreApplication.translate
44 PluginInfoDialog.setWindowTitle(_translate("PluginInfoDialog", "Loaded Plugins"))
45 self.label.setText(_translate("PluginInfoDialog", "Double-Click an entry to show detailed info. Plugins with an error are shown in red."))
46 self.pluginList.setWhatsThis(_translate("PluginInfoDialog", "<b>Plugin List</b><p>This lists all loaded plugins. Double-clicking an entry shows more detailed information in a separate dialog.</p>"))
47 self.pluginList.setSortingEnabled(True)
48 self.pluginList.headerItem().setText(0, _translate("PluginInfoDialog", "Module"))
49 self.pluginList.headerItem().setText(1, _translate("PluginInfoDialog", "Name"))
50 self.pluginList.headerItem().setText(2, _translate("PluginInfoDialog", "Version"))
51 self.pluginList.headerItem().setText(3, _translate("PluginInfoDialog", "Autoactivate"))
52 self.pluginList.headerItem().setText(4, _translate("PluginInfoDialog", "Active"))
53 self.pluginList.headerItem().setText(5, _translate("PluginInfoDialog", "Description"))

eric ide

mercurial