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
qwindowsiconengine.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 QWINDOWSICONENGINE_H
6#define QWINDOWSICONENGINE_H
7
8#include <QtGui/private/qfonticonengine_p.h>
9
10#ifndef QT_NO_ICON
11
12QT_BEGIN_NAMESPACE
13
14class QWindowsIconEngine : public QFontIconEngine
15{
16public:
17 QWindowsIconEngine(const QString &iconName);
18 ~QWindowsIconEngine();
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 // QWINDOWSICONENGINE_H
Combined button and popup list for selecting options.
static QString getGlyphs(QStringView iconName)