00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_DATOSBASE_H
00011 #define UI_DATOSBASE_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/QGroupBox>
00020 #include <QtGui/QHBoxLayout>
00021 #include <QtGui/QLabel>
00022 #include <QtGui/QPushButton>
00023 #include <QtGui/QSpacerItem>
00024 #include "busquedafecha.h"
00025
00026 class Ui_datosBase
00027 {
00028 public:
00029 QGridLayout *gridLayout;
00030 QGroupBox *groupBox;
00031 QGridLayout *gridLayout1;
00032 QLabel *label;
00033 BusquedaFecha *mui_ejercicioActual_fechaBalance;
00034 QGroupBox *groupBox_2;
00035 QGridLayout *gridLayout2;
00036 QLabel *label_3;
00037 BusquedaFecha *mui_ejercicioAnterior_fechaBalance;
00038 QSpacerItem *spacerItem;
00039 QHBoxLayout *hboxLayout;
00040 QSpacerItem *spacerItem1;
00041 QPushButton *mui_aceptar;
00042 QPushButton *mui_cancelar;
00043
00044 void setupUi(QDialog *datosBase)
00045 {
00046 datosBase->setObjectName(QString::fromUtf8("datosBase"));
00047 gridLayout = new QGridLayout(datosBase);
00048 gridLayout->setSpacing(5);
00049 gridLayout->setMargin(5);
00050 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
00051 groupBox = new QGroupBox(datosBase);
00052 groupBox->setObjectName(QString::fromUtf8("groupBox"));
00053 gridLayout1 = new QGridLayout(groupBox);
00054 gridLayout1->setSpacing(6);
00055 gridLayout1->setMargin(9);
00056 gridLayout1->setObjectName(QString::fromUtf8("gridLayout1"));
00057 label = new QLabel(groupBox);
00058 label->setObjectName(QString::fromUtf8("label"));
00059 label->setFrameShape(QFrame::NoFrame);
00060
00061 gridLayout1->addWidget(label, 0, 0, 1, 1);
00062
00063 mui_ejercicioActual_fechaBalance = new BusquedaFecha(groupBox);
00064 mui_ejercicioActual_fechaBalance->setObjectName(QString::fromUtf8("mui_ejercicioActual_fechaBalance"));
00065
00066 gridLayout1->addWidget(mui_ejercicioActual_fechaBalance, 0, 1, 1, 1);
00067
00068
00069 gridLayout->addWidget(groupBox, 0, 0, 1, 1);
00070
00071 groupBox_2 = new QGroupBox(datosBase);
00072 groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
00073 gridLayout2 = new QGridLayout(groupBox_2);
00074 gridLayout2->setSpacing(6);
00075 gridLayout2->setMargin(9);
00076 gridLayout2->setObjectName(QString::fromUtf8("gridLayout2"));
00077 label_3 = new QLabel(groupBox_2);
00078 label_3->setObjectName(QString::fromUtf8("label_3"));
00079 label_3->setFrameShape(QFrame::NoFrame);
00080
00081 gridLayout2->addWidget(label_3, 0, 0, 1, 1);
00082
00083 mui_ejercicioAnterior_fechaBalance = new BusquedaFecha(groupBox_2);
00084 mui_ejercicioAnterior_fechaBalance->setObjectName(QString::fromUtf8("mui_ejercicioAnterior_fechaBalance"));
00085
00086 gridLayout2->addWidget(mui_ejercicioAnterior_fechaBalance, 0, 1, 1, 1);
00087
00088
00089 gridLayout->addWidget(groupBox_2, 1, 0, 1, 1);
00090
00091 spacerItem = new QSpacerItem(441, 31, QSizePolicy::Minimum, QSizePolicy::Expanding);
00092
00093 gridLayout->addItem(spacerItem, 2, 0, 1, 1);
00094
00095 hboxLayout = new QHBoxLayout();
00096 hboxLayout->setSpacing(5);
00097 hboxLayout->setMargin(0);
00098 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00099 spacerItem1 = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
00100
00101 hboxLayout->addItem(spacerItem1);
00102
00103 mui_aceptar = new QPushButton(datosBase);
00104 mui_aceptar->setObjectName(QString::fromUtf8("mui_aceptar"));
00105
00106 hboxLayout->addWidget(mui_aceptar);
00107
00108 mui_cancelar = new QPushButton(datosBase);
00109 mui_cancelar->setObjectName(QString::fromUtf8("mui_cancelar"));
00110
00111 hboxLayout->addWidget(mui_cancelar);
00112
00113
00114 gridLayout->addLayout(hboxLayout, 3, 0, 1, 1);
00115
00116
00117 retranslateUi(datosBase);
00118
00119 QSize size(459, 210);
00120 size = size.expandedTo(datosBase->minimumSizeHint());
00121 datosBase->resize(size);
00122
00123
00124 QMetaObject::connectSlotsByName(datosBase);
00125 }
00126
00127 void retranslateUi(QDialog *datosBase)
00128 {
00129 datosBase->setWindowTitle(QApplication::translate("datosBase", "Datos para generar el balance", 0, QApplication::UnicodeUTF8));
00130 groupBox->setTitle(QApplication::translate("datosBase", "Ejercicio actual:", 0, QApplication::UnicodeUTF8));
00131 label->setText(QApplication::translate("datosBase", "Fecha balance:", 0, QApplication::UnicodeUTF8));
00132 groupBox_2->setTitle(QApplication::translate("datosBase", "Ejercicio anterior:", 0, QApplication::UnicodeUTF8));
00133 label_3->setText(QApplication::translate("datosBase", "Fecha balance:", 0, QApplication::UnicodeUTF8));
00134 mui_aceptar->setText(QApplication::translate("datosBase", "&Aceptar", 0, QApplication::UnicodeUTF8));
00135 mui_cancelar->setText(QApplication::translate("datosBase", "&Cancelar", 0, QApplication::UnicodeUTF8));
00136 Q_UNUSED(datosBase);
00137 }
00138
00139 };
00140
00141 namespace Ui {
00142 class datosBase: public Ui_datosBase {};
00143 }
00144
00145 #endif // UI_DATOSBASE_H