summaryrefslogtreecommitdiffstats
path: root/examples/webview/minibrowser/main.cpp
blob: 0027834305633f730976f8aa5efeac7505852c8f (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtCore/QUrl>
#include <QtCore/QCommandLineOption>
#include <QtCore/QCommandLineParser>
#include <QGuiApplication>
#include <QStyleHints>
#include <QScreen>
#include <QQmlApplicationEngine>
#include <QtQml/QQmlContext>
#include <QtWebView/QtWebView>

using namespace Qt::StringLiterals;

// Workaround: As of Qt 5.4 QtQuick does not expose QUrl::fromUserInput.
class Utils : public QObject
{
    Q_OBJECT
public:
    using QObject::QObject;

    Q_INVOKABLE static QUrl fromUserInput(const QString &userInput);
};

QUrl Utils::fromUserInput(const QString &userInput)
{
    if (!userInput.isEmpty()) {
        if (const QUrl result = QUrl::fromUserInput(userInput); result.isValid())
            return result;
    }
    return QUrl::fromUserInput("about:blank"_L1);
}

#include "main.moc"

int main(int argc, char *argv[])
{
//! [0]
    QtWebView::initialize();
    QGuiApplication app(argc, argv);
//! [0]
    QGuiApplication::setApplicationDisplayName(QCoreApplication::translate("main",
                                                                           "QtWebView Example"));
    QCommandLineParser parser;
    QCoreApplication::setApplicationVersion(QT_VERSION_STR);
    parser.setApplicationDescription(QGuiApplication::applicationDisplayName());
    parser.addHelpOption();
    parser.addVersionOption();
    parser.addPositionalArgument("url"_L1, "The initial URL to open."_L1);
    parser.process(QCoreApplication::arguments());
    const QString initialUrl = parser.positionalArguments().value(0, "https://www.qt.io"_L1);

    QQmlApplicationEngine engine;
    QQmlContext *context = engine.rootContext();
    context->setContextProperty("utils"_L1, new Utils(&engine));
    context->setContextProperty("initialUrl"_L1,
                                Utils::fromUserInput(initialUrl));

    QRect geometry = QGuiApplication::primaryScreen()->availableGeometry();
    if (!QGuiApplication::styleHints()->showIsFullScreen()) {
        const QSize size = geometry.size() * 4 / 5;
        const QSize offset = (geometry.size() - size) / 2;
        const QPoint pos = geometry.topLeft() + QPoint(offset.width(), offset.height());
        geometry = QRect(pos, size);
    }

    engine.setInitialProperties(QVariantMap{{"x"_L1, geometry.x()},
                                            {"y"_L1, geometry.y()},
                                            {"width"_L1, geometry.width()},
                                            {"height"_L1, geometry.height()}});

    engine.load(QUrl("qrc:/main.qml"_L1));
    if (engine.rootObjects().isEmpty())
        return -1;

    return app.exec();
}