source: mmcs/ui_formViewMatrix.h

Last change on this file 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: 4.1 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'formViewMatrix.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_FORMVIEWMATRIX_H
10#define UI_FORMVIEWMATRIX_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QAction>
14#include <QtWidgets/QApplication>
15#include <QtWidgets/QButtonGroup>
16#include <QtWidgets/QComboBox>
17#include <QtWidgets/QGroupBox>
18#include <QtWidgets/QHeaderView>
19#include <QtWidgets/QPushButton>
20#include <QtWidgets/QStackedWidget>
21#include <QtWidgets/QTabWidget>
22#include <QtWidgets/QTableView>
23#include <QtWidgets/QWidget>
24
25QT_BEGIN_NAMESPACE
26
27class Ui_FormMatrixView
28{
29public:
30    QTableView *tableView;
31    QGroupBox *Cuentas;
32    QComboBox *comboBox;
33    QStackedWidget *accountsStack;
34    QWidget *page;
35    QWidget *page_2;
36    QPushButton *loadButton;
37    QTabWidget *tabWidget;
38    QWidget *tab_3;
39    QWidget *tab_4;
40
41    void setupUi(QWidget *FormMatrixView)
42    {
43        if (FormMatrixView->objectName().isEmpty())
44            FormMatrixView->setObjectName(QStringLiteral("FormMatrixView"));
45        FormMatrixView->resize(945, 627);
46        tableView = new QTableView(FormMatrixView);
47        tableView->setObjectName(QStringLiteral("tableView"));
48        tableView->setGeometry(QRect(20, 60, 701, 501));
49        tableView->setEditTriggers(QAbstractItemView::DoubleClicked);
50        tableView->setShowGrid(true);
51        tableView->horizontalHeader()->setCascadingSectionResizes(false);
52        Cuentas = new QGroupBox(FormMatrixView);
53        Cuentas->setObjectName(QStringLiteral("Cuentas"));
54        Cuentas->setGeometry(QRect(750, 70, 181, 451));
55        Cuentas->setAutoFillBackground(false);
56        Cuentas->setFlat(false);
57        Cuentas->setCheckable(false);
58        comboBox = new QComboBox(Cuentas);
59        comboBox->setObjectName(QStringLiteral("comboBox"));
60        comboBox->setGeometry(QRect(10, 30, 161, 27));
61        accountsStack = new QStackedWidget(Cuentas);
62        accountsStack->setObjectName(QStringLiteral("accountsStack"));
63        accountsStack->setGeometry(QRect(10, 60, 133, 49));
64        page = new QWidget();
65        page->setObjectName(QStringLiteral("page"));
66        accountsStack->addWidget(page);
67        page_2 = new QWidget();
68        page_2->setObjectName(QStringLiteral("page_2"));
69        accountsStack->addWidget(page_2);
70        loadButton = new QPushButton(FormMatrixView);
71        loadButton->setObjectName(QStringLiteral("loadButton"));
72        loadButton->setGeometry(QRect(760, 500, 161, 51));
73        tabWidget = new QTabWidget(FormMatrixView);
74        tabWidget->setObjectName(QStringLiteral("tabWidget"));
75        tabWidget->setGeometry(QRect(0, 0, 941, 581));
76        tab_3 = new QWidget();
77        tab_3->setObjectName(QStringLiteral("tab_3"));
78        tabWidget->addTab(tab_3, QString());
79        tab_4 = new QWidget();
80        tab_4->setObjectName(QStringLiteral("tab_4"));
81        tabWidget->addTab(tab_4, QString());
82        tabWidget->raise();
83        tableView->raise();
84        Cuentas->raise();
85        loadButton->raise();
86
87        retranslateUi(FormMatrixView);
88
89        tabWidget->setCurrentIndex(0);
90
91
92        QMetaObject::connectSlotsByName(FormMatrixView);
93    } // setupUi
94
95    void retranslateUi(QWidget *FormMatrixView)
96    {
97        FormMatrixView->setWindowTitle(QApplication::translate("FormMatrixView", "MatrixView", 0));
98        Cuentas->setTitle(QApplication::translate("FormMatrixView", "Cuentas", 0));
99        loadButton->setText(QApplication::translate("FormMatrixView", "Finalizar Carga", 0));
100        tabWidget->setTabText(tabWidget->indexOf(tab_3), QApplication::translate("FormMatrixView", "Tab 1", 0));
101        tabWidget->setTabText(tabWidget->indexOf(tab_4), QApplication::translate("FormMatrixView", "Tab 2", 0));
102    } // retranslateUi
103
104};
105
106namespace Ui {
107    class FormMatrixView: public Ui_FormMatrixView {};
108} // namespace Ui
109
110QT_END_NAMESPACE
111
112#endif // UI_FORMVIEWMATRIX_H
Note: See TracBrowser for help on using the repository browser.