-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_QDialogEd.py
More file actions
63 lines (56 loc) · 3.1 KB
/
Copy pathui_QDialogEd.py
File metadata and controls
63 lines (56 loc) · 3.1 KB
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
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'QDialogEd.ui'
#
# Created by: PyQt5 UI code generator 5.15.9
#
# 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_Dialog(object):
def setupUi(self, Dialog):
Dialog.setObjectName("Dialog")
Dialog.resize(640, 479)
self.widget = QtWidgets.QWidget(Dialog)
self.widget.setGeometry(QtCore.QRect(0, 0, 641, 481))
self.widget.setStyleSheet("background-color: rgb(148, 177, 255);\n"
"background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(90, 120, 199, 246), stop:1 rgba(255, 255, 255, 255));")
self.widget.setObjectName("widget")
self.widget_8 = QtWidgets.QWidget(self.widget)
self.widget_8.setGeometry(QtCore.QRect(0, 50, 641, 431))
self.widget_8.setStyleSheet("background-color: rgb(228, 228, 228);")
self.widget_8.setObjectName("widget_8")
self.fileList = QtWidgets.QListWidget(self.widget_8)
self.fileList.setGeometry(QtCore.QRect(90, 0, 551, 391))
self.fileList.setObjectName("fileList")
self.deleteButton = QtWidgets.QPushButton(self.widget)
self.deleteButton.setGeometry(QtCore.QRect(530, 20, 75, 23))
self.deleteButton.setStyleSheet("background-color: rgb(197, 213, 170);")
self.deleteButton.setObjectName("deleteButton")
self.addButton = QtWidgets.QPushButton(self.widget)
self.addButton.setGeometry(QtCore.QRect(440, 20, 75, 23))
self.addButton.setStyleSheet("\n"
"background-color: rgb(199, 215, 171);")
self.addButton.setObjectName("addButton")
self.label_4 = QtWidgets.QLabel(self.widget)
self.label_4.setGeometry(QtCore.QRect(100, 10, 201, 31))
self.label_4.setStyleSheet("font: 87 italic 14pt \"Segoe UI Black\";")
self.label_4.setObjectName("label_4")
self.widget_9 = QtWidgets.QWidget(self.widget)
self.widget_9.setGeometry(QtCore.QRect(0, 0, 91, 441))
self.widget_9.setStyleSheet("background-color: rgb(88, 81, 139);\n"
"background-color: qlineargradient(spread:reflect, x1:0, y1:0, x2:1, y2:0.04, stop:0 rgba(88, 81, 139, 234), stop:1 rgba(99, 128, 202, 255));")
self.widget_9.setObjectName("widget_9")
self.openButton = QtWidgets.QPushButton(self.widget_9)
self.openButton.setGeometry(QtCore.QRect(10, 60, 75, 23))
self.openButton.setStyleSheet("\n"
"background-color: rgb(199, 215, 171);")
self.openButton.setObjectName("openButton")
self.retranslateUi(Dialog)
QtCore.QMetaObject.connectSlotsByName(Dialog)
def retranslateUi(self, Dialog):
_translate = QtCore.QCoreApplication.translate
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
self.deleteButton.setText(_translate("Dialog", "Delete"))
self.addButton.setText(_translate("Dialog", "Add"))
self.label_4.setText(_translate("Dialog", "E - B O O K S"))
self.openButton.setText(_translate("Dialog", "Open"))