// Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Tobias Koenig // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QHAIKUCURSOR_H #define QHAIKUCURSOR_H #include #include QT_BEGIN_NAMESPACE class QHaikuCursor : public QPlatformCursor { public: QHaikuCursor(); #ifndef QT_NO_CURSOR void changeCursor(QCursor *windowCursor, QWindow *window) override; #endif private: QHash m_cursorIds; QHash m_cursors; }; QT_END_NAMESPACE #endif