summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/minimal/doc/src/minimal.qdoc
blob: 8bb5317c4a1c285d9ba40b9083cf38852988317a (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
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Free Documentation License Usage
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file. Please review the following information to ensure
** the GNU Free Documentation License version 1.3 requirements
** will be met: https://www.gnu.org/licenses/fdl-1.3.html.
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
    \example webenginewidgets/minimal
    \title WebEngine Widgets Minimal Example
    \ingroup webengine-widgetexamples
    \brief Displays a web page using Qt WebEngine Widgets

    \image minimal-example.png

    \e {WebEngine Widgets Minimal Example} demonstrates how to use
    \l{QWebEngineView} to render a web page. It shows the minimum amount of code
    needed to load and display an HTML page, and can be used as a basis for
    further experimentation.

    \include examples-run.qdocinc

    \section1 The Code

    In the \c main function we first set the Qt::AA_EnableHighDpiScaling.
    This lets the web view automatically scale on high-dpi displays.

    Next, we instantiate a QApplication and a QWebEngineView. The URL
    to load is taken from the command-line in \l commandLineUrlArgument and
    loaded by calling \l QWebEngineView::setUrl. The view widget is
    given a reasonable default size, and shown.
    Finally, QApplication::exec() launches the main event loop.

    \quotefromfile webenginewidgets/minimal/main.cpp
    \skipto #include

    \printuntil }

    \section1 Requirements

    The example requires a working internet connection to render
    the \l{Qt Homepage}.
    An optional system proxy should be picked up automatically.
    However, for proxies that require a username or password,
    you need to connect to
    QWebEnginePage::proxyAuthenticationRequired.

    \l{Qt WebEngine Widgets} uses the \l{Qt Quick Scene Graph} to compose the
    page. Therefore, OpenGL support is required.
*/