source: mmcs/accountwidget.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: 573 bytes
Line 
1#ifndef ACCOUNTWIDGET_H
2#define ACCOUNTWIDGET_H
3
4#include <QtWidgets>
5#include <QVBoxLayout>
6#include <QLineEdit>
7#include <QLabel>
8#include <QSpinBox>
9
10class AccountWidget : public QWidget
11{
12Q_OBJECT
13public:
14    explicit AccountWidget(int number=0, QWidget *parent = 0);
15
16
17    QVBoxLayout * layoutAccountConf;
18
19    QLabel * labelAccountName;
20
21    QLineEdit * lineEditAccountName;
22
23    QLabel * labelAccountStart;
24
25    QSpinBox * spinBoxAccountStart;
26
27    QLabel *labelAccountEnd;
28
29    QSpinBox * spinBoxAccountEnd;
30
31
32signals:
33
34public slots:
35
36};
37
38#endif // ACCOUNTWIDGET_H
Note: See TracBrowser for help on using the repository browser.