|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ProgramsDialog.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_ProgramsDialog(object): |
|
13 def setupUi(self, ProgramsDialog): |
|
14 ProgramsDialog.setObjectName("ProgramsDialog") |
|
15 ProgramsDialog.resize(700, 570) |
|
16 self.verticalLayout = QtWidgets.QVBoxLayout(ProgramsDialog) |
|
17 self.verticalLayout.setObjectName("verticalLayout") |
|
18 self.programsList = QtWidgets.QTreeWidget(parent=ProgramsDialog) |
|
19 self.programsList.setRootIsDecorated(False) |
|
20 self.programsList.setObjectName("programsList") |
|
21 self.verticalLayout.addWidget(self.programsList) |
|
22 self.horizontalLayout = QtWidgets.QHBoxLayout() |
|
23 self.horizontalLayout.setObjectName("horizontalLayout") |
|
24 self.label = QtWidgets.QLabel(parent=ProgramsDialog) |
|
25 self.label.setObjectName("label") |
|
26 self.horizontalLayout.addWidget(self.label) |
|
27 self.showComboBox = QtWidgets.QComboBox(parent=ProgramsDialog) |
|
28 self.showComboBox.setObjectName("showComboBox") |
|
29 self.horizontalLayout.addWidget(self.showComboBox) |
|
30 self.buttonBox = QtWidgets.QDialogButtonBox(parent=ProgramsDialog) |
|
31 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
32 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
33 self.buttonBox.setObjectName("buttonBox") |
|
34 self.horizontalLayout.addWidget(self.buttonBox) |
|
35 self.verticalLayout.addLayout(self.horizontalLayout) |
|
36 |
|
37 self.retranslateUi(ProgramsDialog) |
|
38 self.buttonBox.accepted.connect(ProgramsDialog.close) # type: ignore |
|
39 self.buttonBox.rejected.connect(ProgramsDialog.close) # type: ignore |
|
40 QtCore.QMetaObject.connectSlotsByName(ProgramsDialog) |
|
41 |
|
42 def retranslateUi(self, ProgramsDialog): |
|
43 _translate = QtCore.QCoreApplication.translate |
|
44 ProgramsDialog.setWindowTitle(_translate("ProgramsDialog", "External Tools")) |
|
45 self.programsList.setSortingEnabled(True) |
|
46 self.programsList.headerItem().setText(0, _translate("ProgramsDialog", "Path")) |
|
47 self.programsList.headerItem().setText(1, _translate("ProgramsDialog", "Version")) |
|
48 self.label.setText(_translate("ProgramsDialog", "Show:")) |
|
49 self.showComboBox.setToolTip(_translate("ProgramsDialog", "Select the kind of tools to show")) |