summaryrefslogtreecommitdiffstats
path: root/src/plugins/shellintegration/qt-shell/qwaylandqtshellintegration.h
blob: 18d03356905dda1f0fa2dc7765d95b339034fe10 (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
// 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 QWAYLANDQTINTEGRATION_H
#define QWAYLANDQTINTEGRATION_H

#include <QtCore/qmutex.h>

#include <QtWaylandClient/private/qwaylandshellintegration_p.h>
#include <QScopedPointer>
#include "qwayland-qt-shell-unstable-v1.h"

QT_BEGIN_NAMESPACE

namespace QtWaylandClient {

class QWaylandWindow;
class QWaylandDisplay;


class Q_WAYLANDCLIENT_EXPORT QWaylandQtShellIntegration
        : public QWaylandShellIntegrationTemplate<QWaylandQtShellIntegration>
        , public QtWayland::zqt_shell_v1
{
public:
    QWaylandQtShellIntegration();

    QWaylandShellSurface *createShellSurface(QWaylandWindow *window) override;
};

}

QT_END_NAMESPACE

#endif //  QWAYLANDQTINTEGRATION_H