diff options
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h index 4ba65e28..c2795048 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -34,6 +34,7 @@ #include "webview.h" #include "webpage.h" #include "application.h" +#include "history.h" // KDE Includes #include <KTabWidget> @@ -89,6 +90,8 @@ public: */ WebView *newWebView(bool focused = true, bool nearParent = false); + QList<HistoryItem> recentlyClosedTabs(); + signals: // tab widget signals void tabsChanged(); @@ -154,8 +157,10 @@ private: TabBar *m_tabBar; QString m_loadingGitPath; - + int m_currentTabIndex; + + QList<HistoryItem> m_recentlyClosedTabs; }; #endif // MAINVIEW_H |