-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGUI_license.py
38 lines (32 loc) · 2.75 KB
/
GUI_license.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'license.ui'
#
# Created by: PyQt5 UI code generator 5.8.2
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_license(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(818, 128)
MainWindow.setMinimumSize(QtCore.QSize(818, 128))
MainWindow.setMaximumSize(QtCore.QSize(818, 128))
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.textBrowser = QtWidgets.QTextBrowser(self.centralwidget)
self.textBrowser.setGeometry(QtCore.QRect(-2, -2, 821, 131))
self.textBrowser.setObjectName("textBrowser")
MainWindow.setCentralWidget(self.centralwidget)
self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
_translate = QtCore.QCoreApplication.translate
MainWindow.setWindowTitle(_translate("MainWindow", "License"))
self.textBrowser.setHtml(_translate("MainWindow", "<!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:\'.SF NS Text\'; font-size:13pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:30px; margin-bottom:15px; margin-left:15px; margin-right:15px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'sans-serif\'; font-size:xx-large; font-weight:600; color:#000000;\">License</span></p>\n"
"<p style=\" margin-top:15px; margin-bottom:15px; margin-left:15px; margin-right:15px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'sans-serif\'; font-size:14pt; font-style:italic; color:#000000;\">LAF </span><span style=\" font-family:\'sans-serif\'; font-size:14pt; color:#000000;\">is subject the following license: GNU Lesser General Public License (LGPL).</span></p>\n"
"<p style=\" margin-top:15px; margin-bottom:15px; margin-left:15px; margin-right:15px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-family:\'sans-serif\'; font-size:14pt; color:#000000;\">More info: </span><a href=\"https://www.gnu.org/licenses/lgpl-3.0.en.html\"><span style=\" text-decoration: underline; color:#0000ff;\">https://www.gnu.org/licenses/lgpl-3.0.en.html</span></a></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; font-size:14pt; text-decoration: underline; color:#0000ff;\"><br /></p></body></html>"))