Conference Registration 2024.07.18.04
Loading...
Searching...
No Matches
totalfeesdialog.h
Go to the documentation of this file.
1
9#ifndef TOTALFEESDIALOG_H
10#define TOTALFEESDIALOG_H
11
12#include <QDialog>
13
14class QComboBox;
15class QGridLayout;
16class QLabel;
17class QLineEdit;
18class QPushButton;
20
21
27class TotalFeesDialog : public QDialog
28{
29 Q_OBJECT
30public:
35 TotalFeesDialog(RegistrationList *registrationList);
36
37private slots:
41 void on_comboBoxRegistrationType_currentIndexChanged();
42
43private:
47 void setupUI();
48
49 QGridLayout *gridLayout;
50 QLabel *labelRegistrationType;
51 QComboBox *comboBoxRegistrationType;
52 QLabel *labelTotalFees;
53 QLineEdit *lineEditTotalFees;
54 QPushButton *pushButtonClose;
55 RegistrationList *registrationList;
56};
57
58#endif // TOTALFEESDIALOG_H
Manages a list of conference registrations.
Definition registrationlist.h:28
The TotalFeesDialog class represents a dialog window for calculating and displaying total fees.
Definition totalfeesdialog.h:28
TotalFeesDialog(RegistrationList *registrationList)
Constructs a TotalFeesDialog object with the given registration list.
Definition totalfeesdialog.cpp:21