summaryrefslogtreecommitdiffstats
path: root/src/core/api/qwebenginefullscreenrequest.h
blob: 8e25286b64f19612b782b955f941dc4071087945 (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
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QWEBENGINEFULLSCREENREQUEST_H
#define QWEBENGINEFULLSCREENREQUEST_H

#include <QtWebEngineCore/qtwebenginecoreglobal.h>

#include <QtCore/qglobal.h>
#include <QtCore/qshareddata.h>
#include <QtCore/qurl.h>

#include <functional>

QT_BEGIN_NAMESPACE

class QWebEngineFullScreenRequestPrivate;

class Q_WEBENGINECORE_EXPORT QWebEngineFullScreenRequest
{
    Q_GADGET
    Q_PROPERTY(bool toggleOn READ toggleOn CONSTANT)
    Q_PROPERTY(QUrl origin READ origin CONSTANT)

public:
    QWebEngineFullScreenRequest(const QWebEngineFullScreenRequest &other);
    QWebEngineFullScreenRequest &operator=(const QWebEngineFullScreenRequest &other);
    QWebEngineFullScreenRequest(QWebEngineFullScreenRequest &&other);
    QWebEngineFullScreenRequest &operator=(QWebEngineFullScreenRequest &&other);
    ~QWebEngineFullScreenRequest();

    Q_INVOKABLE void reject();
    Q_INVOKABLE void accept();
    bool toggleOn() const;
    QUrl origin() const;

private:
    friend class QWebEnginePagePrivate;
    friend class QQuickWebEngineViewPrivate;
    QWebEngineFullScreenRequest(const QUrl &origin, bool toggleOn, const std::function<void (bool)> &setFullScreenCallback);
    QExplicitlySharedDataPointer<QWebEngineFullScreenRequestPrivate> d_ptr;
};

QT_END_NAMESPACE

#endif