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
qandroidplatformiconengine.h
Go to the documentation of this file.
1// Copyright (C) 2023 The Qt Company Ltd.
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 QANDROIDPLATFORMICONENGINE_H
5#define QANDROIDPLATFORMICONENGINE_H
6
7#include <QtGui/private/qfonticonengine_p.h>
8
9#ifndef QT_NO_ICON
10
11QT_BEGIN_NAMESPACE
12
13class QAndroidPlatformIconEngine : public QFontIconEngine
14{
15public:
16 QAndroidPlatformIconEngine(const QString &iconName);
17 ~QAndroidPlatformIconEngine();
18
19 QString key() const override;
20 QIconEngine *clone() const override;
21
22protected:
23 QString string() const override;
24
25private:
26 const QString m_glyphs;
27};
28
30
31#endif // QT_NO_ICON
32
33#endif // QANDROIDPLATFORMICONENGINE_H
Q_DECLARE_JNI_CLASS(MotionEvent, "android/view/MotionEvent")