summaryrefslogtreecommitdiffstats
path: root/src/compositor/extensions/qwaylandviewporter_p.h
blob: 84e0c90fc4dbda86a7e66161a49332f810b7c97c (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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef QWAYLANDVIEWPORTER_P_H
#define QWAYLANDVIEWPORTER_P_H

#include "qwaylandviewporter.h"

#include <QtWaylandCompositor/private/qwaylandcompositorextension_p.h>
#include <QtWaylandCompositor/private/qwayland-server-viewporter.h>

#include <QtCore/qpointer.h>

//
//  W A R N I N G
//  -------------
//
// This file is not part of the Qt API.  It exists purely as an
// implementation detail.  This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//

QT_BEGIN_NAMESPACE

class QWaylandSurface;

class Q_WAYLANDCOMPOSITOR_EXPORT QWaylandViewporterPrivate
        : public QWaylandCompositorExtensionPrivate
        , public QtWaylandServer::wp_viewporter
{
    Q_DECLARE_PUBLIC(QWaylandViewporter)
public:
    explicit QWaylandViewporterPrivate() = default;

    class Q_WAYLANDCOMPOSITOR_EXPORT Viewport
            : public QtWaylandServer::wp_viewport
    {
    public:
        explicit Viewport(QWaylandSurface *surface, wl_client *client, int id);
        ~Viewport() override;
        void checkCommittedState();

    protected:
        void wp_viewport_destroy_resource(Resource *resource) override;
        void wp_viewport_destroy(Resource *resource) override;
        void wp_viewport_set_source(Resource *resource, wl_fixed_t x, wl_fixed_t y, wl_fixed_t width, wl_fixed_t height) override;
        void wp_viewport_set_destination(Resource *resource, int32_t width, int32_t height) override;

    private:
        QPointer<QWaylandSurface> m_surface = nullptr;
    };

protected:
    void wp_viewporter_destroy(Resource *resource) override;
    void wp_viewporter_get_viewport(Resource *resource, uint32_t id, wl_resource *surface) override;
};

QT_END_NAMESPACE

#endif // QWAYLANDVIEWPORTER_P_H