-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchdialog.h
executable file
·49 lines (36 loc) · 984 Bytes
/
searchdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef SEARCHDIALOG_H
#define SEARCHDIALOG_H
#include <QDialog>
namespace Ui {
class SearchDialog;
}
class SearchDialog : public QDialog
{
Q_OBJECT
public:
explicit SearchDialog(QWidget *parent = 0);
~SearchDialog();
QString getNome() const;
QString getCognome() const;
QString getComune() const;
QString getCap() const;
QString getProvincia() const;
QString getProfessione() const;
QString getBrevetto();
bool getAllLicenses() const;
bool getIsValid() const;
bool getIsExpired() const;
bool getShowAll() const;
signals:
void ShowPeople_SIGNAL(bool expired);
void ShowPeopleAboutToExpire_SIGNAL(bool expired);
private slots:
void on_Visualizza_button_clicked();
void on_Visualizza_in_scadenza_button_clicked();
void on_Cancella_button_2_clicked();
void on_Chiudi_button_clicked();
private:
Ui::SearchDialog *ui;
void clearSearchPersonForm();
};
#endif // SEARCHDIALOG_H