1 /********************************************************************************
2 ** Form generated from reading UI file 'Dialog_with_Buttons_Right.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 DIALOG_WITH_BUTTONS_RIGHT_H
10 #define DIALOG_WITH_BUTTONS_RIGHT_H
11 
12 #include <QtCore/QVariant>
13 #include <QtGui/QAction>
14 #include <QtGui/QApplication>
15 #include <QtGui/QButtonGroup>
16 #include <QtGui/QDialog>
17 #include <QtGui/QDialogButtonBox>
18 #include <QtGui/QHeaderView>
19 
20 QT_BEGIN_NAMESPACE
21 
22 class Ui_Dialog
23 {
24 public:
25     QDialogButtonBox *buttonBox;
26 
setupUi(QDialog * Dialog)27     void setupUi(QDialog *Dialog)
28     {
29         if (Dialog->objectName().isEmpty())
30             Dialog->setObjectName(QString::fromUtf8("Dialog"));
31         Dialog->resize(400, 300);
32         buttonBox = new QDialogButtonBox(Dialog);
33         buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
34         buttonBox->setGeometry(QRect(290, 20, 81, 241));
35         buttonBox->setOrientation(Qt::Vertical);
36         buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
37 
38         retranslateUi(Dialog);
39         QObject::connect(buttonBox, SIGNAL(accepted()), Dialog, SLOT(accept()));
40         QObject::connect(buttonBox, SIGNAL(rejected()), Dialog, SLOT(reject()));
41 
42         QMetaObject::connectSlotsByName(Dialog);
43     } // setupUi
44 
retranslateUi(QDialog * Dialog)45     void retranslateUi(QDialog *Dialog)
46     {
47         Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", 0, QApplication::UnicodeUTF8));
48     } // retranslateUi
49 
50 };
51 
52 namespace Ui {
53     class Dialog: public Ui_Dialog {};
54 } // namespace Ui
55 
56 QT_END_NAMESPACE
57 
58 #endif // DIALOG_WITH_BUTTONS_RIGHT_H
59