mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 17:42:10 +01:00
167 lines
6.3 KiB
C++
167 lines
6.3 KiB
C++
|
/* ============================================================
|
||
|
* Falkon - Qt web browser
|
||
|
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
* ============================================================ */
|
||
|
#include "tabcontextmenu.h"
|
||
|
#include "tabbar.h"
|
||
|
#include "tabwidget.h"
|
||
|
#include "browserwindow.h"
|
||
|
#include "webtab.h"
|
||
|
#include "settings.h"
|
||
|
#include "tabbedwebview.h"
|
||
|
#include "mainapplication.h"
|
||
|
#include "iconprovider.h"
|
||
|
#include "checkboxdialog.h"
|
||
|
|
||
|
|
||
|
TabContextMenu::TabContextMenu(int index, Qt::Orientation orientation, BrowserWindow* window, TabWidget* tabWidget)
|
||
|
: QMenu()
|
||
|
, m_clickedTab(index)
|
||
|
, m_tabsOrientation(orientation)
|
||
|
, m_window(window)
|
||
|
, m_tabWidget(tabWidget)
|
||
|
{
|
||
|
setObjectName("tabcontextmenu");
|
||
|
|
||
|
connect(this, SIGNAL(tabCloseRequested(int)), m_tabWidget->tabBar(), SIGNAL(tabCloseRequested(int)));
|
||
|
connect(this, SIGNAL(reloadTab(int)), m_tabWidget, SLOT(reloadTab(int)));
|
||
|
connect(this, SIGNAL(stopTab(int)), m_tabWidget, SLOT(stopTab(int)));
|
||
|
connect(this, SIGNAL(closeAllButCurrent(int)), m_tabWidget, SLOT(closeAllButCurrent(int)));
|
||
|
connect(this, SIGNAL(closeToRight(int)), m_tabWidget, SLOT(closeToRight(int)));
|
||
|
connect(this, SIGNAL(closeToLeft(int)), m_tabWidget, SLOT(closeToLeft(int)));
|
||
|
connect(this, SIGNAL(duplicateTab(int)), m_tabWidget, SLOT(duplicateTab(int)));
|
||
|
connect(this, SIGNAL(detachTab(int)), m_tabWidget, SLOT(detachTab(int)));
|
||
|
|
||
|
init();
|
||
|
}
|
||
|
|
||
|
static bool canCloseTabs(const QString &settingsKey, const QString &title, const QString &description)
|
||
|
{
|
||
|
Settings settings;
|
||
|
bool ask = settings.value("Browser-Tabs-Settings/" + settingsKey, true).toBool();
|
||
|
|
||
|
if (ask) {
|
||
|
CheckBoxDialog dialog(QMessageBox::Yes | QMessageBox::No, mApp->activeWindow());
|
||
|
dialog.setDefaultButton(QMessageBox::No);
|
||
|
dialog.setWindowTitle(title);
|
||
|
dialog.setText(description);
|
||
|
dialog.setCheckBoxText(TabBar::tr("Don't ask again"));
|
||
|
dialog.setIcon(QMessageBox::Question);
|
||
|
|
||
|
if (dialog.exec() != QMessageBox::Yes) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (dialog.isChecked()) {
|
||
|
settings.setValue("Browser-Tabs-Settings/" + settingsKey, false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::closeAllButCurrent()
|
||
|
{
|
||
|
if (canCloseTabs(QLatin1String("AskOnClosingAllButCurrent"), tr("Close Tabs"), tr("Do you really want to close other tabs?"))) {
|
||
|
emit closeAllButCurrent(m_clickedTab);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::closeToRight()
|
||
|
{
|
||
|
const QString label = m_tabsOrientation == Qt::Horizontal
|
||
|
? tr("Do you really want to close all tabs to the right?")
|
||
|
: tr("Do you really want to close all tabs to the bottom?");
|
||
|
|
||
|
if (canCloseTabs(QLatin1String("AskOnClosingToRight"), tr("Close Tabs"), label)) {
|
||
|
emit closeToRight(m_clickedTab);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::closeToLeft()
|
||
|
{
|
||
|
const QString label = m_tabsOrientation == Qt::Horizontal
|
||
|
? tr("Do you really want to close all tabs to the left?")
|
||
|
: tr("Do you really want to close all tabs to the top?");
|
||
|
|
||
|
if (canCloseTabs(QLatin1String("AskOnClosingToLeft"), tr("Close Tabs"), label)) {
|
||
|
emit closeToLeft(m_clickedTab);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::init()
|
||
|
{
|
||
|
if (m_clickedTab != -1) {
|
||
|
WebTab* webTab = qobject_cast<WebTab*>(m_tabWidget->widget(m_clickedTab));
|
||
|
if (!webTab) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (m_window->weView(m_clickedTab)->isLoading()) {
|
||
|
addAction(QIcon::fromTheme(QSL("process-stop")), tr("&Stop Tab"), this, SLOT(stopTab()));
|
||
|
}
|
||
|
else {
|
||
|
addAction(QIcon::fromTheme(QSL("view-refresh")), tr("&Reload Tab"), this, SLOT(reloadTab()));
|
||
|
}
|
||
|
|
||
|
addAction(QIcon::fromTheme("tab-duplicate"), tr("&Duplicate Tab"), this, SLOT(duplicateTab()));
|
||
|
|
||
|
if (m_tabWidget->count() > 1 && !webTab->isPinned()) {
|
||
|
addAction(QIcon::fromTheme("tab-detach"), tr("D&etach Tab"), this, SLOT(detachTab()));
|
||
|
}
|
||
|
|
||
|
addAction(webTab->isPinned() ? tr("Un&pin Tab") : tr("&Pin Tab"), this, SLOT(pinTab()));
|
||
|
addAction(webTab->isMuted() ? tr("Un&mute Tab") : tr("&Mute Tab"), this, SLOT(muteTab()));
|
||
|
addSeparator();
|
||
|
addAction(tr("Re&load All Tabs"), m_tabWidget, SLOT(reloadAllTabs()));
|
||
|
addAction(tr("Bookmark &All Tabs"), m_window, SLOT(bookmarkAllTabs()));
|
||
|
addSeparator();
|
||
|
addAction(tr("Close Ot&her Tabs"), this, SLOT(closeAllButCurrent()));
|
||
|
addAction(m_tabsOrientation == Qt::Horizontal ? tr("Close Tabs To The Right") : tr("Close Tabs To The Bottom"), this, SLOT(closeToRight()));
|
||
|
addAction(m_tabsOrientation == Qt::Horizontal ? tr("Close Tabs To The Left") : tr("Close Tabs To The Top"), this, SLOT(closeToLeft()));
|
||
|
addSeparator();
|
||
|
addAction(m_window->action(QSL("Other/RestoreClosedTab")));
|
||
|
addAction(QIcon::fromTheme("window-close"), tr("Cl&ose Tab"), this, SLOT(closeTab()));
|
||
|
} else {
|
||
|
addAction(IconProvider::newTabIcon(), tr("&New tab"), m_window, SLOT(addTab()));
|
||
|
addSeparator();
|
||
|
addAction(tr("Reloa&d All Tabs"), m_tabWidget, SLOT(reloadAllTabs()));
|
||
|
addAction(tr("Bookmark &All Tabs"), m_window, SLOT(bookmarkAllTabs()));
|
||
|
addSeparator();
|
||
|
addAction(m_window->action(QSL("Other/RestoreClosedTab")));
|
||
|
}
|
||
|
|
||
|
m_window->action(QSL("Other/RestoreClosedTab"))->setEnabled(m_tabWidget->canRestoreTab());
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::pinTab()
|
||
|
{
|
||
|
WebTab* webTab = qobject_cast<WebTab*>(m_tabWidget->widget(m_clickedTab));
|
||
|
|
||
|
if (webTab) {
|
||
|
webTab->togglePinned();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void TabContextMenu::muteTab()
|
||
|
{
|
||
|
WebTab* webTab = qobject_cast<WebTab*>(m_tabWidget->widget(m_clickedTab));
|
||
|
|
||
|
if (webTab) {
|
||
|
webTab->toggleMuted();
|
||
|
}
|
||
|
}
|