feat: Add top and bottom button in UserOperationLog page.

This commit is contained in:
sunwen
2024-07-29 10:16:37 +08:00
parent 9f09c59df1
commit 9c96fbbba6
4 changed files with 138 additions and 105 deletions

View File

@@ -19,12 +19,14 @@ protected:
void showEvent(QShowEvent *aEvent) override;
private:
QTableView* table = nullptr;
QPushButton* btn = nullptr;
LogFileTableModel* model = nullptr;
SelectDialog* dialog = nullptr;
QVBoxLayout* layout = nullptr;
QString selectedDateStr;
QTableView* mLogTable = nullptr;
QPushButton* mDateButton = nullptr;
QPushButton* mTopButton = nullptr;
QPushButton* mBottomButton = nullptr;
LogFileTableModel* mModel = nullptr;
SelectDialog* mSelectDateDialog = nullptr;
QVBoxLayout* mLayout = nullptr;
QString mSelectedDateStr;
};