/********************************************************************************
** Form generated from reading UI file 'About.ui'
**
** Created by: Qt User Interface Compiler version 5.12.3
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_ABOUT_H
#define UI_ABOUT_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QFrame>
#include <QtWidgets/QLabel>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_About
{
public:
QVBoxLayout *verticalLayout;
QFrame *frame;
QLabel *appURL;
QLabel *appIcon;
QLabel *appName;
QLabel *appVer;
QFrame *frame_2;
QPushButton *okayButton;
QLabel *label_5;
void setupUi(QDialog *About)
{
if (About->objectName().isEmpty())
About->setObjectName(QString::fromUtf8("About"));
About->resize(500, 310);
QSizePolicy sizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
sizePolicy.setHorizontalStretch(0);
sizePolicy.setVerticalStretch(0);
sizePolicy.setHeightForWidth(About->sizePolicy().hasHeightForWidth());
About->setSizePolicy(sizePolicy);
About->setMinimumSize(QSize(500, 310));
About->setMaximumSize(QSize(500, 310));
About->setSizeGripEnabled(false);
verticalLayout = new QVBoxLayout(About);
verticalLayout->setSpacing(0);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setContentsMargins(0, 0, 0, 0);
frame = new QFrame(About);
frame->setObjectName(QString::fromUtf8("frame"));
QPalette palette;
QBrush brush(QColor(255, 255, 255, 255));
brush.setStyle(Qt::SolidPattern);
palette.setBrush(QPalette::Active, QPalette::Button, brush);
palette.setBrush(QPalette::Active, QPalette::Base, brush);
palette.setBrush(QPalette::Active, QPalette::Window, brush);
palette.setBrush(QPalette::Inactive, QPalette::Button, brush);
palette.setBrush(QPalette::Inactive, QPalette::Base, brush);
palette.setBrush(QPalette::Inactive, QPalette::Window, brush);
palette.setBrush(QPalette::Disabled, QPalette::Button, brush);
palette.setBrush(QPalette::Disabled, QPalette::Base, brush);
palette.setBrush(QPalette::Disabled, QPalette::Window, brush);
frame->setPalette(palette);
frame->setAutoFillBackground(true);
frame->setFrameShape(QFrame::StyledPanel);
frame->setFrameShadow(QFrame::Plain);
appURL = new QLabel(frame);
appURL->setObjectName(QString::fromUtf8("appURL"));
appURL->setGeometry(QRect(20, 100, 251, 20));
appIcon = new QLabel(frame);
appIcon->setObjectName(QString::fromUtf8("appIcon"));
appIcon->setGeometry(QRect(360, 20, 121, 111));
appIcon->setScaledContents(true);
appIcon->setAlignment(Qt::AlignCenter);
appName = new QLabel(frame);
appName->setObjectName(QString::fromUtf8("appName"));
appName->setGeometry(QRect(20, 30, 211, 31));
QFont font;
font.setPointSize(20);
font.setBold(true);
font.setWeight(75);
appName->setFont(font);
appVer = new QLabel(frame);
appVer->setObjectName(QString::fromUtf8("appVer"));
appVer->setGeometry(QRect(20, 80, 161, 16));
verticalLayout->addWidget(frame);
frame_2 = new QFrame(About);
frame_2->setObjectName(QString::fromUtf8("frame_2"));
QPalette palette1;
palette1.setBrush(QPalette::Active, QPalette::Button, brush);
palette1.setBrush(QPalette::Active, QPalette::Base, brush);
palette1.setBrush(QPalette::Active, QPalette::Window, brush);
palette1.setBrush(QPalette::Inactive, QPalette::Button, brush);
palette1.setBrush(QPalette::Inactive, QPalette::Base, brush);
palette1.setBrush(QPalette::Inactive, QPalette::Window, brush);
palette1.setBrush(QPalette::Disabled, QPalette::Button, brush);
palette1.setBrush(QPalette::Disabled, QPalette::Base, brush);
palette1.setBrush(QPalette::Disabled, QPalette::Window, brush);
frame_2->setPalette(palette1);
frame_2->setAutoFillBackground(false);
frame_2->setFrameShape(QFrame::StyledPanel);
frame_2->setFrameShadow(QFrame::Raised);
okayButton = new QPushButton(frame_2);
okayButton->setObjectName(QString::fromUtf8("okayButton"));
okayButton->setGeometry(QRect(390, 120, 91, 23));
label_5 = new QLabel(frame_2);
label_5->setObjectName(QString::fromUtf8("label_5"));
label_5->setGeometry(QRect(20, 10, 461, 121));
label_5->raise();
okayButton->raise();
verticalLayout->addWidget(frame_2);
retranslateUi(About);
QObject::connect(okayButton, SIGNAL(clicked()), About, SLOT(accept()));
QMetaObject::connectSlotsByName(About);
} // setupUi
void retranslateUi(QDialog *About)
{
About->setWindowTitle(QApplication::translate("About", "About", nullptr));
appURL->setText(QApplication::translate("About", "<html><head/><body><p><a href=\"http://url.to.application/\"><span style=\" text-decoration: underline; color:#0000ff;\">http://url.to.application/</span></a></p></body></html>", nullptr));
appIcon->setText(QApplication::translate("About", "AppIcon", nullptr));
appName->setText(QApplication::translate("About", "AppName", nullptr));
appVer->setText(QApplication::translate("About", "AppVer", nullptr));
okayButton->setText(QApplication::translate("About", "OK", nullptr));
label_5->setText(QApplication::translate("About", "<html><head/><body><p>Copyright (c) 2015 John Ryland / Subflexion. All Rights Reserved.</p><p><span style=\" color:#5a5a5a;\">This software is protected by copyright law and international treaties.</span></p><p><span style=\" color:#5a5a5a;\">By using this software you agree to the terms and conditions specified in</span><br/><span style=\" color:#5a5a5a;\">the License Agreement.</span></p><p><a href=\"http://sdfdsf/\"><span style=\" text-decoration: underline; color:#0000ff;\">Acknowledgements & Licenses</span></a> <a href=\"http://sfsdf/\"><span style=\" text-decoration: underline; color:#0000ff;\">EULA</span></a></p></body></html>", nullptr));
} // retranslateUi
};
namespace Ui {
class About: public Ui_About {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_ABOUT_H