-
Notifications
You must be signed in to change notification settings - Fork 1
/
aboutdialog.py
51 lines (44 loc) · 3.23 KB
/
aboutdialog.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'aboutdialog.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_aboutDialog(object):
def setupUi(self, aboutDialog):
aboutDialog.setObjectName("aboutDialog")
aboutDialog.resize(480, 357)
aboutDialog.setMinimumSize(QtCore.QSize(480, 357))
aboutDialog.setMaximumSize(QtCore.QSize(480, 357))
self.aboutOKButton = QtWidgets.QPushButton(aboutDialog)
self.aboutOKButton.setGeometry(QtCore.QRect(380, 320, 75, 23))
self.aboutOKButton.setObjectName("aboutOKButton")
self.bgArtLabel = QtWidgets.QLabel(aboutDialog)
self.bgArtLabel.setGeometry(QtCore.QRect(0, 0, 481, 301))
self.bgArtLabel.setText("")
self.bgArtLabel.setPixmap(QtGui.QPixmap(":/images/sc_dialog.png"))
self.bgArtLabel.setObjectName("bgArtLabel")
self.textLabel = QtWidgets.QLabel(aboutDialog)
self.textLabel.setGeometry(QtCore.QRect(80, 40, 321, 261))
self.textLabel.setTextFormat(QtCore.Qt.RichText)
self.textLabel.setScaledContents(False)
self.textLabel.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignTop)
self.textLabel.setWordWrap(True)
self.textLabel.setOpenExternalLinks(True)
self.textLabel.setObjectName("textLabel")
self.line = QtWidgets.QFrame(aboutDialog)
self.line.setGeometry(QtCore.QRect(80, 200, 321, 20))
self.line.setLineWidth(1)
self.line.setMidLineWidth(0)
self.line.setFrameShape(QtWidgets.QFrame.HLine)
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line.setObjectName("line")
self.retranslateUi(aboutDialog)
QtCore.QMetaObject.connectSlotsByName(aboutDialog)
def retranslateUi(self, aboutDialog):
_translate = QtCore.QCoreApplication.translate
aboutDialog.setWindowTitle(_translate("aboutDialog", "About Graphical Dice Roll"))
self.aboutOKButton.setText(_translate("aboutDialog", "OK"))
self.textLabel.setText(_translate("aboutDialog", "<html><head/><body><p><span style=\" font-weight:600;\">Graphical Dice Roll for Windows 11</span></p><p>Build: 0.6.0 (Beta)</p><p>Produced by Shawn Driscoll. Copyright (C) 2024.</p><p>Get the latest pydice manual at <a href=\"https://pydice.readthedocs.io/en/latest/\"><span style=\" text-decoration: underline; color:#0000ff;\">Read the Docs</span></a><br/>Visit blog at <a href=\"http://shawndriscoll.blogspot.com\"><span style=\" text-decoration: underline; color:#0000ff;\">shawndriscoll.blogspot.com</span></a><br/>For support, email <a href=\"mailto:shawndriscoll@hotmail.com?subject=Graphical Dice Roll 0.6.0 (Beta)\"><span style=\" text-decoration: underline; color:#0000ff;\">shawndriscoll@hotmail.com</span></a></p><p>Qt GUI Toolkit is copyright (C) 2020 The Qt Company Ltd</p><p><br/></p><p>The Traveller game in all forms is owned by Far Future Enterprises. Copyright 1977 - 2024 Far Future Enterprises. Traveller is a registered trademark of Far Future Enterprises.</p></body></html>"))