|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/MultiProject/PropertiesDialog.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_PropertiesDialog(object): |
|
13 def setupUi(self, PropertiesDialog): |
|
14 PropertiesDialog.setObjectName("PropertiesDialog") |
|
15 PropertiesDialog.resize(530, 227) |
|
16 PropertiesDialog.setSizeGripEnabled(True) |
|
17 self.vboxlayout = QtWidgets.QVBoxLayout(PropertiesDialog) |
|
18 self.vboxlayout.setObjectName("vboxlayout") |
|
19 self.gridlayout = QtWidgets.QGridLayout() |
|
20 self.gridlayout.setObjectName("gridlayout") |
|
21 self.descriptionLabel = QtWidgets.QLabel(parent=PropertiesDialog) |
|
22 self.descriptionLabel.setAlignment(QtCore.Qt.AlignmentFlag.AlignTop) |
|
23 self.descriptionLabel.setObjectName("descriptionLabel") |
|
24 self.gridlayout.addWidget(self.descriptionLabel, 0, 0, 1, 1) |
|
25 self.descriptionEdit = EricSpellCheckedTextEdit(parent=PropertiesDialog) |
|
26 self.descriptionEdit.setTabChangesFocus(True) |
|
27 self.descriptionEdit.setAcceptRichText(False) |
|
28 self.descriptionEdit.setObjectName("descriptionEdit") |
|
29 self.gridlayout.addWidget(self.descriptionEdit, 0, 1, 1, 1) |
|
30 self.vboxlayout.addLayout(self.gridlayout) |
|
31 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PropertiesDialog) |
|
32 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
33 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
34 self.buttonBox.setObjectName("buttonBox") |
|
35 self.vboxlayout.addWidget(self.buttonBox) |
|
36 self.descriptionLabel.setBuddy(self.descriptionEdit) |
|
37 |
|
38 self.retranslateUi(PropertiesDialog) |
|
39 self.buttonBox.accepted.connect(PropertiesDialog.accept) # type: ignore |
|
40 self.buttonBox.rejected.connect(PropertiesDialog.reject) # type: ignore |
|
41 QtCore.QMetaObject.connectSlotsByName(PropertiesDialog) |
|
42 PropertiesDialog.setTabOrder(self.descriptionEdit, self.buttonBox) |
|
43 |
|
44 def retranslateUi(self, PropertiesDialog): |
|
45 _translate = QtCore.QCoreApplication.translate |
|
46 PropertiesDialog.setWindowTitle(_translate("PropertiesDialog", "Multiproject Properties")) |
|
47 self.descriptionLabel.setText(_translate("PropertiesDialog", "&Description:")) |
|
48 self.descriptionEdit.setToolTip(_translate("PropertiesDialog", "Enter description")) |
|
49 self.descriptionEdit.setWhatsThis(_translate("PropertiesDialog", "<b>Description</b>\n" |
|
50 "<p>Enter a short description for the multiproject.</p>")) |
|
51 from eric7.EricWidgets.EricSpellCheckedTextEdit import EricSpellCheckedTextEdit |