source: mmcs/stackwidget.H

Last change on this file was e62517a, checked in by rudmanmrrod <rudman22@…>, 8 years ago

Migrado el proyecto a la versión 5 de Qt, agregado primer boceto del PDF

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