-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.py
More file actions
62 lines (55 loc) · 4.22 KB
/
Copy pathabout.py
File metadata and controls
62 lines (55 loc) · 4.22 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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'about.ui'
#
# Created by: PyQt5 UI code generator 5.15.7
#
# 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_about_window(object):
def setupUi(self, about_window):
about_window.setObjectName("about_window")
about_window.resize(689, 302)
about_window.setMinimumSize(QtCore.QSize(689, 302))
about_window.setMaximumSize(QtCore.QSize(689, 302))
self.icon = QtWidgets.QLabel(about_window)
self.icon.setGeometry(QtCore.QRect(20, 20, 171, 171))
self.icon.setText("")
self.icon.setPixmap(QtGui.QPixmap("icon/icon.png"))
self.icon.setScaledContents(True)
self.icon.setObjectName("icon")
self.title = QtWidgets.QLabel(about_window)
self.title.setGeometry(QtCore.QRect(200, 20, 463, 51))
font = QtGui.QFont()
font.setPointSize(20)
font.setBold(True)
font.setWeight(75)
self.title.setFont(font)
self.title.setObjectName("title")
self.version = QtWidgets.QLabel(about_window)
self.version.setGeometry(QtCore.QRect(200, 55, 463, 31))
self.version.setObjectName("version")
self.textBrowser = QtWidgets.QTextBrowser(about_window)
self.textBrowser.setGeometry(QtCore.QRect(200, 90, 481, 201))
self.textBrowser.setAutoFillBackground(False)
self.textBrowser.setFrameShape(QtWidgets.QFrame.NoFrame)
self.textBrowser.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.textBrowser.setObjectName("textBrowser")
self.retranslateUi(about_window)
QtCore.QMetaObject.connectSlotsByName(about_window)
def retranslateUi(self, about_window):
_translate = QtCore.QCoreApplication.translate
about_window.setWindowTitle(_translate("about_window", "About"))
self.title.setText(_translate("about_window", "SPO2 Viewer"))
self.version.setText(_translate("about_window", "VERSION PLACEHOLDER + BUILD DATE"))
self.textBrowser.setHtml(_translate("about_window", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'Ubuntu\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">Written by Kevin Williams - 2022</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">WARNING</span>: This program was designed for educational purposes only. This program was not designed or tested for medical purposes and data obtained from this program MUST NOT be used to make medical decisions or diagnosises.</p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /><span style=\" background-color:transparent;\">SPO2 Viewer is intended to interface with the DIYSPO2 sensor. It aims to interpret a SPO2 signal and heart rate from the user. The default calibration table may not be accurate. The calibration table is intended to be built and checked against a calibrated SPO2 sensor to achieve accurate R/SPO2 results.</span></p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">This program is FREE and OPEN SOURCE licensed under GNU GPLv2.</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>"))