Invoice++
Loading...
Searching...
No Matches
spinBoxInputWidget.h
Go to the documentation of this file.
1#ifndef SPININPUTWIDGET_H
2#define SPININPUTWIDGET_H
3
4#include <QWidget>
5#include <QSpinBox>
6#include <QHBoxLayout>
7#include <QLabel>
8
10class spinBoxInputWidget : public QWidget
11{
12 Q_OBJECT
13
14public:
15 explicit spinBoxInputWidget(const QString& inputLabel, QWidget *parent = nullptr);
16 QVBoxLayout *layout;
17 QLabel *label;
18 QSpinBox *input;
19
20};
21
22#endif //SPININPUTWIDGET_H
QVBoxLayout * layout
Definition spinBoxInputWidget.h:16
spinBoxInputWidget(const QString &inputLabel, QWidget *parent=nullptr)
Definition spinBoxInputWidget.cpp:3
QSpinBox * input
Definition spinBoxInputWidget.h:18
QLabel * label
Definition spinBoxInputWidget.h:17