Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qqnxcursor.h
Go to the documentation of this file.
1// Copyright (C) 2011 - 2012 Research In Motion
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QQNXCURSOR_H
5#define QQNXCURSOR_H
6
7#include <qpa/qplatformcursor.h>
8#include <QtCore/QLoggingCategory>
9
10QT_BEGIN_NAMESPACE
11
12// Q_DECLARE_LOGGING_CATEGORY(lcQpaQnx);
13
14class QQnxCursor : public QPlatformCursor
15{
16public:
17 QQnxCursor();
18
19#if !defined(QT_NO_CURSOR)
20 void changeCursor(QCursor *windowCursor, QWindow *window) override;
21#endif
22 void setPos(const QPoint &pos) override;
23
24 QPoint pos() const override;
25
26private:
27 QPoint m_pos;
28};
29
31
32#endif // QQNXCURSOR_H