2014-03-10 16:55:11 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2016-04-05 09:19:57 +02:00
|
|
|
* Copyright (C) 2014-2016 David Rosca <nowrep@gmail.com>
|
2014-03-10 16:55:11 +01:00
|
|
|
*
|
|
|
|
* 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 "mainmenu.h"
|
|
|
|
#include "siteinfo.h"
|
|
|
|
#include "tabwidget.h"
|
|
|
|
#include "historymenu.h"
|
|
|
|
#include "aboutdialog.h"
|
|
|
|
#include "preferences.h"
|
|
|
|
#include "iconprovider.h"
|
|
|
|
#include "cookiemanager.h"
|
|
|
|
#include "bookmarksmenu.h"
|
|
|
|
#include "tabbedwebview.h"
|
|
|
|
#include "browserwindow.h"
|
|
|
|
#include "adblockmanager.h"
|
|
|
|
#include "downloadmanager.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "clearprivatedata.h"
|
2014-05-20 18:35:49 +02:00
|
|
|
#include "qzsettings.h"
|
2015-10-13 02:34:47 +02:00
|
|
|
#include "pluginproxy.h"
|
2016-04-05 09:19:57 +02:00
|
|
|
#include "webinspector.h"
|
2014-03-10 16:55:11 +01:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QStatusBar>
|
2015-01-27 11:01:52 +01:00
|
|
|
#include <QWebEnginePage>
|
2014-03-10 16:55:11 +01:00
|
|
|
#include <QMenuBar>
|
2015-03-19 23:22:05 +01:00
|
|
|
#include <QDesktopServices>
|
2014-03-10 16:55:11 +01:00
|
|
|
|
2014-09-25 14:09:26 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
extern void qt_mac_set_dock_menu(QMenu* menu);
|
|
|
|
#endif
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
MainMenu::MainMenu(BrowserWindow* window, QWidget* parent)
|
|
|
|
: QMenu(parent)
|
|
|
|
, m_window(window)
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_window);
|
|
|
|
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::setWindow(BrowserWindow* window)
|
|
|
|
{
|
|
|
|
Q_ASSERT(window);
|
|
|
|
|
|
|
|
m_window = window;
|
|
|
|
addActionsToWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::initMenuBar(QMenuBar* menuBar) const
|
|
|
|
{
|
|
|
|
menuBar->addMenu(m_menuFile);
|
|
|
|
menuBar->addMenu(m_menuEdit);
|
|
|
|
menuBar->addMenu(m_menuView);
|
|
|
|
menuBar->addMenu(m_menuHistory);
|
|
|
|
menuBar->addMenu(m_menuBookmarks);
|
|
|
|
menuBar->addMenu(m_menuTools);
|
|
|
|
menuBar->addMenu(m_menuHelp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::initSuperMenu(QMenu* superMenu) const
|
|
|
|
{
|
|
|
|
superMenu->addAction(m_actions[QSL("File/NewTab")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("File/NewWindow")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("File/NewPrivateWindow")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("File/OpenFile")]);
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_actions[QSL("File/SendLink")]);
|
Add initial printing support with QtWebEngine >= 5.7.0 (#2068)
* Add initial printing support with QtWebEngine >= 5.7.0
This works by printing to PDF first, then sending the PDF to a printer
if printing to a physical printer was requested.
On *nix (including Mac OS X), we use the lpr command, which is typically
provided by CUPS nowadays. Currently, no options beyond the printer name
are passed, there is room for improvement there. (Okular has a
FilePrinter class that handles this in a more sophisticated way.)
On Windows, we use ShellExecuteW with the "printto" verb. In that case,
the printer name is unfortunately the only thing that can be passed. The
user experience may also be suboptimal depending on the PDF viewer
installed on the system. (E.g., Adobe Reader is reported to ignore
SW_HIDE.) And if there is no PDF viewer installed at all, it will of
course not work at all. But it is the best we can do without bundling
something like GhostScript (or requiring the user to install it).
* Printing: Let lpr autoremove the temporary file instead of QTemporaryFile
Only lpr knows for sure when it is safe to delete the temporary file.
* Printing: Use the callback version of printToPdf instead of the file one
The file version is also asynchronous and does not report when it is
done.
* Printing: Use async QProcess API instead of QProcess::execute to run lpr
This also required making tempFile a QTemporaryFile * instead of a
QTemporaryFile on the stack, because QTemporaryFile is a QObject and
cannot be copied.
* Printing: Adapt the FilePrinter from Okular to pass correct lpr args
The license of those files is GPLv2+, which is compatible with
QupZilla's GPLv3+ licensing.
2016-09-14 14:07:07 +02:00
|
|
|
superMenu->addAction(m_actions[QSL("File/Print")]);
|
2014-03-10 16:55:11 +01:00
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_actions[QSL("Edit/SelectAll")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("Edit/Find")]);
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_menuHistory->actions().at(3));
|
|
|
|
superMenu->addAction(m_menuBookmarks->actions().at(2));
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_actions[QSL("Standard/Preferences")]);
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addMenu(m_menuView);
|
|
|
|
superMenu->addMenu(m_menuHistory);
|
|
|
|
superMenu->addMenu(m_menuBookmarks);
|
|
|
|
superMenu->addMenu(m_menuTools);
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_actions[QSL("Standard/About")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("Help/InfoAboutApp")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("Help/ConfigInfo")]);
|
|
|
|
superMenu->addAction(m_actions[QSL("Help/ReportIssue")]);
|
|
|
|
superMenu->addSeparator();
|
|
|
|
superMenu->addAction(m_actions[QSL("Standard/Quit")]);
|
2015-04-09 20:07:56 +02:00
|
|
|
|
|
|
|
connect(superMenu, &QMenu::aboutToShow, this, &MainMenu::aboutToShowSuperMenu);
|
|
|
|
connect(superMenu, &QMenu::aboutToHide, this, &MainMenu::aboutToHideSuperMenu);
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QAction* MainMenu::action(const QString &name) const
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_actions.value(name));
|
|
|
|
|
|
|
|
return m_actions.value(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showAboutDialog()
|
|
|
|
{
|
2014-11-07 18:08:12 +01:00
|
|
|
AboutDialog* dialog = new AboutDialog(m_window);
|
|
|
|
dialog->open();
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showPreferences()
|
|
|
|
{
|
2014-11-07 17:16:22 +01:00
|
|
|
if (!m_preferences)
|
2015-09-25 22:31:04 +02:00
|
|
|
m_preferences = new Preferences(m_window);
|
2014-11-07 17:16:22 +01:00
|
|
|
|
|
|
|
m_preferences->show();
|
|
|
|
m_preferences->raise();
|
|
|
|
m_preferences->activateWindow();
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::quitApplication()
|
|
|
|
{
|
|
|
|
mApp->quitApplication();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::newTab()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("addTab");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::newWindow()
|
|
|
|
{
|
|
|
|
mApp->createWindow(Qz::BW_NewWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::newPrivateWindow()
|
|
|
|
{
|
|
|
|
mApp->startPrivateBrowsing();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::openLocation()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("openLocation");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::openFile()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("openFile");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::closeWindow()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("closeWindow");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 12:09:38 +02:00
|
|
|
void MainMenu::savePageAs()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
QMetaObject::invokeMethod(m_window->weView(), "savePageAs");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
void MainMenu::sendLink()
|
|
|
|
{
|
2015-03-19 23:22:05 +01:00
|
|
|
const QUrl mailUrl = QUrl::fromEncoded("mailto:%20?body=" + QUrl::toPercentEncoding(m_window->weView()->url().toEncoded()) + "&subject=" + QUrl::toPercentEncoding(m_window->weView()->title()));
|
|
|
|
QDesktopServices::openUrl(mailUrl);
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::printPage()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("printPage");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editUndo()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editUndo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editRedo()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editRedo();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editCut()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editCut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editCopy()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editCopy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editPaste()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editPaste();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editSelectAll()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->editSelectAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::editFind()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("searchOnPage");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showStatusBar()
|
|
|
|
{
|
2014-03-13 13:36:57 +01:00
|
|
|
if (m_window) {
|
|
|
|
m_window->toggleShowStatusBar();
|
|
|
|
}
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::stop()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::reload()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::zoomIn()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->zoomIn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::zoomOut()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->zoomOut();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::zoomReset()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->weView()->zoomReset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showPageSource()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("showSource");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showFullScreen()
|
|
|
|
{
|
2014-03-13 13:36:57 +01:00
|
|
|
if (m_window) {
|
|
|
|
m_window->toggleFullScreen();
|
|
|
|
}
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::webSearch()
|
|
|
|
{
|
2014-03-10 19:41:44 +01:00
|
|
|
callSlot("webSearch");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showSiteInfo()
|
|
|
|
{
|
2015-10-14 12:50:30 +02:00
|
|
|
if (m_window && SiteInfo::canShowSiteInfo(m_window->weView()->url())) {
|
2015-09-25 22:31:04 +02:00
|
|
|
SiteInfo* info = new SiteInfo(m_window->weView());
|
2014-03-10 16:55:11 +01:00
|
|
|
info->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showDownloadManager()
|
|
|
|
{
|
|
|
|
DownloadManager* m = mApp->downloadManager();
|
|
|
|
m->show();
|
|
|
|
m->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showCookieManager()
|
|
|
|
{
|
2015-09-25 22:31:04 +02:00
|
|
|
CookieManager* m = new CookieManager();
|
2014-03-10 16:55:11 +01:00
|
|
|
m->show();
|
|
|
|
m->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showAdBlockDialog()
|
|
|
|
{
|
|
|
|
AdBlockManager::instance()->showDialog();
|
|
|
|
}
|
|
|
|
|
2015-09-29 23:35:16 +02:00
|
|
|
void MainMenu::toggleWebInspector()
|
2014-03-10 16:55:11 +01:00
|
|
|
{
|
2015-09-29 23:35:16 +02:00
|
|
|
callSlot("toggleWebInspector");
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showClearRecentHistoryDialog()
|
|
|
|
{
|
2014-11-07 18:08:12 +01:00
|
|
|
ClearPrivateData* dialog = new ClearPrivateData(m_window);
|
|
|
|
dialog->open();
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutQt()
|
|
|
|
{
|
|
|
|
QApplication::aboutQt();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showInfoAboutApp()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->tabWidget()->addView(QUrl(QSL("qupzilla:about")), Qz::NT_CleanSelectedTab);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::showConfigInfo()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->tabWidget()->addView(QUrl(QSL("qupzilla:config")), Qz::NT_CleanSelectedTab);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::reportIssue()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->tabWidget()->addView(QUrl(QSL("qupzilla:reportbug")), Qz::NT_CleanSelectedTab);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::restoreClosedTab()
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
m_window->tabWidget()->restoreClosedTab();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowFileMenu()
|
|
|
|
{
|
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
m_actions[QSL("File/CloseWindow")]->setEnabled(mApp->windowCount() > 1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToHideFileMenu()
|
|
|
|
{
|
|
|
|
m_actions[QSL("File/CloseWindow")]->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowViewMenu()
|
|
|
|
{
|
|
|
|
if (!m_window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_actions[QSL("View/ShowStatusBar")]->setChecked(m_window->statusBar()->isVisible());
|
|
|
|
m_actions[QSL("View/FullScreen")]->setChecked(m_window->isFullScreen());
|
|
|
|
m_actions[QSL("View/PageSource")]->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToHideViewMenu()
|
|
|
|
{
|
|
|
|
m_actions[QSL("View/PageSource")]->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowEditMenu()
|
|
|
|
{
|
|
|
|
if (!m_window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebView* view = m_window->weView();
|
|
|
|
|
2015-01-27 11:01:52 +01:00
|
|
|
m_actions[QSL("Edit/Undo")]->setEnabled(view->pageAction(QWebEnginePage::Undo)->isEnabled());
|
|
|
|
m_actions[QSL("Edit/Redo")]->setEnabled(view->pageAction(QWebEnginePage::Redo)->isEnabled());
|
|
|
|
m_actions[QSL("Edit/Cut")]->setEnabled(view->pageAction(QWebEnginePage::Cut)->isEnabled());
|
|
|
|
m_actions[QSL("Edit/Copy")]->setEnabled(view->pageAction(QWebEnginePage::Copy)->isEnabled());
|
|
|
|
m_actions[QSL("Edit/Paste")]->setEnabled(view->pageAction(QWebEnginePage::Paste)->isEnabled());
|
|
|
|
m_actions[QSL("Edit/SelectAll")]->setEnabled(view->pageAction(QWebEnginePage::SelectAll)->isEnabled());
|
2014-03-31 17:58:56 +02:00
|
|
|
m_actions[QSL("Edit/Find")]->setEnabled(true);
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToHideEditMenu()
|
|
|
|
{
|
|
|
|
m_actions[QSL("Edit/Undo")]->setEnabled(false);
|
|
|
|
m_actions[QSL("Edit/Redo")]->setEnabled(false);
|
|
|
|
m_actions[QSL("Edit/Cut")]->setEnabled(false);
|
|
|
|
m_actions[QSL("Edit/Copy")]->setEnabled(false);
|
|
|
|
m_actions[QSL("Edit/Paste")]->setEnabled(false);
|
|
|
|
m_actions[QSL("Edit/SelectAll")]->setEnabled(false);
|
2014-03-31 17:58:56 +02:00
|
|
|
m_actions[QSL("Edit/Find")]->setEnabled(false);
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowToolsMenu()
|
|
|
|
{
|
2015-10-14 12:50:30 +02:00
|
|
|
if (!m_window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_actions[QSL("Tools/SiteInfo")]->setEnabled(SiteInfo::canShowSiteInfo(m_window->weView()->url()));
|
2015-10-13 02:34:47 +02:00
|
|
|
|
|
|
|
m_submenuExtensions->clear();
|
|
|
|
mApp->plugins()->populateExtensionsMenu(m_submenuExtensions);
|
|
|
|
|
|
|
|
m_submenuExtensions->menuAction()->setVisible(!m_submenuExtensions->actions().isEmpty());
|
2014-03-10 16:55:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToHideToolsMenu()
|
|
|
|
{
|
|
|
|
m_actions[QSL("Tools/SiteInfo")]->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
2015-04-09 20:07:56 +02:00
|
|
|
void MainMenu::aboutToShowSuperMenu()
|
|
|
|
{
|
|
|
|
if (!m_window) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebView* view = m_window->weView();
|
|
|
|
|
|
|
|
m_actions[QSL("Edit/Find")]->setEnabled(true);
|
|
|
|
m_actions[QSL("Edit/SelectAll")]->setEnabled(view->pageAction(QWebEnginePage::SelectAll)->isEnabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToHideSuperMenu()
|
|
|
|
{
|
|
|
|
m_actions[QSL("Edit/Find")]->setEnabled(true);
|
|
|
|
m_actions[QSL("Edit/SelectAll")]->setEnabled(false);
|
|
|
|
}
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
void MainMenu::aboutToShowToolbarsMenu()
|
|
|
|
{
|
|
|
|
QMenu* menu = qobject_cast<QMenu*>(sender());
|
|
|
|
Q_ASSERT(menu);
|
|
|
|
|
|
|
|
if (m_window) {
|
|
|
|
menu->clear();
|
|
|
|
m_window->createToolbarsMenu(menu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowSidebarsMenu()
|
|
|
|
{
|
|
|
|
QMenu* menu = qobject_cast<QMenu*>(sender());
|
|
|
|
Q_ASSERT(menu);
|
|
|
|
|
|
|
|
if (m_window) {
|
|
|
|
m_window->createSidebarsMenu(menu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::aboutToShowEncodingMenu()
|
|
|
|
{
|
|
|
|
QMenu* menu = qobject_cast<QMenu*>(sender());
|
|
|
|
Q_ASSERT(menu);
|
|
|
|
|
|
|
|
if (m_window) {
|
|
|
|
menu->clear();
|
|
|
|
m_window->createEncodingMenu(menu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::init()
|
|
|
|
{
|
|
|
|
#define ADD_ACTION(name, menu, icon, trName, slot, shortcut) \
|
|
|
|
action = menu->addAction(icon, trName); \
|
|
|
|
action->setShortcut(QKeySequence(QSL(shortcut))); \
|
|
|
|
connect(action, SIGNAL(triggered()), this, slot); \
|
|
|
|
m_actions[QSL(name)] = action
|
|
|
|
|
|
|
|
#define ADD_CHECKABLE_ACTION(name, menu, icon, trName, slot, shortcut) \
|
|
|
|
action = menu->addAction(icon, trName); \
|
|
|
|
action->setShortcut(QKeySequence(QSL(shortcut))); \
|
|
|
|
action->setCheckable(true); \
|
|
|
|
connect(action, SIGNAL(triggered(bool)), this, slot); \
|
|
|
|
m_actions[QSL(name)] = action
|
|
|
|
|
|
|
|
// Standard actions - needed on Mac to be placed correctly in "application" menu
|
|
|
|
QAction* action = new QAction(QIcon::fromTheme(QSL("help-about")), tr("&About QupZilla"), this);
|
|
|
|
action->setMenuRole(QAction::AboutRole);
|
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(showAboutDialog()));
|
|
|
|
m_actions[QSL("Standard/About")] = action;
|
|
|
|
|
2014-03-24 16:08:33 +01:00
|
|
|
action = new QAction(IconProvider::settingsIcon(), tr("Pr&eferences"), this);
|
2014-03-10 16:55:11 +01:00
|
|
|
action->setMenuRole(QAction::PreferencesRole);
|
|
|
|
action->setShortcut(QKeySequence(QKeySequence::Preferences));
|
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(showPreferences()));
|
|
|
|
m_actions[QSL("Standard/Preferences")] = action;
|
|
|
|
|
|
|
|
action = new QAction(QIcon::fromTheme(QSL("application-exit")), tr("Quit"), this);
|
|
|
|
action->setMenuRole(QAction::QuitRole);
|
2014-07-17 23:05:38 +02:00
|
|
|
// shortcut set from browserwindow
|
2014-03-10 16:55:11 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(quitApplication()));
|
|
|
|
m_actions[QSL("Standard/Quit")] = action;
|
|
|
|
|
|
|
|
// File menu
|
|
|
|
m_menuFile = new QMenu(tr("&File"));
|
|
|
|
connect(m_menuFile, SIGNAL(aboutToShow()), this, SLOT(aboutToShowFileMenu()));
|
|
|
|
connect(m_menuFile, SIGNAL(aboutToHide()), this, SLOT(aboutToHideFileMenu()));
|
|
|
|
|
2014-03-24 16:08:33 +01:00
|
|
|
ADD_ACTION("File/NewTab", m_menuFile, IconProvider::newTabIcon(), tr("New Tab"), SLOT(newTab()), "Ctrl+T");
|
|
|
|
ADD_ACTION("File/NewWindow", m_menuFile, IconProvider::newWindowIcon(), tr("&New Window"), SLOT(newWindow()), "Ctrl+N");
|
|
|
|
ADD_ACTION("File/NewPrivateWindow", m_menuFile, IconProvider::privateBrowsingIcon(), tr("New &Private Window"), SLOT(newPrivateWindow()), "Ctrl+Shift+P");
|
2014-03-10 16:55:11 +01:00
|
|
|
ADD_ACTION("File/OpenLocation", m_menuFile, QIcon::fromTheme(QSL("document-open-remote")), tr("Open Location"), SLOT(openLocation()), "Ctrl+L");
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("File/OpenFile", m_menuFile, QIcon::fromTheme(QSL("document-open")), tr("Open &File..."), SLOT(openFile()), "Ctrl+O");
|
|
|
|
ADD_ACTION("File/CloseWindow", m_menuFile, QIcon::fromTheme(QSL("window-close")), tr("Close Window"), SLOT(closeWindow()), "Ctrl+Shift+W");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuFile->addSeparator();
|
2016-09-18 12:09:38 +02:00
|
|
|
ADD_ACTION("File/SavePageAs", m_menuFile, QIcon::fromTheme(QSL("document-save")), tr("&Save Page As..."), SLOT(savePageAs()), "Ctrl+S");
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("File/SendLink", m_menuFile, QIcon::fromTheme(QSL("mail-message-new")), tr("Send Link..."), SLOT(sendLink()), "");
|
|
|
|
ADD_ACTION("File/Print", m_menuFile, QIcon::fromTheme(QSL("document-print")), tr("&Print..."), SLOT(printPage()), "Ctrl+P");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuFile->addSeparator();
|
|
|
|
m_menuFile->addAction(m_actions[QSL("Standard/Quit")]);
|
|
|
|
|
|
|
|
// Edit menu
|
|
|
|
m_menuEdit = new QMenu(tr("&Edit"));
|
|
|
|
connect(m_menuEdit, SIGNAL(aboutToShow()), this, SLOT(aboutToShowEditMenu()));
|
|
|
|
connect(m_menuEdit, SIGNAL(aboutToHide()), this, SLOT(aboutToHideEditMenu()));
|
|
|
|
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Edit/Undo", m_menuEdit, QIcon::fromTheme(QSL("edit-undo")), tr("&Undo"), SLOT(editUndo()), "Ctrl+Z");
|
|
|
|
ADD_ACTION("Edit/Redo", m_menuEdit, QIcon::fromTheme(QSL("edit-redo")), tr("&Redo"), SLOT(editRedo()), "Ctrl+Shift+Z");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuEdit->addSeparator();
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Edit/Cut", m_menuEdit, QIcon::fromTheme(QSL("edit-cut")), tr("&Cut"), SLOT(editCut()), "Ctrl+X");
|
|
|
|
ADD_ACTION("Edit/Copy", m_menuEdit, QIcon::fromTheme(QSL("edit-copy")), tr("C&opy"), SLOT(editCopy()), "Ctrl+C");
|
|
|
|
ADD_ACTION("Edit/Paste", m_menuEdit, QIcon::fromTheme(QSL("edit-paste")), tr("&Paste"), SLOT(editPaste()), "Ctrl+V");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuEdit->addSeparator();
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Edit/SelectAll", m_menuEdit, QIcon::fromTheme(QSL("edit-select-all")), tr("Select &All"), SLOT(editSelectAll()), "Ctrl+A");
|
|
|
|
ADD_ACTION("Edit/Find", m_menuEdit, QIcon::fromTheme(QSL("edit-find")), tr("&Find"), SLOT(editFind()), "Ctrl+F");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuEdit->addSeparator();
|
|
|
|
|
|
|
|
// View menu
|
|
|
|
m_menuView = new QMenu(tr("&View"));
|
|
|
|
connect(m_menuView, SIGNAL(aboutToShow()), this, SLOT(aboutToShowViewMenu()));
|
|
|
|
connect(m_menuView, SIGNAL(aboutToHide()), this, SLOT(aboutToHideViewMenu()));
|
|
|
|
|
|
|
|
QMenu* toolbarsMenu = new QMenu(tr("Toolbars"));
|
|
|
|
connect(toolbarsMenu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowToolbarsMenu()));
|
2014-03-10 21:37:20 +01:00
|
|
|
QMenu* sidebarMenu = new QMenu(tr("Sidebar"));
|
|
|
|
connect(sidebarMenu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowSidebarsMenu()));
|
2014-03-10 16:55:11 +01:00
|
|
|
QMenu* encodingMenu = new QMenu(tr("Character &Encoding"));
|
|
|
|
connect(encodingMenu, SIGNAL(aboutToShow()), this, SLOT(aboutToShowEncodingMenu()));
|
|
|
|
|
2014-03-26 10:10:33 +01:00
|
|
|
// Create menus to make shortcuts available even before first showing the menu
|
|
|
|
m_window->createToolbarsMenu(toolbarsMenu);
|
|
|
|
m_window->createSidebarsMenu(sidebarMenu);
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuView->addMenu(toolbarsMenu);
|
2014-03-10 21:37:20 +01:00
|
|
|
m_menuView->addMenu(sidebarMenu);
|
2014-03-10 16:55:11 +01:00
|
|
|
ADD_CHECKABLE_ACTION("View/ShowStatusBar", m_menuView, QIcon(), tr("Sta&tus Bar"), SLOT(showStatusBar()), "");
|
|
|
|
m_menuView->addSeparator();
|
2014-03-24 16:08:33 +01:00
|
|
|
ADD_ACTION("View/Stop", m_menuView, QIcon::fromTheme(QSL("process-stop")), tr("&Stop"), SLOT(stop()), "Esc");
|
|
|
|
ADD_ACTION("View/Reload", m_menuView, QIcon::fromTheme(QSL("view-refresh")), tr("&Reload"), SLOT(reload()), "F5");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuView->addSeparator();
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("View/ZoomIn", m_menuView, QIcon::fromTheme(QSL("zoom-in")), tr("Zoom &In"), SLOT(zoomIn()), "Ctrl++");
|
|
|
|
ADD_ACTION("View/ZoomOut", m_menuView, QIcon::fromTheme(QSL("zoom-out")), tr("Zoom &Out"), SLOT(zoomOut()), "Ctrl+-");
|
|
|
|
ADD_ACTION("View/ZoomReset", m_menuView, QIcon::fromTheme(QSL("zoom-original")), tr("Reset"), SLOT(zoomReset()), "Ctrl+0");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuView->addSeparator();
|
|
|
|
m_menuView->addMenu(encodingMenu);
|
|
|
|
m_menuView->addSeparator();
|
2014-03-31 17:58:56 +02:00
|
|
|
ADD_ACTION("View/PageSource", m_menuView, QIcon::fromTheme(QSL("text-html")), tr("&Page Source"), SLOT(showPageSource()), "Ctrl+U");
|
2014-03-10 16:55:11 +01:00
|
|
|
ADD_CHECKABLE_ACTION("View/FullScreen", m_menuView, QIcon(), tr("&FullScreen"), SLOT(showFullScreen()), "F11");
|
|
|
|
|
|
|
|
// Tools menu
|
|
|
|
m_menuTools = new QMenu(tr("&Tools"));
|
|
|
|
connect(m_menuTools, SIGNAL(aboutToShow()), this, SLOT(aboutToShowToolsMenu()));
|
|
|
|
connect(m_menuTools, SIGNAL(aboutToHide()), this, SLOT(aboutToHideToolsMenu()));
|
|
|
|
|
|
|
|
ADD_ACTION("Tools/WebSearch", m_menuTools, QIcon(), tr("&Web Search"), SLOT(webSearch()), "Ctrl+K");
|
2014-03-31 17:58:56 +02:00
|
|
|
ADD_ACTION("Tools/SiteInfo", m_menuTools, QIcon::fromTheme(QSL("dialog-information")), tr("Site &Info"), SLOT(showSiteInfo()), "Ctrl+I");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuTools->addSeparator();
|
|
|
|
ADD_ACTION("Tools/DownloadManager", m_menuTools, QIcon(), tr("&Download Manager"), SLOT(showDownloadManager()), "Ctrl+Y");
|
|
|
|
ADD_ACTION("Tools/CookiesManager", m_menuTools, QIcon(), tr("&Cookies Manager"), SLOT(showCookieManager()), "");
|
|
|
|
ADD_ACTION("Tools/AdBlock", m_menuTools, QIcon(), tr("&AdBlock"), SLOT(showAdBlockDialog()), "");
|
2015-09-29 23:35:16 +02:00
|
|
|
ADD_ACTION("Tools/WebInspector", m_menuTools, QIcon(), tr("Web In&spector"), SLOT(toggleWebInspector()), "Ctrl+Shift+I");
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Tools/ClearRecentHistory", m_menuTools, QIcon::fromTheme(QSL("edit-clear")), tr("Clear Recent &History"), SLOT(showClearRecentHistoryDialog()), "Ctrl+Shift+Del");
|
2015-10-13 02:34:47 +02:00
|
|
|
|
2016-04-05 09:19:57 +02:00
|
|
|
if (!WebInspector::isEnabled())
|
|
|
|
m_actions.value(QSL("Tools/WebInspector"))->setVisible(false);
|
|
|
|
|
2015-10-13 02:34:47 +02:00
|
|
|
m_submenuExtensions = new QMenu(tr("&Extensions"));
|
|
|
|
m_submenuExtensions->menuAction()->setVisible(false);
|
|
|
|
m_menuTools->addMenu(m_submenuExtensions);
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuTools->addSeparator();
|
|
|
|
|
|
|
|
// Help menu
|
|
|
|
m_menuHelp = new QMenu(tr("&Help"));
|
|
|
|
|
|
|
|
#ifndef Q_OS_MAC
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Help/AboutQt", m_menuHelp, QIcon(QSL(":/icons/menu/qt.png")), tr("About &Qt"), SLOT(aboutQt()), "");
|
2014-03-10 16:55:11 +01:00
|
|
|
m_menuHelp->addAction(m_actions[QSL("Standard/About")]);
|
|
|
|
m_menuHelp->addSeparator();
|
|
|
|
#endif
|
|
|
|
|
2014-03-10 19:41:44 +01:00
|
|
|
ADD_ACTION("Help/InfoAboutApp", m_menuHelp, QIcon::fromTheme(QSL("help-contents")), tr("Information about application"), SLOT(showInfoAboutApp()), "");
|
2014-03-10 16:55:11 +01:00
|
|
|
ADD_ACTION("Help/ConfigInfo", m_menuHelp, QIcon(), tr("Configuration Information"), SLOT(showConfigInfo()), "");
|
|
|
|
ADD_ACTION("Help/ReportIssue", m_menuHelp, QIcon(), tr("Report &Issue"), SLOT(reportIssue()), "");
|
|
|
|
|
|
|
|
m_actions[QSL("Help/InfoAboutApp")]->setShortcut(QKeySequence(QKeySequence::HelpContents));
|
|
|
|
|
|
|
|
// History menu
|
|
|
|
m_menuHistory = new HistoryMenu();
|
|
|
|
m_menuHistory->setMainWindow(m_window);
|
|
|
|
|
|
|
|
// Bookmarks menu
|
|
|
|
m_menuBookmarks = new BookmarksMenu();
|
|
|
|
m_menuBookmarks->setMainWindow(m_window);
|
|
|
|
|
|
|
|
// Other actions
|
2014-03-10 19:41:44 +01:00
|
|
|
action = new QAction(QIcon::fromTheme(QSL("user-trash")), tr("Restore &Closed Tab"), this);
|
|
|
|
action->setShortcut(QKeySequence(QSL("Ctrl+Shift+T")));
|
2014-03-10 16:55:11 +01:00
|
|
|
connect(action, SIGNAL(triggered()), this, SLOT(restoreClosedTab()));
|
|
|
|
m_actions[QSL("Other/RestoreClosedTab")] = action;
|
|
|
|
|
|
|
|
#ifdef Q_OS_MAC
|
2014-11-04 10:27:40 +01:00
|
|
|
m_actions[QSL("View/FullScreen")]->setShortcut(QKeySequence(QSL("Ctrl+Meta+F")));
|
2014-03-10 16:55:11 +01:00
|
|
|
|
|
|
|
// Add standard actions to File Menu (as it won't be ever cleared) and Mac menubar should move them to "Application" menu
|
|
|
|
m_menuFile->addAction(m_actions[QSL("Standard/About")]);
|
|
|
|
m_menuFile->addAction(m_actions[QSL("Standard/Preferences")]);
|
2014-09-25 14:09:26 +02:00
|
|
|
|
2014-11-01 23:13:56 +01:00
|
|
|
// Prevent ConfigInfo action to be detected as "Preferences..." action in Mac menubar
|
|
|
|
m_actions[QSL("Help/ConfigInfo")]->setMenuRole(QAction::NoRole);
|
|
|
|
|
2014-09-25 14:09:26 +02:00
|
|
|
// Create Dock menu
|
|
|
|
QMenu* dockMenu = new QMenu(0);
|
|
|
|
dockMenu->addAction(m_actions[QSL("File/NewTab")]);
|
|
|
|
dockMenu->addAction(m_actions[QSL("File/NewWindow")]);
|
|
|
|
dockMenu->addAction(m_actions[QSL("File/NewPrivateWindow")]);
|
|
|
|
qt_mac_set_dock_menu(dockMenu);
|
2014-03-10 16:55:11 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
|
2014-03-10 19:41:44 +01:00
|
|
|
m_menuEdit->addAction(m_actions[QSL("Standard/Preferences")]);
|
2014-03-10 16:55:11 +01:00
|
|
|
#elif !defined(Q_OS_MAC)
|
|
|
|
m_menuTools->addAction(m_actions[QSL("Standard/Preferences")]);
|
|
|
|
#endif
|
|
|
|
|
2014-03-31 17:58:56 +02:00
|
|
|
// Menus are hidden by default
|
|
|
|
aboutToHideFileMenu();
|
|
|
|
aboutToHideViewMenu();
|
|
|
|
aboutToHideEditMenu();
|
|
|
|
aboutToHideToolsMenu();
|
|
|
|
|
2014-03-10 16:55:11 +01:00
|
|
|
addActionsToWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainMenu::addActionsToWindow()
|
|
|
|
{
|
|
|
|
// Make shortcuts available even in fullscreen (hidden menu)
|
|
|
|
|
|
|
|
QList<QAction*> actions;
|
|
|
|
actions << m_menuFile->actions();
|
|
|
|
actions << m_menuEdit->actions();
|
|
|
|
actions << m_menuView->actions();
|
|
|
|
actions << m_menuTools->actions();
|
|
|
|
actions << m_menuHelp->actions();
|
|
|
|
actions << m_menuHistory->actions();
|
|
|
|
actions << m_menuBookmarks->actions();
|
|
|
|
actions << m_actions[QSL("Other/RestoreClosedTab")];
|
|
|
|
|
|
|
|
for (int i = 0; i < actions.size(); ++i) {
|
|
|
|
QAction* action = actions.at(i);
|
|
|
|
if (action->menu()) {
|
|
|
|
actions += action->menu()->actions();
|
|
|
|
}
|
|
|
|
m_window->addAction(action);
|
|
|
|
}
|
|
|
|
}
|
2014-03-10 19:41:44 +01:00
|
|
|
|
|
|
|
void MainMenu::callSlot(const char* slot)
|
|
|
|
{
|
|
|
|
if (m_window) {
|
|
|
|
QMetaObject::invokeMethod(m_window, slot);
|
|
|
|
}
|
|
|
|
}
|