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// Qt-Security score:significant reason:default
4
5#ifndef QANDROIDPLATFORMICONENGINE_H
6#define QANDROIDPLATFORMICONENGINE_H
7
8#include <QtGui/private/qfonticonengine_p.h>
9
10#ifndef QT_NO_ICON
11
12QT_BEGIN_NAMESPACE
13
14class QAndroidPlatformIconEngine : public QFontIconEngine
15{
16public:
17 QAndroidPlatformIconEngine(const QString &iconName);
18 ~QAndroidPlatformIconEngine();
19
20 QString key() const override;
21 QIconEngine *clone() const override;
22
23protected:
24 QString string() const override;
25
26private:
27 const QString m_glyphs;
28};
29
31
32#endif // QT_NO_ICON
33
34#endif // QANDROIDPLATFORMICONENGINE_H
Combined button and popup list for selecting options.
Q_DECLARE_JNI_CLASS(MotionEvent, "android/view/MotionEvent")