summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wasm/qwasmcursor.h
blob: 4a5cb23bf4d97c328a3af3f54b2ebec94d8e0d6f (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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef QWASMCURSOR_H
#define QWASMCURSOR_H

#include <qpa/qplatformcursor.h>
QT_BEGIN_NAMESPACE

class QWasmCursor : public QPlatformCursor
{
public:
    void changeCursor(QCursor *windowCursor, QWindow *window) override;

    QByteArray cursorShapeToHtml(Qt::CursorShape shape);
    static void setOverrideWasmCursor(const QCursor &windowCursor, QScreen *screen);
    static void clearOverrideWasmCursor(QScreen *screen);
private:
    QByteArray htmlCursorName = "default";
    void setWasmCursor(QScreen *screen, const QByteArray &name);
};

QT_END_NAMESPACE

#endif