aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/mainwindowmenubar.cpp
blob: c233d2960fe47f029d1c7015120314f5cd6ef42d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*******************************************************************************
 **
 ** smolbote: yet another qute browser
 ** Copyright (C) 2017  Xian Nox
 **
 ** 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 "mainwindowmenubar.h"
#include <QApplication>
#include <QMenu>
#include <QInputDialog>
#include "forms/profilesdialog.h"
#include "mainwindow.h"
#include <settings/configuration.h>

MainWindowMenuBar::MainWindowMenuBar(std::shared_ptr<Configuration> config, MainWindow *parent) :
    QMenuBar(parent)
{
    Q_ASSERT(config);
    Q_ASSERT(parent);

    // Browser menu
    QMenu *browserMenu = new QMenu(qApp->applicationName(), this);
    addMenu(browserMenu);

    QAction *newWindowAction = browserMenu->addAction(tr("New Window"));
    connect(newWindowAction, &QAction::triggered, parent, [parent]() {
        parent->newWindow();
    });
    newWindowAction->setShortcut(QKeySequence(config->value<std::string>("browser.shortcuts.newWindow").value().c_str()));

    QAction *newTabAction = browserMenu->addAction(tr("New Tab"));
    connect(newTabAction, &QAction::triggered, parent, [parent]() {
        parent->newTab();
    });
    newTabAction->setShortcut(QKeySequence(config->value<std::string>("browser.shortcuts.newTab").value().c_str()));

    browserMenu->addSeparator();
    browserMenu->addAction(tr("About"), parent, &MainWindow::about, QKeySequence(config->value<std::string>("browser.shortcuts.about").value().c_str()));
    browserMenu->addAction(tr("About Qt"), qApp, &QApplication::aboutQt);
    browserMenu->addSeparator();

    QAction *quitAction = browserMenu->addAction(tr("Quit"), qApp, &QApplication::quit);
    quitAction->setShortcut(QKeySequence(config->value<std::string>("browser.shortcuts.quit").value().c_str()));

    // Tools menu
    QMenu *toolsMenu = new QMenu(tr("Tools"), this);
    addMenu(toolsMenu);
    QAction *downloadsAction = toolsMenu->addAction(tr("Downloads"));
    downloadsAction->setParent(parent);
    //downloadsAction->setShortcut(QKeySequence::fromString(browser->settings()->value("downloads.dialogShortcut").toString()));
    //connect(downloadsAction, &QAction::triggered, this, [&]() {
    //    m_parentWindow->addTabbedDock(Qt::RightDockWidgetArea, browser->downloads());
    //});

    QAction *bookmarksAction = toolsMenu->addAction(tr("Bookmarks"));
    bookmarksAction->setParent(parent);
    //bookmarksAction->setShortcut(QKeySequence(browser->settings()->value("bookmarks.dialogShortcut").toString()));
    //connect(bookmarksAction, &QAction::triggered, this, [&]() {
    //    m_parentWindow->addTabbedDock(Qt::RightDockWidgetArea, browser->bookmarks());
    //});
    toolsMenu->addSeparator();
    //toolsMenu->addAction(tr("Filter"), browser->blocklists(), SLOT(show()), QKeySequence::fromString(browser->settings()->value("blocker.shortcut").toString()));

    // Plugins
//    if(qApp->plugin("")) {
//        GuiInterface *gui = qobject_cast<GuiInterface *>(qApp->plugin(""));
//        if(gui) {
//            toolsMenu->addAction(gui->action());
//        } else {
//            qDebug("Plugin doesn't gui");
//        }
//    } else {
//        qDebug("No plugin!");
//    }

    // Profile menu
    QMenu *profileMenu = new QMenu(tr("Profile"), this);
    addMenu(profileMenu);
    //profileMenu->addAction(tr("Profiles"), this, SLOT(handleLoadProfile()));

    // Page menu
    QMenu *pageMenu = new QMenu(tr("Page"), this);
    addMenu(pageMenu);
    pageMenu->addAction(tr("Print"))->setEnabled(false);
    m_printAction = pageMenu->addAction(tr("Print to PDF"));
    pageMenu->addAction(tr("Zoom"))->setEnabled(false);
}

QAction *MainWindowMenuBar::printAction()
{
    return m_printAction;
}

void MainWindowMenuBar::handleLoadProfile(MainWindow *window)
{
    ProfilesDialog *dlg = new ProfilesDialog(window, this);
    dlg->exec();

//    bool ok;
//    QString _name = QInputDialog::getText(this, tr("Load Profile"), tr("Enter Profile name"), QLineEdit::Normal, QString(""), &ok);
//    if(ok) {
//        m_parentWindow->setProfile(qApp->profile(_name));
//    }
}