|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/WebBrowser/Download/DownloadManager.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_DownloadManager(object): |
|
13 def setupUi(self, DownloadManager): |
|
14 DownloadManager.setObjectName("DownloadManager") |
|
15 DownloadManager.resize(600, 400) |
|
16 DownloadManager.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(DownloadManager) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.downloadsView = EricTableView(parent=DownloadManager) |
|
20 self.downloadsView.setObjectName("downloadsView") |
|
21 self.gridLayout.addWidget(self.downloadsView, 0, 0, 1, 3) |
|
22 self.horizontalLayout_2 = QtWidgets.QHBoxLayout() |
|
23 self.horizontalLayout_2.setObjectName("horizontalLayout_2") |
|
24 self.cleanupButton = QtWidgets.QPushButton(parent=DownloadManager) |
|
25 self.cleanupButton.setEnabled(False) |
|
26 self.cleanupButton.setAutoDefault(False) |
|
27 self.cleanupButton.setObjectName("cleanupButton") |
|
28 self.horizontalLayout_2.addWidget(self.cleanupButton) |
|
29 spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) |
|
30 self.horizontalLayout_2.addItem(spacerItem) |
|
31 self.gridLayout.addLayout(self.horizontalLayout_2, 1, 0, 1, 1) |
|
32 self.infoLabel = QtWidgets.QLabel(parent=DownloadManager) |
|
33 self.infoLabel.setText("") |
|
34 self.infoLabel.setObjectName("infoLabel") |
|
35 self.gridLayout.addWidget(self.infoLabel, 1, 1, 1, 1) |
|
36 self.horizontalLayout = QtWidgets.QHBoxLayout() |
|
37 self.horizontalLayout.setObjectName("horizontalLayout") |
|
38 spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) |
|
39 self.horizontalLayout.addItem(spacerItem1) |
|
40 self.buttonBox = QtWidgets.QDialogButtonBox(parent=DownloadManager) |
|
41 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
42 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
43 self.buttonBox.setObjectName("buttonBox") |
|
44 self.horizontalLayout.addWidget(self.buttonBox) |
|
45 self.gridLayout.addLayout(self.horizontalLayout, 1, 2, 1, 1) |
|
46 |
|
47 self.retranslateUi(DownloadManager) |
|
48 self.buttonBox.rejected.connect(DownloadManager.close) # type: ignore |
|
49 QtCore.QMetaObject.connectSlotsByName(DownloadManager) |
|
50 DownloadManager.setTabOrder(self.downloadsView, self.cleanupButton) |
|
51 DownloadManager.setTabOrder(self.cleanupButton, self.buttonBox) |
|
52 |
|
53 def retranslateUi(self, DownloadManager): |
|
54 _translate = QtCore.QCoreApplication.translate |
|
55 DownloadManager.setWindowTitle(_translate("DownloadManager", "Download Manager")) |
|
56 self.cleanupButton.setToolTip(_translate("DownloadManager", "Press to clean up the list of downloads")) |
|
57 self.cleanupButton.setText(_translate("DownloadManager", "Clear List")) |
|
58 from eric7.EricWidgets.EricTableView import EricTableView |