00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_REDIMENSIONARMAPA_H
00011 #define UI_REDIMENSIONARMAPA_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/QDialogButtonBox>
00019 #include <QtGui/QHeaderView>
00020
00021 QT_BEGIN_NAMESPACE
00022
00023 class Ui_Dialog
00024 {
00025 public:
00026 QDialogButtonBox *buttonBox;
00027
00028 void setupUi(QDialog *Dialog)
00029 {
00030 if (Dialog->objectName().isEmpty())
00031 Dialog->setObjectName(QString::fromUtf8("Dialog"));
00032 Dialog->resize(400, 388);
00033 buttonBox = new QDialogButtonBox(Dialog);
00034 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
00035 buttonBox->setGeometry(QRect(40, 340, 341, 32));
00036 buttonBox->setOrientation(Qt::Horizontal);
00037 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
00038
00039 retranslateUi(Dialog);
00040 QObject::connect(buttonBox, SIGNAL(accepted()), Dialog, SLOT(accept()));
00041 QObject::connect(buttonBox, SIGNAL(rejected()), Dialog, SLOT(reject()));
00042
00043 QMetaObject::connectSlotsByName(Dialog);
00044 }
00045
00046 void retranslateUi(QDialog *Dialog)
00047 {
00048 Dialog->setWindowTitle(QApplication::translate("Dialog", "Dialog", 0, QApplication::UnicodeUTF8));
00049 }
00050
00051 };
00052
00053 namespace Ui {
00054 class Dialog: public Ui_Dialog {};
00055 }
00056
00057 QT_END_NAMESPACE
00058
00059 #endif // UI_REDIMENSIONARMAPA_H