aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorConfuSomu2024-05-29 22:46:29 -0400
committerConfuSomu2024-05-29 22:46:29 -0400
commite3efc04807f946cc75b06ec84b4af79d66b23cce (patch)
tree27ee6d0aefe5ce7e45abb8e92f403eeff5d5aaa4 /src/mainwindow.h
parent294f7f78fe3e81bef2c23750426b53354b1b20a6 (diff)
downloadActorViewer-e3efc04807f946cc75b06ec84b4af79d66b23cce.tar
ActorViewer-e3efc04807f946cc75b06ec84b4af79d66b23cce.tar.gz
ActorViewer-e3efc04807f946cc75b06ec84b4af79d66b23cce.zip
Implement basic Welcome tab for greeting user
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index cc43176..03daaad 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -10,6 +10,7 @@
#include "src/settingsdialog.h"
#include "src/widgets/tab_activity_list.h"
#include "src/widgets/tab_actor_info.h"
+#include "src/widgets/tab_welcome.h"
#include "command_line.h"
QT_BEGIN_NAMESPACE
@@ -35,7 +36,7 @@ signals:
void new_archive_opened(bool is_valid);
private slots:
- void on_actionOpen_triggered(bool checked);
+ void on_actionOpen_triggered();
void on_actionSettings_triggered(bool checked);
void on_actionQuit_triggered(bool checked);
void on_actionAbout_triggered(bool checked);
@@ -52,6 +53,7 @@ private:
void settingsDialog_done(int result);
SettingsDialog* settings_dialog = nullptr;
+ TabWelcome* welcome_tab = nullptr;
TabActivityList* activity_list_tab = nullptr;
TabActorInfo* actor_info_tab = nullptr;