/**************************************************************************** ** ** Copyright (C) 2022 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ******************************************************************************/ #ifndef QICONENGINE_H #define QICONENGINE_H #include #include #include QT_BEGIN_NAMESPACE class Q_GUI_EXPORT QIconEngine { public: QIconEngine(); virtual ~QIconEngine(); virtual void paint(QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state) = 0; virtual QSize actualSize(const QSize &size, QIcon::Mode mode, QIcon::State state); virtual QPixmap pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state); virtual void addPixmap(const QPixmap &pixmap, QIcon::Mode mode, QIcon::State state); virtual void addFile(const QString &fileName, const QSize &size, QIcon::Mode mode, QIcon::State state); virtual QString key() const; virtual QIconEngine *clone() const = 0; virtual bool read(QDataStream &in); virtual bool write(QDataStream &out) const; virtual QList availableSizes(QIcon::Mode mode = QIcon::Normal, QIcon::State state = QIcon::Off); virtual QString iconName(); virtual bool isNull(); virtual QPixmap scaledPixmap(const QSize &size, QIcon::Mode mode, QIcon::State state, qreal scale); enum IconEngineHook { IsNullHook = 3, ScaledPixmapHook }; struct ScaledPixmapArgument { QSize size; QIcon::Mode mode; QIcon::State state; qreal scale; QPixmap pixmap; }; virtual void virtual_hook(int id, void *data); protected: QIconEngine(const QIconEngine &other); private: QIconEngine &operator=(const QIconEngine &other) = delete; }; QT_END_NAMESPACE #endif // QICONENGINE_H