source: mmcs/ui_formexportreport.h @ e62517a

Last change on this file since e62517a was e62517a, checked in by rudmanmrrod <rudman22@…>, 8 years ago

Migrado el proyecto a la versión 5 de Qt, agregado primer boceto del PDF

  • Property mode set to 100644
File size: 5.3 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'formexportreport.ui'
3**
4** Created by: Qt User Interface Compiler version 5.3.2
5**
6** WARNING! All changes made in this file will be lost when recompiling UI file!
7********************************************************************************/
8
9#ifndef UI_FORMEXPORTREPORT_H
10#define UI_FORMEXPORTREPORT_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QAction>
14#include <QtWidgets/QApplication>
15#include <QtWidgets/QButtonGroup>
16#include <QtWidgets/QGridLayout>
17#include <QtWidgets/QHeaderView>
18#include <QtWidgets/QLabel>
19#include <QtWidgets/QLineEdit>
20#include <QtWidgets/QPushButton>
21#include <QtWidgets/QSpacerItem>
22#include <QtWidgets/QWidget>
23
24QT_BEGIN_NAMESPACE
25
26class Ui_FormExportReport
27{
28public:
29    QGridLayout *gridLayout_2;
30    QGridLayout *gridLayout;
31    QLabel *label;
32    QSpacerItem *verticalSpacer;
33    QLabel *label_2;
34    QPushButton *ButtonGenerar;
35    QLineEdit *lineEdit;
36    QPushButton *ButtonCancelar;
37    QPushButton *ButtonCargar;
38    QSpacerItem *verticalSpacer_2;
39
40    void setupUi(QWidget *FormExportReport)
41    {
42        if (FormExportReport->objectName().isEmpty())
43            FormExportReport->setObjectName(QStringLiteral("FormExportReport"));
44        FormExportReport->setWindowModality(Qt::WindowModal);
45        FormExportReport->resize(728, 354);
46        gridLayout_2 = new QGridLayout(FormExportReport);
47        gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
48        gridLayout = new QGridLayout();
49        gridLayout->setObjectName(QStringLiteral("gridLayout"));
50        label = new QLabel(FormExportReport);
51        label->setObjectName(QStringLiteral("label"));
52        QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
53        sizePolicy.setHorizontalStretch(0);
54        sizePolicy.setVerticalStretch(0);
55        sizePolicy.setHeightForWidth(label->sizePolicy().hasHeightForWidth());
56        label->setSizePolicy(sizePolicy);
57        QFont font;
58        font.setPointSize(14);
59        label->setFont(font);
60        label->setAlignment(Qt::AlignCenter);
61
62        gridLayout->addWidget(label, 0, 0, 1, 6);
63
64        verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
65
66        gridLayout->addItem(verticalSpacer, 3, 1, 1, 1);
67
68        label_2 = new QLabel(FormExportReport);
69        label_2->setObjectName(QStringLiteral("label_2"));
70        QSizePolicy sizePolicy1(QSizePolicy::Fixed, QSizePolicy::Preferred);
71        sizePolicy1.setHorizontalStretch(0);
72        sizePolicy1.setVerticalStretch(0);
73        sizePolicy1.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth());
74        label_2->setSizePolicy(sizePolicy1);
75
76        gridLayout->addWidget(label_2, 2, 0, 1, 1);
77
78        ButtonGenerar = new QPushButton(FormExportReport);
79        ButtonGenerar->setObjectName(QStringLiteral("ButtonGenerar"));
80        QSizePolicy sizePolicy2(QSizePolicy::Fixed, QSizePolicy::Fixed);
81        sizePolicy2.setHorizontalStretch(0);
82        sizePolicy2.setVerticalStretch(0);
83        sizePolicy2.setHeightForWidth(ButtonGenerar->sizePolicy().hasHeightForWidth());
84        ButtonGenerar->setSizePolicy(sizePolicy2);
85
86        gridLayout->addWidget(ButtonGenerar, 5, 2, 1, 1);
87
88        lineEdit = new QLineEdit(FormExportReport);
89        lineEdit->setObjectName(QStringLiteral("lineEdit"));
90        lineEdit->setReadOnly(true);
91
92        gridLayout->addWidget(lineEdit, 2, 1, 1, 4);
93
94        ButtonCancelar = new QPushButton(FormExportReport);
95        ButtonCancelar->setObjectName(QStringLiteral("ButtonCancelar"));
96        sizePolicy2.setHeightForWidth(ButtonCancelar->sizePolicy().hasHeightForWidth());
97        ButtonCancelar->setSizePolicy(sizePolicy2);
98
99        gridLayout->addWidget(ButtonCancelar, 5, 4, 1, 1);
100
101        ButtonCargar = new QPushButton(FormExportReport);
102        ButtonCargar->setObjectName(QStringLiteral("ButtonCargar"));
103        sizePolicy2.setHeightForWidth(ButtonCargar->sizePolicy().hasHeightForWidth());
104        ButtonCargar->setSizePolicy(sizePolicy2);
105        QIcon icon;
106        icon.addFile(QStringLiteral(":/imgs/folder_blue.png"), QSize(), QIcon::Normal, QIcon::Off);
107        ButtonCargar->setIcon(icon);
108        ButtonCargar->setFlat(true);
109
110        gridLayout->addWidget(ButtonCargar, 2, 5, 1, 1);
111
112        verticalSpacer_2 = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
113
114        gridLayout->addItem(verticalSpacer_2, 1, 1, 1, 1);
115
116
117        gridLayout_2->addLayout(gridLayout, 0, 0, 1, 1);
118
119
120        retranslateUi(FormExportReport);
121
122        QMetaObject::connectSlotsByName(FormExportReport);
123    } // setupUi
124
125    void retranslateUi(QWidget *FormExportReport)
126    {
127        FormExportReport->setWindowTitle(QApplication::translate("FormExportReport", "Exportar Reporte", 0));
128        label->setText(QApplication::translate("FormExportReport", "Guardar Reporte", 0));
129        label_2->setText(QApplication::translate("FormExportReport", "Archivo:", 0));
130        ButtonGenerar->setText(QApplication::translate("FormExportReport", "Generar", 0));
131        ButtonCancelar->setText(QApplication::translate("FormExportReport", "Cancelar", 0));
132        ButtonCargar->setText(QString());
133    } // retranslateUi
134
135};
136
137namespace Ui {
138    class FormExportReport: public Ui_FormExportReport {};
139} // namespace Ui
140
141QT_END_NAMESPACE
142
143#endif // UI_FORMEXPORTREPORT_H
Note: See TracBrowser for help on using the repository browser.