src/eric7/QtHelpInterface/Ui_QtHelpDocumentationSelectionDialog.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/QtHelpInterface/QtHelpDocumentationSelectionDialog.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_QtHelpDocumentationSelectionDialog(object):
13 def setupUi(self, QtHelpDocumentationSelectionDialog):
14 QtHelpDocumentationSelectionDialog.setObjectName("QtHelpDocumentationSelectionDialog")
15 QtHelpDocumentationSelectionDialog.resize(450, 500)
16 QtHelpDocumentationSelectionDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(QtHelpDocumentationSelectionDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=QtHelpDocumentationSelectionDialog)
20 self.label.setObjectName("label")
21 self.verticalLayout.addWidget(self.label)
22 self.documentationList = QtWidgets.QTreeWidget(parent=QtHelpDocumentationSelectionDialog)
23 self.documentationList.setAlternatingRowColors(True)
24 self.documentationList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
25 self.documentationList.setAllColumnsShowFocus(True)
26 self.documentationList.setObjectName("documentationList")
27 self.documentationList.headerItem().setText(0, "1")
28 self.documentationList.header().setVisible(False)
29 self.verticalLayout.addWidget(self.documentationList)
30 self.horizontalLayout = QtWidgets.QHBoxLayout()
31 self.horizontalLayout.setObjectName("horizontalLayout")
32 self.deleteButton = QtWidgets.QPushButton(parent=QtHelpDocumentationSelectionDialog)
33 self.deleteButton.setObjectName("deleteButton")
34 self.horizontalLayout.addWidget(self.deleteButton)
35 self.deleteCategoryButton = QtWidgets.QPushButton(parent=QtHelpDocumentationSelectionDialog)
36 self.deleteCategoryButton.setObjectName("deleteCategoryButton")
37 self.horizontalLayout.addWidget(self.deleteCategoryButton)
38 self.deleteAllButton = QtWidgets.QPushButton(parent=QtHelpDocumentationSelectionDialog)
39 self.deleteAllButton.setObjectName("deleteAllButton")
40 self.horizontalLayout.addWidget(self.deleteAllButton)
41 spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
42 self.horizontalLayout.addItem(spacerItem)
43 self.verticalLayout.addLayout(self.horizontalLayout)
44 self.buttonBox = QtWidgets.QDialogButtonBox(parent=QtHelpDocumentationSelectionDialog)
45 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
46 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close|QtWidgets.QDialogButtonBox.StandardButton.Ok)
47 self.buttonBox.setObjectName("buttonBox")
48 self.verticalLayout.addWidget(self.buttonBox)
49
50 self.retranslateUi(QtHelpDocumentationSelectionDialog)
51 self.buttonBox.accepted.connect(QtHelpDocumentationSelectionDialog.accept) # type: ignore
52 self.buttonBox.rejected.connect(QtHelpDocumentationSelectionDialog.reject) # type: ignore
53 QtCore.QMetaObject.connectSlotsByName(QtHelpDocumentationSelectionDialog)
54 QtHelpDocumentationSelectionDialog.setTabOrder(self.documentationList, self.deleteButton)
55 QtHelpDocumentationSelectionDialog.setTabOrder(self.deleteButton, self.deleteCategoryButton)
56 QtHelpDocumentationSelectionDialog.setTabOrder(self.deleteCategoryButton, self.deleteAllButton)
57
58 def retranslateUi(self, QtHelpDocumentationSelectionDialog):
59 _translate = QtCore.QCoreApplication.translate
60 QtHelpDocumentationSelectionDialog.setWindowTitle(_translate("QtHelpDocumentationSelectionDialog", "QtHelp Documentations"))
61 self.label.setText(_translate("QtHelpDocumentationSelectionDialog", "Select the documentation files to be installed:"))
62 self.documentationList.setSortingEnabled(True)
63 self.deleteButton.setToolTip(_translate("QtHelpDocumentationSelectionDialog", "Press to delete the selected documentation sets"))
64 self.deleteButton.setText(_translate("QtHelpDocumentationSelectionDialog", "Delete"))
65 self.deleteCategoryButton.setToolTip(_translate("QtHelpDocumentationSelectionDialog", "Press to delete the selected category"))
66 self.deleteCategoryButton.setText(_translate("QtHelpDocumentationSelectionDialog", "Delete Categories"))
67 self.deleteAllButton.setToolTip(_translate("QtHelpDocumentationSelectionDialog", "Press to delete all entries"))
68 self.deleteAllButton.setText(_translate("QtHelpDocumentationSelectionDialog", "Delete All"))

eric ide

mercurial