6 changed files with 5342 additions and 4440 deletions
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,51 @@
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<ui version="4.0"> |
||||
<class>Details</class> |
||||
<widget class="QDialog" name="Details"> |
||||
<property name="geometry"> |
||||
<rect> |
||||
<x>0</x> |
||||
<y>0</y> |
||||
<width>730</width> |
||||
<height>467</height> |
||||
</rect> |
||||
</property> |
||||
<property name="windowTitle"> |
||||
<string>Mail Notifier</string> |
||||
</property> |
||||
<property name="windowIcon"> |
||||
<iconset resource="../resources.qrc"> |
||||
<normaloff>:/icons/mailbox_empty.png</normaloff>:/icons/mailbox_empty.png</iconset> |
||||
</property> |
||||
<layout class="QVBoxLayout" name="verticalLayout_2"> |
||||
<item> |
||||
<widget class="QPushButton" name="pushButton"> |
||||
<property name="sizePolicy"> |
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> |
||||
<horstretch>0</horstretch> |
||||
<verstretch>0</verstretch> |
||||
</sizepolicy> |
||||
</property> |
||||
<property name="text"> |
||||
<string>Refresh</string> |
||||
</property> |
||||
<property name="icon"> |
||||
<iconset resource="../resources.qrc"> |
||||
<normaloff>:/icons/check_now.png</normaloff>:/icons/check_now.png</iconset> |
||||
</property> |
||||
</widget> |
||||
</item> |
||||
<item> |
||||
<layout class="QHBoxLayout" name="horizontalLayout"> |
||||
<item> |
||||
<widget class="QTableWidget" name="tableWidget"/> |
||||
</item> |
||||
</layout> |
||||
</item> |
||||
</layout> |
||||
</widget> |
||||
<resources> |
||||
<include location="../resources.qrc"/> |
||||
</resources> |
||||
<connections/> |
||||
</ui> |
@ -0,0 +1,48 @@
@@ -0,0 +1,48 @@
|
||||
# -*- coding: utf-8 -*- |
||||
|
||||
# Form implementation generated from reading ui file 'ui/details.ui' |
||||
# |
||||
# Created by: PyQt5 UI code generator 5.6.1.dev1604271126 |
||||
# |
||||
# WARNING! All changes made in this file will be lost! |
||||
|
||||
from PyQt5 import QtCore, QtGui, QtWidgets |
||||
|
||||
class Ui_Details(object): |
||||
def setupUi(self, Details): |
||||
Details.setObjectName("Details") |
||||
Details.resize(730, 467) |
||||
icon = QtGui.QIcon() |
||||
icon.addPixmap(QtGui.QPixmap(":/icons/mailbox_empty.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) |
||||
Details.setWindowIcon(icon) |
||||
self.verticalLayout_2 = QtWidgets.QVBoxLayout(Details) |
||||
self.verticalLayout_2.setObjectName("verticalLayout_2") |
||||
self.pushButton = QtWidgets.QPushButton(Details) |
||||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) |
||||
sizePolicy.setHorizontalStretch(0) |
||||
sizePolicy.setVerticalStretch(0) |
||||
sizePolicy.setHeightForWidth(self.pushButton.sizePolicy().hasHeightForWidth()) |
||||
self.pushButton.setSizePolicy(sizePolicy) |
||||
icon1 = QtGui.QIcon() |
||||
icon1.addPixmap(QtGui.QPixmap(":/icons/check_now.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) |
||||
self.pushButton.setIcon(icon1) |
||||
self.pushButton.setObjectName("pushButton") |
||||
self.verticalLayout_2.addWidget(self.pushButton) |
||||
self.horizontalLayout = QtWidgets.QHBoxLayout() |
||||
self.horizontalLayout.setObjectName("horizontalLayout") |
||||
self.tableWidget = QtWidgets.QTableWidget(Details) |
||||
self.tableWidget.setObjectName("tableWidget") |
||||
self.tableWidget.setColumnCount(0) |
||||
self.tableWidget.setRowCount(0) |
||||
self.horizontalLayout.addWidget(self.tableWidget) |
||||
self.verticalLayout_2.addLayout(self.horizontalLayout) |
||||
|
||||
self.retranslateUi(Details) |
||||
QtCore.QMetaObject.connectSlotsByName(Details) |
||||
|
||||
def retranslateUi(self, Details): |
||||
_translate = QtCore.QCoreApplication.translate |
||||
Details.setWindowTitle(_translate("Details", "Mail Notifier")) |
||||
self.pushButton.setText(_translate("Details", "Refresh")) |
||||
|
||||
import resources_rc |
Loading…
Reference in new issue