00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_NUEVAFACTBASE_H
00011 #define UI_NUEVAFACTBASE_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/QGroupBox>
00019 #include <QtGui/QHBoxLayout>
00020 #include <QtGui/QLabel>
00021 #include <QtGui/QLineEdit>
00022 #include <QtGui/QPushButton>
00023 #include <QtGui/QSpacerItem>
00024 #include <QtGui/QVBoxLayout>
00025
00026 class Ui_nuevafactbase
00027 {
00028 public:
00029 QVBoxLayout *vboxLayout;
00030 QGroupBox *groupBox;
00031 QVBoxLayout *vboxLayout1;
00032 QHBoxLayout *hboxLayout;
00033 QLabel *TextLabel1;
00034 QLineEdit *nombreempresa;
00035 QHBoxLayout *hboxLayout1;
00036 QLabel *TextLabel3;
00037 QLineEdit *bdempresa;
00038 QLabel *TextLabel2;
00039 QLineEdit *ejercicioempresa;
00040 QHBoxLayout *hboxLayout2;
00041 QSpacerItem *spacerItem;
00042 QPushButton *PushButton1;
00043 QPushButton *PushButton1_2;
00044
00045 void setupUi(QDialog *nuevafactbase)
00046 {
00047 nuevafactbase->setObjectName(QString::fromUtf8("nuevafactbase"));
00048 nuevafactbase->setMinimumSize(QSize(485, 150));
00049 vboxLayout = new QVBoxLayout(nuevafactbase);
00050 vboxLayout->setSpacing(5);
00051 vboxLayout->setMargin(5);
00052 vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
00053 groupBox = new QGroupBox(nuevafactbase);
00054 groupBox->setObjectName(QString::fromUtf8("groupBox"));
00055 vboxLayout1 = new QVBoxLayout(groupBox);
00056 vboxLayout1->setSpacing(5);
00057 vboxLayout1->setMargin(5);
00058 vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
00059 hboxLayout = new QHBoxLayout();
00060 hboxLayout->setSpacing(6);
00061 hboxLayout->setMargin(0);
00062 hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
00063 TextLabel1 = new QLabel(groupBox);
00064 TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
00065
00066 hboxLayout->addWidget(TextLabel1);
00067
00068 nombreempresa = new QLineEdit(groupBox);
00069 nombreempresa->setObjectName(QString::fromUtf8("nombreempresa"));
00070
00071 hboxLayout->addWidget(nombreempresa);
00072
00073
00074 vboxLayout1->addLayout(hboxLayout);
00075
00076 hboxLayout1 = new QHBoxLayout();
00077 hboxLayout1->setSpacing(6);
00078 hboxLayout1->setMargin(0);
00079 hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
00080 TextLabel3 = new QLabel(groupBox);
00081 TextLabel3->setObjectName(QString::fromUtf8("TextLabel3"));
00082
00083 hboxLayout1->addWidget(TextLabel3);
00084
00085 bdempresa = new QLineEdit(groupBox);
00086 bdempresa->setObjectName(QString::fromUtf8("bdempresa"));
00087
00088 hboxLayout1->addWidget(bdempresa);
00089
00090 TextLabel2 = new QLabel(groupBox);
00091 TextLabel2->setObjectName(QString::fromUtf8("TextLabel2"));
00092
00093 hboxLayout1->addWidget(TextLabel2);
00094
00095 ejercicioempresa = new QLineEdit(groupBox);
00096 ejercicioempresa->setObjectName(QString::fromUtf8("ejercicioempresa"));
00097
00098 hboxLayout1->addWidget(ejercicioempresa);
00099
00100
00101 vboxLayout1->addLayout(hboxLayout1);
00102
00103
00104 vboxLayout->addWidget(groupBox);
00105
00106 hboxLayout2 = new QHBoxLayout();
00107 hboxLayout2->setSpacing(5);
00108 hboxLayout2->setMargin(0);
00109 hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
00110 spacerItem = new QSpacerItem(385, 16, QSizePolicy::Expanding, QSizePolicy::Minimum);
00111
00112 hboxLayout2->addItem(spacerItem);
00113
00114 PushButton1 = new QPushButton(nuevafactbase);
00115 PushButton1->setObjectName(QString::fromUtf8("PushButton1"));
00116
00117 hboxLayout2->addWidget(PushButton1);
00118
00119 PushButton1_2 = new QPushButton(nuevafactbase);
00120 PushButton1_2->setObjectName(QString::fromUtf8("PushButton1_2"));
00121
00122 hboxLayout2->addWidget(PushButton1_2);
00123
00124
00125 vboxLayout->addLayout(hboxLayout2);
00126
00127
00128 retranslateUi(nuevafactbase);
00129
00130 QSize size(485, 150);
00131 size = size.expandedTo(nuevafactbase->minimumSizeHint());
00132 nuevafactbase->resize(size);
00133
00134
00135 QMetaObject::connectSlotsByName(nuevafactbase);
00136 }
00137
00138 void retranslateUi(QDialog *nuevafactbase)
00139 {
00140 nuevafactbase->setWindowTitle(QApplication::translate("nuevafactbase", "Nueva facturaci\303\263n", 0, QApplication::UnicodeUTF8));
00141 groupBox->setTitle(QApplication::translate("nuevafactbase", "Datos de facturaci\303\263n:", 0, QApplication::UnicodeUTF8));
00142 TextLabel1->setText(QApplication::translate("nuevafactbase", "Nombre de la empresa:", 0, QApplication::UnicodeUTF8));
00143 TextLabel3->setText(QApplication::translate("nuevafactbase", "Base de datos:", 0, QApplication::UnicodeUTF8));
00144 TextLabel2->setText(QApplication::translate("nuevafactbase", "Ejercicio:", 0, QApplication::UnicodeUTF8));
00145 PushButton1->setText(QApplication::translate("nuevafactbase", "&Aceptar", 0, QApplication::UnicodeUTF8));
00146 PushButton1_2->setText(QApplication::translate("nuevafactbase", "&Cancelar", 0, QApplication::UnicodeUTF8));
00147 Q_UNUSED(nuevafactbase);
00148 }
00149
00150 };
00151
00152 namespace Ui {
00153 class nuevafactbase: public Ui_nuevafactbase {};
00154 }
00155
00156 #endif // UI_NUEVAFACTBASE_H