diff -r 7aa41173b44b -r 5d3a5a05114e src/eric7/MultiProject/Ui_PropertiesDialog.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/eric7/MultiProject/Ui_PropertiesDialog.py Fri Jun 07 10:05:06 2024 +0200 @@ -0,0 +1,51 @@ +# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MultiProject/PropertiesDialog.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_PropertiesDialog(object): + def setupUi(self, PropertiesDialog): + PropertiesDialog.setObjectName("PropertiesDialog") + PropertiesDialog.resize(530, 227) + PropertiesDialog.setSizeGripEnabled(True) + self.vboxlayout = QtWidgets.QVBoxLayout(PropertiesDialog) + self.vboxlayout.setObjectName("vboxlayout") + self.gridlayout = QtWidgets.QGridLayout() + self.gridlayout.setObjectName("gridlayout") + self.descriptionLabel = QtWidgets.QLabel(parent=PropertiesDialog) + self.descriptionLabel.setAlignment(QtCore.Qt.AlignmentFlag.AlignTop) + self.descriptionLabel.setObjectName("descriptionLabel") + self.gridlayout.addWidget(self.descriptionLabel, 0, 0, 1, 1) + self.descriptionEdit = EricSpellCheckedTextEdit(parent=PropertiesDialog) + self.descriptionEdit.setTabChangesFocus(True) + self.descriptionEdit.setAcceptRichText(False) + self.descriptionEdit.setObjectName("descriptionEdit") + self.gridlayout.addWidget(self.descriptionEdit, 0, 1, 1, 1) + self.vboxlayout.addLayout(self.gridlayout) + self.buttonBox = QtWidgets.QDialogButtonBox(parent=PropertiesDialog) + self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) + self.buttonBox.setObjectName("buttonBox") + self.vboxlayout.addWidget(self.buttonBox) + self.descriptionLabel.setBuddy(self.descriptionEdit) + + self.retranslateUi(PropertiesDialog) + self.buttonBox.accepted.connect(PropertiesDialog.accept) # type: ignore + self.buttonBox.rejected.connect(PropertiesDialog.reject) # type: ignore + QtCore.QMetaObject.connectSlotsByName(PropertiesDialog) + PropertiesDialog.setTabOrder(self.descriptionEdit, self.buttonBox) + + def retranslateUi(self, PropertiesDialog): + _translate = QtCore.QCoreApplication.translate + PropertiesDialog.setWindowTitle(_translate("PropertiesDialog", "Multiproject Properties")) + self.descriptionLabel.setText(_translate("PropertiesDialog", "&Description:")) + self.descriptionEdit.setToolTip(_translate("PropertiesDialog", "Enter description")) + self.descriptionEdit.setWhatsThis(_translate("PropertiesDialog", "<b>Description</b>\n" +"<p>Enter a short description for the multiproject.</p>")) +from eric7.EricWidgets.EricSpellCheckedTextEdit import EricSpellCheckedTextEdit