00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_MSGERRORBASE_H
00011 #define UI_MSGERRORBASE_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/QFrame>
00019 #include <QtGui/QHBoxLayout>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QPushButton>
00022 #include <QtGui/QSpacerItem>
00023 #include <QtGui/QTextEdit>
00024 #include <QtGui/QVBoxLayout>
00025 #include <Qt3Support/Q3MimeSourceFactory>
00026
00027 class Ui_msgErrorBase
00028 {
00029 public:
00030 QVBoxLayout *vboxLayout;
00031 QLabel *m_mensaje;
00032 QFrame *m_framedetalles;
00033 QHBoxLayout *hboxLayout;
00034 QTextEdit *m_detalles;
00035 QSpacerItem *spacerItem;
00036 QHBoxLayout *hboxLayout1;
00037 QSpacerItem *spacerItem1;
00038 QPushButton *pushButton2;
00039 QPushButton *pushButton1;
00040
00041 void setupUi(QDialog *msgErrorBase)
00042 {
00043 msgErrorBase->setObjectName(QString::fromUtf8("msgErrorBase"));
00044 vboxLayout = new QVBoxLayout(msgErrorBase);
00045 vboxLayout->setSpacing(5);
00046 vboxLayout->setMargin(5);
00047 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00048 m_mensaje = new QLabel(msgErrorBase);
00049 m_mensaje->setObjectName(QString::fromUtf8("m_mensaje"));
00050
00051 vboxLayout->addWidget(m_mensaje);
00052
00053 m_framedetalles = new QFrame(msgErrorBase);
00054 m_framedetalles->setObjectName(QString::fromUtf8("m_framedetalles"));
00055 m_framedetalles->setFrameShape(QFrame::StyledPanel);
00056 m_framedetalles->setFrameShadow(QFrame::Raised);
00057 hboxLayout = new QHBoxLayout(m_framedetalles);
00058 hboxLayout->setSpacing(5);
00059 hboxLayout->setMargin(5);
00060 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00061 m_detalles = new QTextEdit(m_framedetalles);
00062 m_detalles->setObjectName(QString::fromUtf8("m_detalles"));
00063
00064 hboxLayout->addWidget(m_detalles);
00065
00066
00067 vboxLayout->addWidget(m_framedetalles);
00068
00069 spacerItem = new QSpacerItem(21, 16, QSizePolicy::Minimum, QSizePolicy::Expanding);
00070
00071 vboxLayout->addItem(spacerItem);
00072
00073 hboxLayout1 = new QHBoxLayout();
00074 hboxLayout1->setSpacing(5);
00075 hboxLayout1->setMargin(0);
00076 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00077 spacerItem1 = new QSpacerItem(261, 21, QSizePolicy::Expanding, QSizePolicy::Minimum);
00078
00079 hboxLayout1->addItem(spacerItem1);
00080
00081 pushButton2 = new QPushButton(msgErrorBase);
00082 pushButton2->setObjectName(QString::fromUtf8("pushButton2"));
00083 pushButton2->setCheckable(true);
00084
00085 hboxLayout1->addWidget(pushButton2);
00086
00087 pushButton1 = new QPushButton(msgErrorBase);
00088 pushButton1->setObjectName(QString::fromUtf8("pushButton1"));
00089
00090 hboxLayout1->addWidget(pushButton1);
00091
00092
00093 vboxLayout->addLayout(hboxLayout1);
00094
00095
00096 retranslateUi(msgErrorBase);
00097
00098 QSize size(462, 209);
00099 size = size.expandedTo(msgErrorBase->minimumSizeHint());
00100 msgErrorBase->resize(size);
00101
00102 QObject::connect(pushButton1, SIGNAL(clicked()), msgErrorBase, SLOT(accept()));
00103 QObject::connect(pushButton2, SIGNAL(toggled(bool)), m_framedetalles, SLOT(setShown(bool)));
00104
00105 QMetaObject::connectSlotsByName(msgErrorBase);
00106 }
00107
00108 void retranslateUi(QDialog *msgErrorBase)
00109 {
00110 msgErrorBase->setWindowTitle(QApplication::translate("msgErrorBase", "Mensaje", 0, QApplication::UnicodeUTF8));
00111 m_mensaje->setText(QString());
00112 pushButton2->setText(QApplication::translate("msgErrorBase", "&Detalles", 0, QApplication::UnicodeUTF8));
00113 pushButton1->setText(QApplication::translate("msgErrorBase", "&Cerrar", 0, QApplication::UnicodeUTF8));
00114 Q_UNUSED(msgErrorBase);
00115 }
00116
00117 };
00118
00119 namespace Ui {
00120 class msgErrorBase: public Ui_msgErrorBase {};
00121 }
00122
00123 #endif // UI_MSGERRORBASE_H