aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow/mainwindow.cpp
blob: c039c8e5a88d7980acc8af7442f1ddf58bbaf9d7 (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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: https://neueland.iserlohn-fortress.net/smolbote.hg
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "mainwindow.h"
#include "webengine/webview.h"
#include "widgets/navigationbar.h"
#include "window.h"
#include <QApplication>
#include <QCloseEvent>
#include <QDockWidget>
#include <QLineEdit>
#include <QMdiArea>
#include <QMdiSubWindow>
#include <QMenuBar>
#include <QMessageBox>
#include <QShortcut>
#include <QToolBar>
#include <QUrl>
#include <about/aboutdialog.h>
#include <configuration/configuration.h>

MainWindow::MainWindow(std::shared_ptr<Configuration> &config, QWidget *parent)
    : QMainWindow(parent)
    , mdiArea(new QMdiArea(this))
{
    Q_ASSERT(config);
    m_config = config;

    // create UI
    resize(config->value<int>("mainwindow.width").value(), config->value<int>("mainwindow.height").value());
    titleSuffix = QString::fromStdString(config->value<std::string>("mainwindow.title").value());
    setWindowTitle(tr("smolbote"));
    if(config->value<bool>("mainwindow.maximized").value())
        showMaximized();
    else
        show();

    createMenuBar();
    auto *navigationToolBar = new NavigationBar(config->section("navigation"), this);
    navigationToolBar->setMovable(config->value<bool>("navigation.movable").value());
    addToolBar(Qt::TopToolBarArea, navigationToolBar);
    navigationToolBar->connectWebView(nullptr);

    setCentralWidget(mdiArea);
    mdiArea->setFocus();

    connect(mdiArea, &QMdiArea::subWindowActivated, this, [this, navigationToolBar](QMdiSubWindow *window) {
        disconnect(titleChangedConnection);
        disconnect(navigationBarConnection);

        auto *w = qobject_cast<Window *>(window);
        if(w != nullptr) {
            setWindowTitle(w->windowTitle() + titleSuffix);
            titleChangedConnection = connect(w, &Window::windowTitleChanged, this, [this](const QString &title) {
                this->setWindowTitle(title + titleSuffix);
            });

            navigationToolBar->connectWebView(w->currentView());
            navigationBarConnection = connect(w, &Window::currentViewChanged, navigationToolBar, &NavigationBar::connectWebView);
        }
    });

    auto *tileShortcut = new QShortcut(QKeySequence(config->value<std::string>("mainwindow.shortcuts.tileWindows").value().c_str()), this);
    connect(tileShortcut, &QShortcut::activated, this, [this]() {
        mdiArea->tileSubWindows();
    });
}

MainWindow::~MainWindow()
{
    disconnect(titleChangedConnection);
    disconnect(navigationBarConnection);
}

void MainWindow::createMenuBar()
{
    auto *smolboteMenu = menuBar()->addMenu(qApp->applicationDisplayName());
    smolboteMenu->addAction(tr("New tab"), this, [this]() {
        createTab(QUrl::fromUserInput("about:blank"));
    },
        QKeySequence(m_config->value<std::string>("mainwindow.shortcuts.newTab").value().c_str()));

    smolboteMenu->addAction(tr("New tab group"), this, [this]() {
        createSubWindow(QUrl::fromUserInput("about:blank"));
    },
        QKeySequence(m_config->value<std::string>("mainwindow.shortcuts.newGroup").value().c_str()));
    smolboteMenu->addAction(tr("New window"))->setEnabled(false);

    smolboteMenu->addSeparator();

    smolboteMenu->addAction(tr("About"), this, [this]() {
        auto *dlg = new AboutDialog(this);
        dlg->exec();
    },
        QKeySequence(m_config->value<std::string>("mainwindow.shortcuts.about").value().c_str()));
    smolboteMenu->addAction(tr("About Qt"), qApp, &QApplication::aboutQt);

    smolboteMenu->addSeparator();

    smolboteMenu->addAction(tr("Quit"), qApp, &QApplication::quit,
        QKeySequence(m_config->value<std::string>("mainwindow.shortcuts.quit").value().c_str()));

    toolsMenu = menuBar()->addMenu(tr("Tools"));
}

void MainWindow::addAction(ActionLocation where, QAction *action)
{
    switch(where) {
    case ToolsMenu:
        toolsMenu->addAction(action);
        break;
    default:
        QMainWindow::addAction(action);
        break;
    }
}

void MainWindow::addDockWidget(Qt::DockWidgetArea area, QWidget *widget)
{
    QDockWidget *dock = new QDockWidget(widget->windowTitle(), this);
    dock->setAttribute(Qt::WA_DeleteOnClose, true);
    dock->setWidget(widget);

    connect(dock, &QDockWidget::visibilityChanged, [dock](bool visible) {
        if(!visible && dock->widget()) {
            dock->widget()->setParent(nullptr);
        }
    });

    QMainWindow::addDockWidget(area, dock);
}

void MainWindow::createTab(const QUrl &url)
{
    auto *w = qobject_cast<Window *>(mdiArea->currentSubWindow());
    if(w == nullptr) {
        w = createSubWindow(url);
    } else {
        w->addTab(url);
    }
}

Window *MainWindow::createSubWindow(const QUrl &url)
{
    auto *w = new Window(this);
    mdiArea->addSubWindow(w);
    w->showMaximized();
    w->setFocus();

    w->addTab(url);

    return w;
}

void MainWindow::closeEvent(QCloseEvent *event)
{
    if(mdiArea->subWindowList().count() > 1) {
        int choice = QMessageBox::question(this, tr("Close multiple subwindows?"), tr("Do you want to close all subwindows?"), QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
        if(choice == QMessageBox::No) {
            event->ignore();
            return;
        }
    }

    mdiArea->closeAllSubWindows();
    if(mdiArea->currentSubWindow())
        event->ignore();
    else
        event->accept();
}