source: mmcs/stackwidget.H @ 44d1e60

matrices
Last change on this file since 44d1e60 was 44d1e60, checked in by Jose Ruiz <joseruiz@…>, 9 years ago

commit inicial

  • Property mode set to 100644
File size: 479 bytes
Line 
1#ifndef STACKWIDGET_H
2#define STACKWIDGET_H
3
4#include <QVBoxLayout>
5#include <QWidget>
6#include <QStackedWidget>
7#include <QList>
8#include <QComboBox>
9#include <accountwidget.H>
10
11class StackWidget : public QWidget
12{
13Q_OBJECT
14
15    QStackedWidget * stackedWidget;
16
17    QList<QWidget *> widgetList;
18
19    QVBoxLayout * layoutMain;
20
21    QComboBox * comboAccount;
22
23
24public:
25    StackWidget(int accountNumber, QWidget *parent = 0);
26
27signals:
28
29public slots:
30
31};
32
33#endif // STACKWIDGET_H
Note: See TracBrowser for help on using the repository browser.