-
Notifications
You must be signed in to change notification settings - Fork 1
/
alertdialog.py
42 lines (35 loc) · 2.69 KB
/
alertdialog.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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'alertdialog.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_alertDialog(object):
def setupUi(self, alertDialog):
alertDialog.setObjectName("alertDialog")
alertDialog.resize(340, 235)
alertDialog.setMinimumSize(QtCore.QSize(340, 235))
alertDialog.setMaximumSize(QtCore.QSize(340, 235))
self.aboutOKButton = QtWidgets.QPushButton(alertDialog)
self.aboutOKButton.setGeometry(QtCore.QRect(130, 170, 71, 31))
font = QtGui.QFont()
font.setPointSize(10)
self.aboutOKButton.setFont(font)
self.aboutOKButton.setObjectName("aboutOKButton")
self.textLabel = QtWidgets.QLabel(alertDialog)
self.textLabel.setGeometry(QtCore.QRect(20, 40, 301, 131))
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.retranslateUi(alertDialog)
QtCore.QMetaObject.connectSlotsByName(alertDialog)
def retranslateUi(self, alertDialog):
_translate = QtCore.QCoreApplication.translate
alertDialog.setWindowTitle(_translate("alertDialog", "ALERT!"))
self.aboutOKButton.setText(_translate("alertDialog", "OK"))
self.textLabel.setText(_translate("alertDialog", "<html><head/><body><p align=\"center\"><span style=\" font-size:10pt; font-weight:600;\">Build 0.6.0 (Beta) of Graphical Dice Roll has</span></p><p align=\"center\"><span style=\" font-size:10pt; font-weight:600; color:#ff0000;\">EXPIRED</span><span style=\" font-size:10pt; font-weight:600;\">.</span></p><p align=\"center\"><span style=\" font-size:10pt;\">Check for a newer release from </span><a href=\"https://github.com/ShawnDriscoll/Graphical-Dice-Roll-Results\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">GitHub</span></a><span style=\" font-size:10pt;\">.</span><br/><span style=\" font-size:10pt;\">For support, email </span><a href=\"mailto:shawndriscoll@hotmail.com?subject=Graphical Dice Roll 0.6.0 [EXPIRED Beta]\"><span style=\" font-size:10pt; text-decoration: underline; color:#0000ff;\">shawndriscoll@hotmail.com</span></a></p><p align=\"center\"><span style=\" font-size:10pt;\">Thank you for participating.</span></p></body></html>"))