aboutsummaryrefslogtreecommitdiff
path: root/src/addressbar/addressbar.cpp
blob: 4f2ae6aa520dd1e26fe6093df34d99a00a499187 (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
/*
 * 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 "addressbar.h"
#include "urllineedit.h"
#include <QProgressBar>
#include <QVBoxLayout>
#include <QShortcut>

AddressBar::AddressBar(const QHash<QString, QString> &config, QWidget *parent)
    : QWidget(parent)
{
    setLayout(new QVBoxLayout());
    layout()->setContentsMargins(0, 0, 0, 0);
    layout()->setSpacing(0);

    urlBar = new UrlLineEdit(this);
    layout()->addWidget(urlBar);

    auto *focusShortcut = new QShortcut(QKeySequence(config.value("addressbar.shortcuts.focus")), parent);
    connect(focusShortcut, &QShortcut::activated, urlBar, [=]() {
        urlBar->setFocus();
        urlBar->selectAll();
    });
    connect(urlBar, &UrlLineEdit::textEdited, [=](const QString &text) {
        std::function<void(QStringList&)> callback = std::bind(&UrlLineEdit::updateCompleter, urlBar, std::placeholders::_1);
        emit complete(text, callback);
    });

    progressBar = new QProgressBar(this);
    progressBar->setMaximumHeight(5);
    progressBar->setTextVisible(false);
    layout()->addWidget(progressBar);
}

AddressBar::~AddressBar()
{
    disconnect(progressBarConnection);
}

void AddressBar::connectWebView(WebView* view)
{
    disconnect(progressBarConnection);
    urlBar->connectWebView(view);

    if(view != nullptr) {
        progressBar->setValue(view->loadProgress());
        progressBarConnection = connect(view, &QWebEngineView::loadProgress, progressBar, &QProgressBar::setValue);
    }
}