source: mmcs/ui_formMatrixView.h @ f473a7f

Last change on this file since f473a7f was 68e57de, checked in by rboet <rudmanmrrod@…>, 9 years ago

solucionado una dependencia de recurso para la imagen de cargar matriz

  • Property mode set to 100755
File size: 4.2 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'formMatrixView.ui'
3**
4** Created: Mon Jun 22 16:27:52 2015
5**      by: Qt User Interface Compiler version 4.8.2
6**
7** WARNING! All changes made in this file will be lost when recompiling UI file!
8********************************************************************************/
9
10#ifndef UI_FORMMATRIXVIEW_H
11#define UI_FORMMATRIXVIEW_H
12
13#include <QtCore/QVariant>
14#include <QtGui/QAction>
15#include <QtGui/QApplication>
16#include <QtGui/QButtonGroup>
17#include <QtGui/QComboBox>
18#include <QtGui/QGroupBox>
19#include <QtGui/QHeaderView>
20#include <QtGui/QPushButton>
21#include <QtGui/QStackedWidget>
22#include <QtGui/QTabWidget>
23#include <QtGui/QTableView>
24#include <QtGui/QWidget>
25
26QT_BEGIN_NAMESPACE
27
28class Ui_FormMatrixView
29{
30public:
31    QTableView *tableView;
32    QGroupBox *Cuentas;
33    QComboBox *comboBox;
34    QStackedWidget *accountsStack;
35    QWidget *page;
36    QWidget *page_2;
37    QPushButton *loadButton;
38    QTabWidget *tabWidget;
39    QWidget *tab_3;
40    QWidget *tab_4;
41
42    void setupUi(QWidget *FormMatrixView)
43    {
44        if (FormMatrixView->objectName().isEmpty())
45            FormMatrixView->setObjectName(QString::fromUtf8("FormMatrixView"));
46        FormMatrixView->resize(945, 627);
47        tableView = new QTableView(FormMatrixView);
48        tableView->setObjectName(QString::fromUtf8("tableView"));
49        tableView->setGeometry(QRect(20, 60, 701, 501));
50        tableView->setEditTriggers(QAbstractItemView::DoubleClicked);
51        tableView->setShowGrid(true);
52        tableView->horizontalHeader()->setCascadingSectionResizes(false);
53        Cuentas = new QGroupBox(FormMatrixView);
54        Cuentas->setObjectName(QString::fromUtf8("Cuentas"));
55        Cuentas->setGeometry(QRect(750, 70, 181, 451));
56        Cuentas->setAutoFillBackground(false);
57        Cuentas->setFlat(false);
58        Cuentas->setCheckable(false);
59        comboBox = new QComboBox(Cuentas);
60        comboBox->setObjectName(QString::fromUtf8("comboBox"));
61        comboBox->setGeometry(QRect(10, 30, 161, 27));
62        accountsStack = new QStackedWidget(Cuentas);
63        accountsStack->setObjectName(QString::fromUtf8("accountsStack"));
64        accountsStack->setGeometry(QRect(10, 60, 133, 49));
65        page = new QWidget();
66        page->setObjectName(QString::fromUtf8("page"));
67        accountsStack->addWidget(page);
68        page_2 = new QWidget();
69        page_2->setObjectName(QString::fromUtf8("page_2"));
70        accountsStack->addWidget(page_2);
71        loadButton = new QPushButton(FormMatrixView);
72        loadButton->setObjectName(QString::fromUtf8("loadButton"));
73        loadButton->setGeometry(QRect(760, 500, 161, 51));
74        tabWidget = new QTabWidget(FormMatrixView);
75        tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
76        tabWidget->setGeometry(QRect(0, 0, 941, 581));
77        tab_3 = new QWidget();
78        tab_3->setObjectName(QString::fromUtf8("tab_3"));
79        tabWidget->addTab(tab_3, QString());
80        loadButton->raise();
81        tab_4 = new QWidget();
82        tab_4->setObjectName(QString::fromUtf8("tab_4"));
83        tabWidget->addTab(tab_4, QString());
84        tabWidget->raise();
85        tableView->raise();
86        Cuentas->raise();
87        loadButton->raise();
88
89        retranslateUi(FormMatrixView);
90
91        QMetaObject::connectSlotsByName(FormMatrixView);
92    } // setupUi
93
94    void retranslateUi(QWidget *FormMatrixView)
95    {
96        FormMatrixView->setWindowTitle(QApplication::translate("FormMatrixView", "MatrixView", 0, QApplication::UnicodeUTF8));
97        Cuentas->setTitle(QApplication::translate("FormMatrixView", "Cuentas", 0, QApplication::UnicodeUTF8));
98        loadButton->setText(QApplication::translate("FormMatrixView", "Finalizar Carga", 0, QApplication::UnicodeUTF8));
99        tabWidget->setTabText(tabWidget->indexOf(tab_3), QApplication::translate("FormMatrixView", "Tab 1", 0, QApplication::UnicodeUTF8));
100        tabWidget->setTabText(tabWidget->indexOf(tab_4), QApplication::translate("FormMatrixView", "Tab 2", 0, QApplication::UnicodeUTF8));
101    } // retranslateUi
102
103};
104
105namespace Ui {
106    class FormMatrixView: public Ui_FormMatrixView {};
107} // namespace Ui
108
109QT_END_NAMESPACE
110
111#endif // UI_FORMMATRIXVIEW_H
Note: See TracBrowser for help on using the repository browser.