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