|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/WebBrowser/Bookmarks/BookmarkPropertiesDialog.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_BookmarkPropertiesDialog(object): |
|
13 def setupUi(self, BookmarkPropertiesDialog): |
|
14 BookmarkPropertiesDialog.setObjectName("BookmarkPropertiesDialog") |
|
15 BookmarkPropertiesDialog.resize(500, 250) |
|
16 BookmarkPropertiesDialog.setMinimumSize(QtCore.QSize(500, 0)) |
|
17 BookmarkPropertiesDialog.setMaximumSize(QtCore.QSize(500, 250)) |
|
18 BookmarkPropertiesDialog.setSizeGripEnabled(True) |
|
19 self.gridLayout = QtWidgets.QGridLayout(BookmarkPropertiesDialog) |
|
20 self.gridLayout.setObjectName("gridLayout") |
|
21 self.label_2 = QtWidgets.QLabel(parent=BookmarkPropertiesDialog) |
|
22 self.label_2.setObjectName("label_2") |
|
23 self.gridLayout.addWidget(self.label_2, 0, 0, 1, 1) |
|
24 self.nameEdit = QtWidgets.QLineEdit(parent=BookmarkPropertiesDialog) |
|
25 self.nameEdit.setObjectName("nameEdit") |
|
26 self.gridLayout.addWidget(self.nameEdit, 0, 1, 1, 1) |
|
27 self.addressLabel = QtWidgets.QLabel(parent=BookmarkPropertiesDialog) |
|
28 self.addressLabel.setObjectName("addressLabel") |
|
29 self.gridLayout.addWidget(self.addressLabel, 1, 0, 1, 1) |
|
30 self.addressEdit = QtWidgets.QLineEdit(parent=BookmarkPropertiesDialog) |
|
31 self.addressEdit.setObjectName("addressEdit") |
|
32 self.gridLayout.addWidget(self.addressEdit, 1, 1, 1, 1) |
|
33 self.label = QtWidgets.QLabel(parent=BookmarkPropertiesDialog) |
|
34 self.label.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft|QtCore.Qt.AlignmentFlag.AlignTop) |
|
35 self.label.setObjectName("label") |
|
36 self.gridLayout.addWidget(self.label, 2, 0, 1, 1) |
|
37 self.descriptionEdit = EricSpellCheckedPlainTextEdit(parent=BookmarkPropertiesDialog) |
|
38 self.descriptionEdit.setObjectName("descriptionEdit") |
|
39 self.gridLayout.addWidget(self.descriptionEdit, 2, 1, 1, 1) |
|
40 self.visitedLabel = QtWidgets.QLabel(parent=BookmarkPropertiesDialog) |
|
41 self.visitedLabel.setText("") |
|
42 self.visitedLabel.setObjectName("visitedLabel") |
|
43 self.gridLayout.addWidget(self.visitedLabel, 3, 1, 1, 1) |
|
44 self.buttonBox = QtWidgets.QDialogButtonBox(parent=BookmarkPropertiesDialog) |
|
45 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
46 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
47 self.buttonBox.setObjectName("buttonBox") |
|
48 self.gridLayout.addWidget(self.buttonBox, 4, 0, 1, 2) |
|
49 |
|
50 self.retranslateUi(BookmarkPropertiesDialog) |
|
51 self.buttonBox.accepted.connect(BookmarkPropertiesDialog.accept) # type: ignore |
|
52 self.buttonBox.rejected.connect(BookmarkPropertiesDialog.reject) # type: ignore |
|
53 QtCore.QMetaObject.connectSlotsByName(BookmarkPropertiesDialog) |
|
54 BookmarkPropertiesDialog.setTabOrder(self.nameEdit, self.addressEdit) |
|
55 BookmarkPropertiesDialog.setTabOrder(self.addressEdit, self.descriptionEdit) |
|
56 BookmarkPropertiesDialog.setTabOrder(self.descriptionEdit, self.buttonBox) |
|
57 |
|
58 def retranslateUi(self, BookmarkPropertiesDialog): |
|
59 _translate = QtCore.QCoreApplication.translate |
|
60 BookmarkPropertiesDialog.setWindowTitle(_translate("BookmarkPropertiesDialog", "Bookmark Properties")) |
|
61 self.label_2.setText(_translate("BookmarkPropertiesDialog", "Name:")) |
|
62 self.nameEdit.setToolTip(_translate("BookmarkPropertiesDialog", "Enter the name")) |
|
63 self.addressLabel.setText(_translate("BookmarkPropertiesDialog", "Address:")) |
|
64 self.addressEdit.setToolTip(_translate("BookmarkPropertiesDialog", "Enter the address")) |
|
65 self.label.setText(_translate("BookmarkPropertiesDialog", "Description:")) |
|
66 self.descriptionEdit.setToolTip(_translate("BookmarkPropertiesDialog", "Enter a description")) |
|
67 from eric7.EricWidgets.EricSpellCheckedTextEdit import EricSpellCheckedPlainTextEdit |