Invoice++
Loading...
Searching...
No Matches
representativeWidget.h
Go to the documentation of this file.
1#ifndef REPRESENTATIVEWIDGET_H
2#define REPRESENTATIVEWIDGET_H
3
5
7class representativeWidget : public QWidget
8{
9 Q_OBJECT
10
11public:
12 explicit representativeWidget(QWidget *parent = nullptr);
18 QHBoxLayout *zip_city_horizontal;
21
22};
23
24#endif //REPRESENTATIVEWIDGET_H
textInputWidget * zipcode
Definition representativeWidget.h:19
textInputWidget * name
Definition representativeWidget.h:14
textInputWidget * city
Definition representativeWidget.h:20
QVBoxLayout * representative_layout
Definition representativeWidget.h:13
QHBoxLayout * zip_city_horizontal
Definition representativeWidget.h:18
QHBoxLayout * street_house_horizontal
Definition representativeWidget.h:15
representativeWidget(QWidget *parent=nullptr)
Definition representativeWidget.cpp:6
textInputWidget * housenumber
Definition representativeWidget.h:17
textInputWidget * street
Definition representativeWidget.h:16
a Widget containing a label and a text input below
Definition textInputWidget.h:12