-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow_member.h
More file actions
75 lines (56 loc) · 1.77 KB
/
window_member.h
File metadata and controls
75 lines (56 loc) · 1.77 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#ifndef WINDOW_MEMBER_H
#define WINDOW_MEMBER_H
#include <QDialog>
#include "window_librarian.h"
#include <QMainWindow>
#include<QMessageBox>
#include<QWidget>
#include "window_renewbook.h"
#include "window_reservebook.h"
#include "window_returnbook.h"
#include "window_search.h"
#include "window_viewaccount.h"
#include "window_updateaccount.h"
#include "window_chechoutbook.h"
#include "window_changepassword.h"
#include "window_rentedbooks.h"
#include "window_changepassmember.h"
namespace Ui {
class Window_Member;
}
class QSystemTrayIcon;
class Window_Member : public QDialog
{
Q_OBJECT
public:
explicit Window_Member(QWidget *parent = nullptr);
~Window_Member();
private slots:
void on_pushButton_ReturnBook_clicked();
//void on_pushButton_ViewAccount_clicked();
void on_pushButton_Logout_clicked();
//void on_pushButton_RemoveReservation_clicked();
void on_pushButton_RenewBook_clicked();
void on_pushButton_ReserveBook_clicked();
void on_pushButton_Search_clicked();
// void on_pushButton_UpdateAccount_clicked();
// void on_pushButton_ChechOutBook_clicked();
void on_pushButton_ChangePassword_clicked();
//void on_pushButton_RentedBooks_clicked();
void on_pushButton_clicked();
void on_showMessageBtn_clicked();
private:
Ui::Window_Member *ui;
Window_Search * SearchObj;
Window_RenewBook * RenewBookObj;
Window_ReturnBook * ReturnBookObj;
Window_ReserveBook * ReserveBookObj;
Window_ViewAccount * ViewAccountObj;
Window_UpdateAccount *UpdateAccountObj;
Window_ChechOutBook *CheckOutBookObj;
Window_ChangePassword *ChangePasswordObj;
Window_RentedBooks *RentedBooksObj;
QSystemTrayIcon *mSystemTrayIcon;
Window_ChangePassMember *ChangePassMemberObj;
};
#endif // WINDOW_MEMBER_H