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