Slide picker
This commit is contained in:
@@ -8,16 +8,24 @@
|
||||
#include <QWidget>
|
||||
class QTableView;
|
||||
class QPushButton;
|
||||
class LogFileTableModel;
|
||||
class QVBoxLayout;
|
||||
class LogDateSelectDialog;
|
||||
class UserOperationLogForm:public QWidget {
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit UserOperationLogForm(QWidget *parent = nullptr);
|
||||
~UserOperationLogForm();
|
||||
void loadUserOperationLog();
|
||||
void loadUserOperationLog(const QString& fileName, const QString& date);
|
||||
|
||||
private:
|
||||
QTableView * table = nullptr;
|
||||
QPushButton* btn = nullptr;
|
||||
LogFileTableModel* model = nullptr;
|
||||
LogDateSelectDialog* dialog = nullptr;
|
||||
QVBoxLayout* layout = nullptr;
|
||||
QString selectedDateStr;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user