2021-11-23 13:22:00 +08:00
|
|
|
//
|
|
|
|
|
// Created by Krad on 2021/11/23.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#ifndef GUI_USEROPERATIONLOGFORM_H
|
|
|
|
|
#define GUI_USEROPERATIONLOGFORM_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
2021-11-23 16:53:36 +08:00
|
|
|
class QTableView;
|
|
|
|
|
class QPushButton;
|
2021-11-23 13:22:00 +08:00
|
|
|
class UserOperationLogForm:public QWidget {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit UserOperationLogForm(QWidget *parent = nullptr);
|
|
|
|
|
~UserOperationLogForm();
|
|
|
|
|
void loadUserOperationLog();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QTableView * table = nullptr;
|
2021-11-23 16:53:36 +08:00
|
|
|
QPushButton* btn = nullptr;
|
2021-11-23 13:22:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //GUI_USEROPERATIONLOGFORM_H
|