source: mmcs/ui_mainwidget.h @ f1bfb70

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

Avance del proyecto 60%

  • Property mode set to 100644
File size: 4.8 KB
Line 
1/********************************************************************************
2** Form generated from reading UI file 'mainwidget.ui'
3**
4** Created: Mon Jun 22 16:40:39 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_MAINWIDGET_H
11#define UI_MAINWIDGET_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/QSpacerItem>
22#include <QtGui/QStackedWidget>
23#include <QtGui/QTabWidget>
24#include <QtGui/QTableView>
25#include <QtGui/QVBoxLayout>
26#include <QtGui/QWidget>
27
28QT_BEGIN_NAMESPACE
29
30class Ui_MainWIdget
31{
32public:
33    QWidget *tab;
34    QTableView *tableView;
35    QWidget *widget;
36    QVBoxLayout *verticalLayout_2;
37    QWidget *widget1;
38    QVBoxLayout *verticalLayout;
39    QGroupBox *Cuentas;
40    QComboBox *comboBox;
41    QStackedWidget *accountsStack;
42    QWidget *page;
43    QWidget *page_2;
44    QSpacerItem *verticalSpacer;
45    QPushButton *loadButton;
46    QWidget *tab1;
47
48    void setupUi(QTabWidget *MainWIdget)
49    {
50        if (MainWIdget->objectName().isEmpty())
51            MainWIdget->setObjectName(QString::fromUtf8("MainWIdget"));
52        MainWIdget->resize(925, 574);
53        tab = new QWidget();
54        tab->setObjectName(QString::fromUtf8("tab"));
55        tableView = new QTableView(tab);
56        tableView->setObjectName(QString::fromUtf8("tableView"));
57        tableView->setGeometry(QRect(10, 20, 701, 501));
58        tableView->setEditTriggers(QAbstractItemView::DoubleClicked);
59        tableView->setShowGrid(true);
60        tableView->horizontalHeader()->setCascadingSectionResizes(false);
61        widget = new QWidget(tab);
62        widget->setObjectName(QString::fromUtf8("widget"));
63        widget->setGeometry(QRect(0, 0, 2, 2));
64        verticalLayout_2 = new QVBoxLayout(widget);
65        verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
66        verticalLayout_2->setContentsMargins(0, 0, 0, 0);
67        widget1 = new QWidget(tab);
68        widget1->setObjectName(QString::fromUtf8("widget1"));
69        widget1->setGeometry(QRect(740, 30, 161, 461));
70        verticalLayout = new QVBoxLayout(widget1);
71        verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
72        verticalLayout->setContentsMargins(0, 0, 0, 0);
73        Cuentas = new QGroupBox(widget1);
74        Cuentas->setObjectName(QString::fromUtf8("Cuentas"));
75        Cuentas->setAutoFillBackground(false);
76        Cuentas->setFlat(false);
77        Cuentas->setCheckable(false);
78        comboBox = new QComboBox(Cuentas);
79        comboBox->setObjectName(QString::fromUtf8("comboBox"));
80        comboBox->setGeometry(QRect(10, 30, 161, 27));
81        accountsStack = new QStackedWidget(Cuentas);
82        accountsStack->setObjectName(QString::fromUtf8("accountsStack"));
83        accountsStack->setGeometry(QRect(10, 60, 133, 49));
84        page = new QWidget();
85        page->setObjectName(QString::fromUtf8("page"));
86        accountsStack->addWidget(page);
87        page_2 = new QWidget();
88        page_2->setObjectName(QString::fromUtf8("page_2"));
89        accountsStack->addWidget(page_2);
90        comboBox->raise();
91        accountsStack->raise();
92
93        verticalLayout->addWidget(Cuentas);
94
95        verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
96
97        verticalLayout->addItem(verticalSpacer);
98
99        loadButton = new QPushButton(widget1);
100        loadButton->setObjectName(QString::fromUtf8("loadButton"));
101
102        verticalLayout->addWidget(loadButton);
103
104        MainWIdget->addTab(tab, QString());
105        tab1 = new QWidget();
106        tab1->setObjectName(QString::fromUtf8("tab1"));
107        MainWIdget->addTab(tab1, QString());
108
109        retranslateUi(MainWIdget);
110
111        QMetaObject::connectSlotsByName(MainWIdget);
112    } // setupUi
113
114    void retranslateUi(QTabWidget *MainWIdget)
115    {
116        MainWIdget->setWindowTitle(QApplication::translate("MainWIdget", "TabWidget", 0, QApplication::UnicodeUTF8));
117        Cuentas->setTitle(QApplication::translate("MainWIdget", "Cuentas", 0, QApplication::UnicodeUTF8));
118        loadButton->setText(QApplication::translate("MainWIdget", "Finalizar Carga", 0, QApplication::UnicodeUTF8));
119        MainWIdget->setTabText(MainWIdget->indexOf(tab), QApplication::translate("MainWIdget", "Tab 1", 0, QApplication::UnicodeUTF8));
120        MainWIdget->setTabText(MainWIdget->indexOf(tab1), QApplication::translate("MainWIdget", "Tab 2", 0, QApplication::UnicodeUTF8));
121    } // retranslateUi
122
123};
124
125namespace Ui {
126    class MainWIdget: public Ui_MainWIdget {};
127} // namespace Ui
128
129QT_END_NAMESPACE
130
131#endif // UI_MAINWIDGET_H
Note: See TracBrowser for help on using the repository browser.