-
Notifications
You must be signed in to change notification settings - Fork 1
/
cao_panel.h
61 lines (44 loc) · 1.17 KB
/
cao_panel.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
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef CAO_PANEL_H
#define CAO_PANEL_H
#include <QMainWindow>
#include "addstaff.h"
#include "viewstfrecord.h"
#include "viewstftable.h"
#include "modifystaff.h"
#include "deletestaff.h"
#include "changepassword.h"
#include "about.h"
#include "about.h"
namespace Ui {
class Cao_panel;
}
class Cao_panel : public QMainWindow
{
Q_OBJECT
public:
explicit Cao_panel(QWidget *parent = 0);
~Cao_panel();
private slots:
void on_pushButton_addstaff_clicked();
void on_pushButton_modifystaff_clicked();
void on_pushButton_viewstaff_clicked();
void on_pushButton_deletestaff_clicked();
void on_pushButton_exitstaff_clicked();
void on_pushButton_changepasswordstaff_clicked();
void on_pushButton_clicked();
void on_viewstafftable_clicked();
void on_pushButton_19_clicked();
private:
Ui::Cao_panel *ui;
addStaff *astaff;
viewstfrecord *viewstaff;
viewstftable *vstafftable;
modifyStaff *modStaff;
deleteStaff *delStaff;
changepassword *change_pass;
About *abt;
QSqlQuery query;
QSqlDatabase db;
About *abt_us;
};
#endif // CAO_PANEL_H