--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/eric7/Preferences/Ui_ProgramsDialog.py Fri Jun 07 10:05:06 2024 +0200 @@ -0,0 +1,49 @@ +# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ProgramsDialog.ui' +# +# Created by: PyQt6 UI code generator 6.7.0 +# +# WARNING: Any manual changes made to this file will be lost when pyuic6 is +# run again. Do not edit this file unless you know what you are doing. + + +from PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_ProgramsDialog(object): + def setupUi(self, ProgramsDialog): + ProgramsDialog.setObjectName("ProgramsDialog") + ProgramsDialog.resize(700, 570) + self.verticalLayout = QtWidgets.QVBoxLayout(ProgramsDialog) + self.verticalLayout.setObjectName("verticalLayout") + self.programsList = QtWidgets.QTreeWidget(parent=ProgramsDialog) + self.programsList.setRootIsDecorated(False) + self.programsList.setObjectName("programsList") + self.verticalLayout.addWidget(self.programsList) + self.horizontalLayout = QtWidgets.QHBoxLayout() + self.horizontalLayout.setObjectName("horizontalLayout") + self.label = QtWidgets.QLabel(parent=ProgramsDialog) + self.label.setObjectName("label") + self.horizontalLayout.addWidget(self.label) + self.showComboBox = QtWidgets.QComboBox(parent=ProgramsDialog) + self.showComboBox.setObjectName("showComboBox") + self.horizontalLayout.addWidget(self.showComboBox) + self.buttonBox = QtWidgets.QDialogButtonBox(parent=ProgramsDialog) + self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) + self.buttonBox.setObjectName("buttonBox") + self.horizontalLayout.addWidget(self.buttonBox) + self.verticalLayout.addLayout(self.horizontalLayout) + + self.retranslateUi(ProgramsDialog) + self.buttonBox.accepted.connect(ProgramsDialog.close) # type: ignore + self.buttonBox.rejected.connect(ProgramsDialog.close) # type: ignore + QtCore.QMetaObject.connectSlotsByName(ProgramsDialog) + + def retranslateUi(self, ProgramsDialog): + _translate = QtCore.QCoreApplication.translate + ProgramsDialog.setWindowTitle(_translate("ProgramsDialog", "External Tools")) + self.programsList.setSortingEnabled(True) + self.programsList.headerItem().setText(0, _translate("ProgramsDialog", "Path")) + self.programsList.headerItem().setText(1, _translate("ProgramsDialog", "Version")) + self.label.setText(_translate("ProgramsDialog", "Show:")) + self.showComboBox.setToolTip(_translate("ProgramsDialog", "Select the kind of tools to show"))