aboutsummaryrefslogtreecommitdiff
path: root/src/subwindow/tabwidget.cpp
blob: efa2b6ab20c49eb8b5d86db406a52be8731c361e (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
176
177
178
179
180
181
182
183
184
185
186
/*
 * 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/gitea/aqua/smolbote
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "tabwidget.h"
#include "browser.h"
#include "webengine/webview.h"
#include <QAction>
#include <QContextMenuEvent>
#include <QMenu>
#include <QTabBar>
#include "webengine/webprofile.h"
#include <QWebEngineHistory>
#include "subwindow.h"

inline WebView *createViewFromInfo(TabWidget::TabInformation &tab, SubWindow *parent)
{
    auto *view = new WebView(tab.profile, std::bind(&SubWindow::createView, parent, std::placeholders::_1), parent);
    QDataStream stream(&tab.historyBuffer, QIODevice::ReadOnly);
    stream >> *view->history();
    view->history()->goToItem(view->history()->itemAt(tab.historyIndex));
    return view;
}

TabWidget::TabWidget(SubWindow *parent)
    : QTabWidget(parent)
    , m_parent(parent)
{
    setStyleSheet("QTabBar::tab { width: 200px; }");

    setTabsClosable(true);
    setTabBarAutoHide(true);
    setElideMode(Qt::ElideRight);
    setMovable(true);

    connect(this, &TabWidget::tabCloseRequested, this, &TabWidget::removeTab);

    // when changing tabs, give focus to the widget
    // otherwise when closing tabs, the tabwidget will retain focus
    connect(this, &TabWidget::currentChanged, this, [this](int index) {
        if(widget(index))
            widget(index)->setFocus();
    });

    // context menu
    tabContextMenu = new QMenu(this);
    auto *closeTab = tabContextMenu->addAction(tr("Close Tab"));
    connect(closeTab, &QAction::triggered, this, [this]() {
        removeTab(this->tabBar()->tabAt(mapFromGlobal(tabContextMenu->pos())));
    });

    auto *closeTabsLeft = tabContextMenu->addAction(tr("Close Tabs left"));
    connect(closeTabsLeft, &QAction::triggered, this, [this]() {
        int idx = this->tabBar()->tabAt(mapFromGlobal(tabContextMenu->pos()));
        for(int i = idx - 1; i >= 0; --i) {
            removeTab(i);
        }
    });

    auto *closeTabsRight = tabContextMenu->addAction(tr("Close Tabs right"));
    connect(closeTabsRight, &QAction::triggered, this, [this]() {
        int idx = this->tabBar()->tabAt(mapFromGlobal(tabContextMenu->pos()));
        for(int i = count() - 1; i > idx; --i) {
            removeTab(i);
        }
    });

    //
    connect(this, &TabWidget::currentChanged, this, [this](int index) {
        previous = current;
        current = index;
    });
}

TabWidget::~TabWidget()
{
    for(int i = count() - 1; i >= 0; i--) {
        delete widget(i);
    }
}

int TabWidget::addTab(WebView *view)
{
    Q_ASSERT_X(view != nullptr, "TabWidget::addTab", "Tried to add null view");

    int idx = QTabWidget::addTab(view, view->title());
    connect(view, &WebView::titleChanged, [this, view](const QString &title) {
        int idx = this->indexOf(view);
        Q_ASSERT(idx != -1);

        this->setTabText(idx, title);
    });
    connect(view, &WebView::iconChanged, [this, view](const QIcon &icon) {
        int idx = this->indexOf(view);
        Q_ASSERT(idx != -1);

        this->setTabIcon(idx, icon);
    });

    SubWindow::TabData data;
    tabBar()->setTabData(idx, QVariant::fromValue<SubWindow::TabData>(data));

    return idx;
}

void TabWidget::removeTab(int index)
{
    // deleting the widget automatically removes the tab?
    WebView *w = qobject_cast<WebView *>(widget(index));

    TabInformation tab;
    tab.profile = w->profile();
    tab.title = w->title();
    tab.historyIndex = w->history()->currentItemIndex();
    QDataStream stream(&tab.historyBuffer, QIODevice::WriteOnly);
    stream << *w->history();
    m_closedTabs.enqueue(tab);

    while(m_closedTabs.length() > 5) {
        m_closedTabs.dequeue();
    }

    setCurrentIndex(previous);
    QTabWidget::removeTab(index);
    delete w;
}

int TabWidget::restoreLastTab()
{
    if(!m_closedTabs.isEmpty()) {
        TabInformation tab = m_closedTabs.takeLast();
        return addTab(createViewFromInfo(tab, m_parent));
    }
    return -1;
}

void TabWidget::restoreTabMenu(QMenu *menu)
{
    if(m_closedTabs.isEmpty())
        return;

    for(int i = 0; i < m_closedTabs.count(); ++i) {
        auto *openAction = menu->addAction(m_closedTabs.at(i).title);

        connect(openAction, &QAction::triggered, this, [this, i]() {
            TabInformation tab = m_closedTabs.takeAt(i);
            addTab(createViewFromInfo(tab, m_parent));
        });
    }

    menu->addSeparator();

    auto *clearTabHistory = menu->addAction(tr("Clear"));
    connect(clearTabHistory, &QAction::triggered, this, [this]() {
        m_closedTabs.clear();
    });
}

void TabWidget::contextMenuEvent(QContextMenuEvent *event)
{
    // check if the context menu was called on a tab
    int tabIndex = tabBar()->tabAt(event->pos());
    if(tabIndex < 0) {
        return;
    }

    tabContextMenu->exec(event->globalPos());
}

void TabWidget::mousePressEvent(QMouseEvent *event)
{
    if(event->button() == Qt::MiddleButton) {
        int index = tabBar()->tabAt(event->pos());
        if(index >= 0) {
            removeTab(index);
        }
        event->accept();
        return;
    }

    QTabWidget::mousePressEvent(event);
}