MobileRT  1.0
A multi platform C++ CPU progressive Ray Tracer.
ui_about.h
Go to the documentation of this file.
1 /********************************************************************************
2 ** Form generated from reading UI file 'about.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 4.8.7
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_ABOUT_H
10 #define UI_ABOUT_H
11 
12 #include <QtCore/QVariant>
13 #include <QAction>
14 #include <QApplication>
15 #include <QButtonGroup>
16 #include <QDialog>
17 #include <QDialogButtonBox>
18 #include <QHeaderView>
19 #include <QLabel>
20 
21 QT_BEGIN_NAMESPACE
22 
23 class Ui_About
24 {
25 public:
26  QDialogButtonBox *buttonBox;
27  QLabel *label;
28 
29  void setupUi(QDialog *About)
30  {
31  if (About->objectName().isEmpty())
32  About->setObjectName(QString::fromUtf8("About"));
33  About->resize(500, 300);
34  buttonBox = new QDialogButtonBox(About);
35  buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
36  buttonBox->setGeometry(QRect(30, 240, 341, 32));
37  buttonBox->setOrientation(Qt::Horizontal);
38  buttonBox->setStandardButtons(QDialogButtonBox::Ok);
39  label = new QLabel(About);
40  label->setObjectName(QString::fromUtf8("label"));
41  label->setGeometry(QRect(10, 90, 481, 81));
42  label->setStyleSheet(QString::fromUtf8(""));
43  label->setTextFormat(Qt::RichText);
44  label->setOpenExternalLinks(false);
45  label->setTextInteractionFlags(Qt::TextBrowserInteraction);
46 
47  retranslateUi(About);
48  QObject::connect(buttonBox, SIGNAL(accepted()), About, SLOT(accept()));
49  QObject::connect(buttonBox, SIGNAL(rejected()), About, SLOT(reject()));
50  QObject::connect(label, SIGNAL(linkActivated(QString)), About, SLOT(open_link(QString)));
51 
52  QMetaObject::connectSlotsByName(About);
53  } // setupUi
54 
55  void retranslateUi(QDialog *About)
56  {
57  About->setWindowTitle(QApplication::translate("About", "About", 0));
58  label->setText(QApplication::translate("About", "<html><head/><body><p>Made by: Tiago <br/><a href=\"https://tiagomssantos.github.io/\"><span style=\" font-weight:600; text-decoration: underline; color:#0000ff;\">https://tiagomssantos.github.io/</span></a></p></body></html>", 0));
59  } // retranslateUi
60 
61 };
62 
63 namespace Ui {
64  class About: public Ui_About {};
65 } // namespace Ui
66 
67 QT_END_NAMESPACE
68 
69 #endif // UI_ABOUT_H
void retranslateUi(QDialog *About)
Definition: ui_about.h:55
QLabel * label
Definition: ui_about.h:27
void setupUi(QDialog *About)
Definition: ui_about.h:29
Definition: ui_about.h:63
QDialogButtonBox * buttonBox
Definition: ui_about.h:26
Definition: about.h:10
Definition: ui_about.h:23
Definition: ui_about.h:64