source: mmcs/ui_tabwidget.h @ e506dab

matrices
Last change on this file since e506dab was 9dd61b1, checked in by rboet <rboet@…>, 9 years ago

Avance del proyecto 60%

  • Property mode set to 100644
File size: 3.8 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'tabwidget.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_TABWIDGET_H
11#define UI_TABWIDGET_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_TabWidget
29{
30public:
31    QWidget *tab;
32    QTableView *tableView;
33    QPushButton *loadButton;
34    QGroupBox *Cuentas;
35    QComboBox *comboBox;
36    QStackedWidget *accountsStack;
37    QWidget *page;
38    QWidget *page_2;
39    QWidget *tab1;
40
41    void setupUi(QTabWidget *TabWidget)
42    {
43        if (TabWidget->objectName().isEmpty())
44            TabWidget->setObjectName(QString::fromUtf8("TabWidget"));
45        TabWidget->resize(918, 565);
46        tab = new QWidget();
47        tab->setObjectName(QString::fromUtf8("tab"));
48        tableView = new QTableView(tab);
49        tableView->setObjectName(QString::fromUtf8("tableView"));
50        tableView->setGeometry(QRect(10, 10, 701, 501));
51        tableView->setEditTriggers(QAbstractItemView::DoubleClicked);
52        tableView->setShowGrid(true);
53        tableView->horizontalHeader()->setCascadingSectionResizes(false);
54        loadButton = new QPushButton(tab);
55        loadButton->setObjectName(QString::fromUtf8("loadButton"));
56        loadButton->setGeometry(QRect(730, 460, 161, 51));
57        Cuentas = new QGroupBox(tab);
58        Cuentas->setObjectName(QString::fromUtf8("Cuentas"));
59        Cuentas->setGeometry(QRect(720, 30, 181, 451));
60        Cuentas->setAutoFillBackground(false);
61        Cuentas->setFlat(false);
62        Cuentas->setCheckable(false);
63        comboBox = new QComboBox(Cuentas);
64        comboBox->setObjectName(QString::fromUtf8("comboBox"));
65        comboBox->setGeometry(QRect(10, 30, 161, 27));
66        accountsStack = new QStackedWidget(Cuentas);
67        accountsStack->setObjectName(QString::fromUtf8("accountsStack"));
68        accountsStack->setGeometry(QRect(10, 60, 133, 49));
69        page = new QWidget();
70        page->setObjectName(QString::fromUtf8("page"));
71        accountsStack->addWidget(page);
72        page_2 = new QWidget();
73        page_2->setObjectName(QString::fromUtf8("page_2"));
74        accountsStack->addWidget(page_2);
75        TabWidget->addTab(tab, QString());
76        tab1 = new QWidget();
77        tab1->setObjectName(QString::fromUtf8("tab1"));
78        TabWidget->addTab(tab1, QString());
79
80        retranslateUi(TabWidget);
81
82        TabWidget->setCurrentIndex(0);
83
84
85        QMetaObject::connectSlotsByName(TabWidget);
86    } // setupUi
87
88    void retranslateUi(QTabWidget *TabWidget)
89    {
90        TabWidget->setWindowTitle(QApplication::translate("TabWidget", "TabWidget", 0, QApplication::UnicodeUTF8));
91        loadButton->setText(QApplication::translate("TabWidget", "Finalizar Carga", 0, QApplication::UnicodeUTF8));
92        Cuentas->setTitle(QApplication::translate("TabWidget", "Cuentas", 0, QApplication::UnicodeUTF8));
93        TabWidget->setTabText(TabWidget->indexOf(tab), QApplication::translate("TabWidget", "Tab 1", 0, QApplication::UnicodeUTF8));
94        TabWidget->setTabText(TabWidget->indexOf(tab1), QApplication::translate("TabWidget", "Tab 2", 0, QApplication::UnicodeUTF8));
95    } // retranslateUi
96
97};
98
99namespace Ui {
100    class TabWidget: public Ui_TabWidget {};
101} // namespace Ui
102
103QT_END_NAMESPACE
104
105#endif // UI_TABWIDGET_H
Note: See TracBrowser for help on using the repository browser.