summaryrefslogtreecommitdiffstats
path: root/tests/auto/client/shared/viewport.h
blob: ddc4297db98965a2f13d07bed2a6c735b40c3d87 (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
// Copyright (C) 2022 David Edmundson <davidedmundson@kde.org>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef MOCKCOMPOSITOR_VIEWPORT_H
#define MOCKCOMPOSITOR_VIEWPORT_H

#include "coreprotocol.h"
#include <qwayland-server-viewporter.h>

namespace MockCompositor {

class Viewport;

class Viewporter : public Global, public QtWaylandServer::wp_viewporter
{
    Q_OBJECT
public:
    explicit Viewporter(CoreCompositor *compositor, int version = 1);
    QList<Viewport *> m_viewports;

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

class Viewport : public QObject, public QtWaylandServer::wp_viewport
{
    Q_OBJECT
public:
    explicit Viewport(Surface *surface, wl_client *client, int id, int version);

    QRectF m_source;
    QSize m_destination;

    Surface* m_surface;

Q_SIGNALS:
    void sourceChanged();
    void destinationChanged();

protected:
    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;

    void wp_viewport_destroy_resource(Resource *resource) override;
    void wp_viewport_destroy(Resource *resource) override;
};

}

#endif