00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_DEMOTUTORIALDIALOG_H
00011 #define UI_DEMOTUTORIALDIALOG_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QDialog>
00018 #include <QtGui/QGridLayout>
00019 #include <QtGui/QHBoxLayout>
00020 #include <QtGui/QPushButton>
00021 #include <QtGui/QTextBrowser>
00022
00023 class Ui_DemoTutorialDialogData
00024 {
00025 public:
00026 QGridLayout *gridLayout;
00027 QHBoxLayout *hboxLayout;
00028 QPushButton *cancel_button;
00029 QPushButton *next_button;
00030 QTextBrowser *text_browser;
00031
00032 void setupUi(QDialog *DemoTutorialDialogData)
00033 {
00034 DemoTutorialDialogData->setObjectName(QString::fromUtf8("DemoTutorialDialogData"));
00035 DemoTutorialDialogData->setBaseSize(QSize(100, 100));
00036 DemoTutorialDialogData->setSizeGripEnabled(true);
00037 gridLayout = new QGridLayout(DemoTutorialDialogData);
00038 gridLayout->setSpacing(6);
00039 gridLayout->setMargin(5);
00040 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00041 hboxLayout = new QHBoxLayout();
00042 hboxLayout->setSpacing(6);
00043 hboxLayout->setMargin(0);
00044 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00045 cancel_button = new QPushButton(DemoTutorialDialogData);
00046 cancel_button->setObjectName(QString::fromUtf8("cancel_button"));
00047 cancel_button->setMinimumSize(QSize(0, 30));
00048
00049 hboxLayout->addWidget(cancel_button);
00050
00051 next_button = new QPushButton(DemoTutorialDialogData);
00052 next_button->setObjectName(QString::fromUtf8("next_button"));
00053 next_button->setMinimumSize(QSize(0, 30));
00054
00055 hboxLayout->addWidget(next_button);
00056
00057
00058 gridLayout->addLayout(hboxLayout, 1, 0, 1, 1);
00059
00060 text_browser = new QTextBrowser(DemoTutorialDialogData);
00061 text_browser->setObjectName(QString::fromUtf8("text_browser"));
00062 QSizePolicy sizePolicy(static_cast<QSizePolicy::Policy>(7), static_cast<QSizePolicy::Policy>(7));
00063 sizePolicy.setHorizontalStretch(1);
00064 sizePolicy.setVerticalStretch(1);
00065 sizePolicy.setHeightForWidth(text_browser->sizePolicy().hasHeightForWidth());
00066 text_browser->setSizePolicy(sizePolicy);
00067
00068 gridLayout->addWidget(text_browser, 0, 0, 1, 1);
00069
00070
00071 retranslateUi(DemoTutorialDialogData);
00072
00073 QSize size(311, 375);
00074 size = size.expandedTo(DemoTutorialDialogData->minimumSizeHint());
00075 DemoTutorialDialogData->resize(size);
00076
00077
00078 QMetaObject::connectSlotsByName(DemoTutorialDialogData);
00079 }
00080
00081 void retranslateUi(QDialog *DemoTutorialDialogData)
00082 {
00083 DemoTutorialDialogData->setWindowTitle(QApplication::translate("DemoTutorialDialogData", "Form1", 0, QApplication::UnicodeUTF8));
00084 cancel_button->setText(QApplication::translate("DemoTutorialDialogData", "Cancel", 0, QApplication::UnicodeUTF8));
00085 next_button->setText(QApplication::translate("DemoTutorialDialogData", "Next", 0, QApplication::UnicodeUTF8));
00086 Q_UNUSED(DemoTutorialDialogData);
00087 }
00088
00089 };
00090
00091 namespace Ui {
00092 class DemoTutorialDialogData: public Ui_DemoTutorialDialogData {};
00093 }
00094
00095 #endif // UI_DEMOTUTORIALDIALOG_H