source: mmcs/stackvariablesexogenas.h @ 9dd61b1

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

Avance del proyecto 60%

  • Property mode set to 100644
File size: 798 bytes
Line 
1#ifndef STACKVARIABLESEXOGENAS_H
2#define STACKVARIABLESEXOGENAS_H
3
4#include <QVBoxLayout>
5#include <QHBoxLayout>
6#include <QWidget>
7#include <QStackedWidget>
8#include <QList>
9#include <QComboBox>
10#include <variableexogenawidget.h>
11#include <QTableWidget>
12
13class stackVariablesExogenas : public QWidget
14{
15    Q_OBJECT
16public:
17    stackVariablesExogenas(QStringList Lista, QStringList Componentes,QList<int> inicio,QList<int> fin, QWidget *parent = 0, int contar = 0);
18
19    QStackedWidget * stackedWidget;
20
21    QList<QWidget *> widgetList;
22
23    QHBoxLayout * layoutMain;
24
25    QComboBox * comboAccount;
26
27    VariableExogenaWidget *veWidget;
28
29    QStringList generarComponentes(QStringList Componentes, int inicio, int fin);
30   
31signals:
32   
33public slots:
34   
35};
36
37#endif // STACKVARIABLESEXOGENAS_H
Note: See TracBrowser for help on using the repository browser.