1 /********************************************************************************
2 ** Form generated from reading UI file 'Widget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 4.8.5
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef WIDGET_H
10 #define WIDGET_H
11 
12 #include <QtCore/QVariant>
13 #include <QtGui/QAction>
14 #include <QtGui/QApplication>
15 #include <QtGui/QButtonGroup>
16 #include <QtGui/QGroupBox>
17 #include <QtGui/QHeaderView>
18 #include <QtGui/QLabel>
19 #include <QtGui/QPushButton>
20 #include <QtGui/QVBoxLayout>
21 #include <QtGui/QWidget>
22 
23 QT_BEGIN_NAMESPACE
24 
25 class Ui_Form
26 {
27 public:
28     QVBoxLayout *vboxLayout;
29     QLabel *Alabel;
30     QGroupBox *groupBox;
31     QPushButton *pushButton;
32 
setupUi(QWidget * Form)33     void setupUi(QWidget *Form)
34     {
35         if (Form->objectName().isEmpty())
36             Form->setObjectName(QString::fromUtf8("Form"));
37         Form->resize(400, 300);
38         vboxLayout = new QVBoxLayout(Form);
39         vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
40         Alabel = new QLabel(Form);
41         Alabel->setObjectName(QString::fromUtf8("Alabel"));
42 
43         vboxLayout->addWidget(Alabel);
44 
45         groupBox = new QGroupBox(Form);
46         groupBox->setObjectName(QString::fromUtf8("groupBox"));
47 
48         vboxLayout->addWidget(groupBox);
49 
50         pushButton = new QPushButton(Form);
51         pushButton->setObjectName(QString::fromUtf8("pushButton"));
52 
53         vboxLayout->addWidget(pushButton);
54 
55 
56         retranslateUi(Form);
57 
58         QMetaObject::connectSlotsByName(Form);
59     } // setupUi
60 
retranslateUi(QWidget * Form)61     void retranslateUi(QWidget *Form)
62     {
63         Form->setWindowTitle(QApplication::translate("Form", "Form", 0, QApplication::UnicodeUTF8));
64         Alabel->setText(QApplication::translate("Form", "A label.\n"
65 "One new line.\n"
66 "Another new line.\n"
67 "Last line.", 0, QApplication::UnicodeUTF8));
68         groupBox->setTitle(QApplication::translate("Form", "A Group Box", 0, QApplication::UnicodeUTF8));
69         pushButton->setText(QApplication::translate("Form", "PushButton", 0, QApplication::UnicodeUTF8));
70     } // retranslateUi
71 
72 };
73 
74 namespace Ui {
75     class Form: public Ui_Form {};
76 } // namespace Ui
77 
78 QT_END_NAMESPACE
79 
80 #endif // WIDGET_H
81