Conference Registration 2024.07.18.04
Loading...
Searching...
No Matches
totalregistereddialog.h
Go to the documentation of this file.
1
9#ifndef TOTALREGISTEREDDIALOG_H
10#define TOTALREGISTEREDDIALOG_H
11
12#include <QDialog>
13
14class QGridLayout;
15class QLabel;
16class QLineEdit;
17class QPushButton;
19
20
26class TotalRegisteredDialog : public QDialog
27{
28 Q_OBJECT
29public:
34 TotalRegisteredDialog(RegistrationList *registrationList);
35
36private slots:
41 void on_lineEditAffiliation_textChanged();
42
43private:
48 void setupUI();
49
50
51 QGridLayout *gridLayout;
52 QLabel *labelAffiliation;
53 QLineEdit *lineEditAffiliation;
54 QLabel *labelTotalAttendees;
55 QLineEdit *lineEditTotalAttendees;
56 QPushButton *pushButtonClose;
57 RegistrationList *registrationList;
58};
59
60#endif // TOTALREGISTEREDDIALOG_H
Manages a list of conference registrations.
Definition registrationlist.h:28
The TotalRegisteredDialog class represents a dialog window that displays the total number of register...
Definition totalregistereddialog.h:27
TotalRegisteredDialog(RegistrationList *registrationList)
Constructs a TotalRegisteredDialog object.
Definition totalregistereddialog.cpp:19