-
Notifications
You must be signed in to change notification settings - Fork 12
/
Ui_qgswpsbookmarks.py
55 lines (48 loc) · 2.6 KB
/
Ui_qgswpsbookmarks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'qgswpsbookmarks.ui'
#
# Created by: PyQt5 UI code generator 5.15.0
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_Bookmarks(object):
def setupUi(self, Bookmarks):
Bookmarks.setObjectName("Bookmarks")
Bookmarks.resize(753, 422)
self.gridLayout = QtWidgets.QGridLayout(Bookmarks)
self.gridLayout.setObjectName("gridLayout")
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.gridLayout.addLayout(self.horizontalLayout_2, 0, 0, 1, 1)
self.treeWidget = QtWidgets.QTreeWidget(Bookmarks)
self.treeWidget.setColumnCount(3)
self.treeWidget.setObjectName("treeWidget")
self.treeWidget.header().setDefaultSectionSize(250)
self.gridLayout.addWidget(self.treeWidget, 1, 0, 1, 1)
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_3.addItem(spacerItem)
self.btnRemove = QtWidgets.QPushButton(Bookmarks)
self.btnRemove.setObjectName("btnRemove")
self.horizontalLayout_3.addWidget(self.btnRemove)
self.btnClose = QtWidgets.QPushButton(Bookmarks)
self.btnClose.setObjectName("btnClose")
self.horizontalLayout_3.addWidget(self.btnClose)
self.btnOK = QtWidgets.QPushButton(Bookmarks)
self.btnOK.setObjectName("btnOK")
self.horizontalLayout_3.addWidget(self.btnOK)
self.gridLayout.addLayout(self.horizontalLayout_3, 2, 0, 1, 1)
self.retranslateUi(Bookmarks)
QtCore.QMetaObject.connectSlotsByName(Bookmarks)
def retranslateUi(self, Bookmarks):
_translate = QtCore.QCoreApplication.translate
Bookmarks.setWindowTitle(_translate("Bookmarks", "WPS-Bookmarks"))
self.treeWidget.setSortingEnabled(True)
self.treeWidget.headerItem().setText(0, _translate("Bookmarks", "Service"))
self.treeWidget.headerItem().setText(1, _translate("Bookmarks", "Identifier"))
self.treeWidget.headerItem().setText(2, _translate("Bookmarks", "URL"))
self.btnRemove.setText(_translate("Bookmarks", "Remove"))
self.btnClose.setText(_translate("Bookmarks", "Close"))
self.btnOK.setText(_translate("Bookmarks", "Run"))