From 49f1351231a71969160b2574603d198af3cf67b3 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 28 May 2018 10:21:30 +0200 Subject: Remove Window::addTab(WebView *view) --- src/mainwindow/window.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'src/mainwindow/window.cpp') diff --git a/src/mainwindow/window.cpp b/src/mainwindow/window.cpp index a5ab90b..47f8489 100644 --- a/src/mainwindow/window.cpp +++ b/src/mainwindow/window.cpp @@ -10,7 +10,6 @@ #include "webengine/webprofile.h" #include "webengine/webview.h" #include "widgets/tabwidget.h" -#include #include #include #include @@ -30,9 +29,16 @@ Window::Window(const QHash &config, QWidget *parent, Qt::Windo resize(800, 600); setWidget(tabWidget); + profile = WebProfile::defaultProfile(); + #ifdef QT_DEBUG { auto *menu = systemMenu(); + + menu->addSeparator(); + menu->addAction(tr("Debug menu"))->setEnabled(false); + menu->addAction(tr("Profile: %1").arg(profile->isOffTheRecord() ? tr("off-the-record") : profile->storageName()))->setEnabled(false); + menu->addSeparator(); auto *saveSession_action = menu->addAction(tr("Save session")); menu->addAction(tr("Load session"))->setEnabled(false); @@ -106,16 +112,16 @@ WebView *Window::currentView() return qobject_cast(tabWidget->currentWidget()); } -int Window::addTab(WebView *view) +WebView *Window::view(int index) const { - Q_CHECK_PTR(view); - return tabWidget->addTab(view); + return qobject_cast(tabWidget->widget(index)); } int Window::addTab(const QUrl &url) { - auto *view = new WebView(WebProfile::defaultProfile(), this); - view->load(url); + auto *view = new WebView(profile, this); + if(!url.isEmpty()) + view->load(url); return tabWidget->addTab(view); } -- cgit v1.2.1