aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorConfuSomu2024-06-01 18:05:30 -0400
committerConfuSomu2024-06-01 18:07:06 -0400
commit48a338b1321d9e169c73b71c01cd2f9ba00f9c53 (patch)
treea4c991f800a7bd8bf0d33a56fc7998996c793c3b /src/mainwindow.h
parente3efc04807f946cc75b06ec84b4af79d66b23cce (diff)
downloadActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.tar
ActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.tar.gz
ActorViewer-48a338b1321d9e169c73b71c01cd2f9ba00f9c53.zip
Implement Recent files list and menu
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index 03daaad..68ecf18 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -8,6 +8,7 @@
#include "archive/base_archive.h"
#include "src/list_item.h"
#include "src/settingsdialog.h"
+#include "src/recent_files.h"
#include "src/widgets/tab_activity_list.h"
#include "src/widgets/tab_actor_info.h"
#include "src/widgets/tab_welcome.h"
@@ -58,6 +59,8 @@ private:
TabActorInfo* actor_info_tab = nullptr;
QString open_file_filename;
+ RecentFiles recent_files;
+ RecentFiles::QMenuPtr recent_files_menu;
Ui::MainWindow *ui;