-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibsys.h
32 lines (28 loc) · 834 Bytes
/
libsys.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
#pragma once
#include <QtWidgets/QMainWindow>
#include "ui_libsys.h"
class libsys : public QMainWindow
{
Q_OBJECT
public:
libsys(QWidget* parent = Q_NULLPTR);
private slots:
int OnBtnLoginClicked(bool checked);
int OnBtnQueryClicked(bool checked);
int OnBtnSearchClicked(bool checked);
int OnBtnBorrowClicked(bool checked);
int OnBtnBorrowOKClicked(bool checked);
int OnBtnReturnClicked(bool checked);
int OnBtnReturnOKClicked(bool checked);
int OnBtnInClicked(bool checked);
int OnBtnInOKClicked(bool checked);
int OnBtnRecClicked(bool checked);
int OnSearchItemRecChanged(int index);
int OnBtnRecSearchClicked(bool checked);
int OnBtnUsrClicked(bool checked);
int OnBtnUsrSearchClicked(bool checked);
int OnBtnUsrAddClicked(bool checked);
int OnBtnUsrDelClicked(bool checked);
private:
Ui::libsysClass ui;
};