|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/WebBrowser/Tools/WebIconDialog.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_WebIconDialog(object): |
|
13 def setupUi(self, WebIconDialog): |
|
14 WebIconDialog.setObjectName("WebIconDialog") |
|
15 WebIconDialog.resize(550, 600) |
|
16 WebIconDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(WebIconDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.gridLayout = QtWidgets.QGridLayout() |
|
20 self.gridLayout.setObjectName("gridLayout") |
|
21 self.iconsList = QtWidgets.QListWidget(parent=WebIconDialog) |
|
22 self.iconsList.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.CustomContextMenu) |
|
23 self.iconsList.setAlternatingRowColors(True) |
|
24 self.iconsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection) |
|
25 self.iconsList.setIconSize(QtCore.QSize(22, 22)) |
|
26 self.iconsList.setObjectName("iconsList") |
|
27 self.gridLayout.addWidget(self.iconsList, 0, 0, 3, 1) |
|
28 self.removeButton = QtWidgets.QPushButton(parent=WebIconDialog) |
|
29 self.removeButton.setObjectName("removeButton") |
|
30 self.gridLayout.addWidget(self.removeButton, 0, 1, 1, 1) |
|
31 self.removeAllButton = QtWidgets.QPushButton(parent=WebIconDialog) |
|
32 self.removeAllButton.setObjectName("removeAllButton") |
|
33 self.gridLayout.addWidget(self.removeAllButton, 1, 1, 1, 1) |
|
34 spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
35 self.gridLayout.addItem(spacerItem, 2, 1, 1, 1) |
|
36 self.verticalLayout.addLayout(self.gridLayout) |
|
37 self.buttonBox = QtWidgets.QDialogButtonBox(parent=WebIconDialog) |
|
38 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
39 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
40 self.buttonBox.setObjectName("buttonBox") |
|
41 self.verticalLayout.addWidget(self.buttonBox) |
|
42 |
|
43 self.retranslateUi(WebIconDialog) |
|
44 self.buttonBox.accepted.connect(WebIconDialog.accept) # type: ignore |
|
45 self.buttonBox.rejected.connect(WebIconDialog.reject) # type: ignore |
|
46 QtCore.QMetaObject.connectSlotsByName(WebIconDialog) |
|
47 |
|
48 def retranslateUi(self, WebIconDialog): |
|
49 _translate = QtCore.QCoreApplication.translate |
|
50 WebIconDialog.setWindowTitle(_translate("WebIconDialog", "Favicons")) |
|
51 self.iconsList.setSortingEnabled(True) |
|
52 self.removeButton.setToolTip(_translate("WebIconDialog", "Press to remove the selected entries")) |
|
53 self.removeButton.setText(_translate("WebIconDialog", "&Remove")) |
|
54 self.removeAllButton.setToolTip(_translate("WebIconDialog", "Press to remove all entries")) |
|
55 self.removeAllButton.setText(_translate("WebIconDialog", "Remove &All")) |