summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/webenginedriver/browser/main.cpp
blob: 4b8f3513fe25b5a95843f5f814fd9ea6af9135d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtWebEngineCore/qwebenginepage.h>
#include <QtWebEngineWidgets/qwebengineview.h>
#include <QtWidgets/qapplication.h>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QWebEngineView view;
    QObject::connect(view.page(), &QWebEnginePage::windowCloseRequested, &app, &QApplication::quit);
    QObject::connect(&app, &QApplication::aboutToQuit,
                     []() { fprintf(stderr, "Test browser is about to quit.\n"); });

    view.resize(100, 100);
    view.show();

    return app.exec();
}