-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreturnwindow.h
More file actions
43 lines (38 loc) · 937 Bytes
/
Copy pathreturnwindow.h
File metadata and controls
43 lines (38 loc) · 937 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
43
#ifndef RETURNWINDOW_H
#define RETURNWINDOW_H
#include <QWidget>
#include <QMdiSubWindow>
#include <QTableWidget>
#include <QHeaderView>
#include "toolbutton.h"
#include "reader_mgmt.h"
#include "bookhandlewindow.h"
#include "messagebox.h"
#include "reportreasonwindow.h"
extern Reader* activereader;
extern qreal dpi;
extern QDate systemDate;
class ReturnWindow : public QMdiSubWindow
{
Q_OBJECT
public:
ReturnWindow(QWidget *parent = 0);
~ReturnWindow();
QTableWidget* borrowTable;
QTableWidgetItem* item[20][3];
ToolButton* returnBtn[20];
BookHandleWindow* handleWindow;
ReportReasonWindow * reportWindow;
MessageBox* popUp;
int order; //当前操作的图书
protected:
void paintEvent(QPaintEvent *paintEvent);
signals:
public slots:
void bookHandling();
void bookReturning();
void bookRenewing();
void bookLost();
void getReason();
};
#endif // RETURNWINDOW_H