-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformreport.h
More file actions
42 lines (31 loc) · 702 Bytes
/
Copy pathformreport.h
File metadata and controls
42 lines (31 loc) · 702 Bytes
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
#ifndef FORMREPORT_H
#define FORMREPORT_H
#include <QDialog>
#include <QDebug>
#include <QMessageBox>
#include "azioni.h"
#include "dbutility.h"
#include "messaggi.h"
namespace Ui {
class formreport;
}
class formreport : public QDialog
{
Q_OBJECT
public:
explicit formreport(QWidget *parent = 0);
~formreport();
private slots:
void on_btnAnnulla_clicked();
void on_btnConferma_clicked();
void on_cmbReport_currentIndexChanged(int index);
private:
Ui::formreport *ui;
dbUtility db;
QMessageBox messageBox;
void disabilitaCampiData(void);
void abilitaCampiData(void);
void generaReport(void);
void resetForm(void);
};
#endif // FORMREPORT_H