![]() |
Qt 6.x
The Qt SDK
|
Helper base class for retrieving icons for files for usage by QFileIconProvider and related. More...
#include <qabstractfileiconengine_p.h>
Public Member Functions | |
QAbstractFileIconEngine (const QFileInfo &info, QPlatformTheme::IconOptions opts) | |
QPixmap | pixmap (const QSize &size, QIcon::Mode mode, QIcon::State) override |
Returns the icon as a pixmap with the required size, mode, and state. | |
QPixmap | scaledPixmap (const QSize &size, QIcon::Mode mode, QIcon::State, qreal scale) override |
QSize | actualSize (const QSize &size, QIcon::Mode mode, QIcon::State state) override |
Returns the actual size of the icon the engine provides for the requested size, mode and state. | |
QFileInfo | fileInfo () const |
QPlatformTheme::IconOptions | options () const |
![]() | |
QPixmapIconEngine () | |
QPixmapIconEngine (const QPixmapIconEngine &) | |
~QPixmapIconEngine () | |
void | paint (QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state) override |
Uses the given painter to paint the icon with the required mode and state into the rectangle rect. | |
QPixmap | pixmap (const QSize &size, QIcon::Mode mode, QIcon::State state) override |
Returns the icon as a pixmap with the required size, mode, and state. | |
QPixmap | scaledPixmap (const QSize &size, QIcon::Mode mode, QIcon::State state, qreal scale) override |
QPixmapIconEngineEntry * | bestMatch (const QSize &size, qreal scale, QIcon::Mode mode, QIcon::State state, bool sizeOnly) |
QSize | actualSize (const QSize &size, QIcon::Mode mode, QIcon::State state) override |
Returns the actual size of the icon the engine provides for the requested size, mode and state. | |
QList< QSize > | availableSizes (QIcon::Mode mode, QIcon::State state) override |
void | addPixmap (const QPixmap &pixmap, QIcon::Mode mode, QIcon::State state) override |
Called by QIcon::addPixmap(). | |
void | addFile (const QString &fileName, const QSize &size, QIcon::Mode mode, QIcon::State state) override |
Called by QIcon::addFile(). | |
QString | key () const override |
\variable QIconEngine::ScaledPixmapArgument::size | |
QIconEngine * | clone () const override |
Reimplement this method to return a clone of this icon engine. | |
bool | read (QDataStream &in) override |
Reads icon engine contents from the QDataStream in. | |
bool | write (QDataStream &out) const override |
Writes the contents of this engine to the QDataStream out. | |
![]() | |
QIconEngine () | |
virtual | ~QIconEngine () |
Destroys the icon engine. | |
virtual void | paint (QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state)=0 |
Uses the given painter to paint the icon with the required mode and state into the rectangle rect. | |
virtual QSize | actualSize (const QSize &size, QIcon::Mode mode, QIcon::State state) |
Returns the actual size of the icon the engine provides for the requested size, mode and state. | |
virtual QPixmap | pixmap (const QSize &size, QIcon::Mode mode, QIcon::State state) |
Returns the icon as a pixmap with the required size, mode, and state. | |
virtual void | addPixmap (const QPixmap &pixmap, QIcon::Mode mode, QIcon::State state) |
Called by QIcon::addPixmap(). | |
virtual void | addFile (const QString &fileName, const QSize &size, QIcon::Mode mode, QIcon::State state) |
Called by QIcon::addFile(). | |
virtual QString | key () const |
\variable QIconEngine::ScaledPixmapArgument::size | |
virtual QIconEngine * | clone () const =0 |
Reimplement this method to return a clone of this icon engine. | |
virtual bool | read (QDataStream &in) |
Reads icon engine contents from the QDataStream in. | |
virtual bool | write (QDataStream &out) const |
Writes the contents of this engine to the QDataStream out. | |
virtual QList< QSize > | 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) |
virtual void | virtual_hook (int id, void *data) |
Static Public Member Functions | |
template<class It > | |
static QList< QSize > | toSizeList (It i1, It i2) |
Protected Member Functions | |
virtual QPixmap | filePixmap (const QSize &size, QIcon::Mode mode, QIcon::State)=0 |
virtual QString | cacheKey () const |
![]() | |
QIconEngine (const QIconEngine &other) | |
Additional Inherited Members | |
![]() | |
enum | IconEngineHook { IsNullHook = 3 , ScaledPixmapHook } |
Helper base class for retrieving icons for files for usage by QFileIconProvider and related.
Reimplement availableSizes() and new virtual filePixmap() and return icons created with this engine from QPlatformTheme::fileIcon().
Note: The class internally caches pixmaps for files by suffix (with the exception of some files on Windows), but not for directories (since directory icons may have overlay icons on Windows). You might want to cache pixmaps for directories in your implementation.
Definition at line 24 of file qabstractfileiconengine_p.h.
|
inlineexplicit |
Definition at line 27 of file qabstractfileiconengine_p.h.
|
overridevirtual |
Returns the actual size of the icon the engine provides for the requested size, mode and state.
The default implementation returns the given size.
Reimplemented from QIconEngine.
Definition at line 60 of file qabstractfileiconengine.cpp.
References actualSize(), QPixmapIconEngine::availableSizes(), QSize::height(), i, QSize::isNull(), Qt::KeepAspectRatio, QSize::scale(), state, and QSize::width().
Referenced by actualSize().
|
protectedvirtual |
Reimplemented in QWindowsFileIconEngine.
Definition at line 91 of file qabstractfileiconengine.cpp.
References QFileInfo::fileName(), QString::isEmpty(), QFileInfo::isExecutable(), QFileInfo::isFile(), QFileInfo::isSymLink(), and QFileInfo::suffix().
Referenced by pixmap().
|
inline |
Definition at line 34 of file qabstractfileiconengine_p.h.
Referenced by QWindowsFileIconEngine::cacheKey(), QWindowsFileIconEngine::filePixmap(), and QCocoaFileIconEngine::filePixmap().
|
protectedpure virtual |
Implemented in QWindowsFileIconEngine, and QCocoaFileIconEngine.
Referenced by pixmap().
|
inline |
Definition at line 35 of file qabstractfileiconengine_p.h.
References m_options.
Referenced by QWindowsFileIconEngine::cacheKey(), and QWindowsFileIconEngine::filePixmap().
|
overridevirtual |
Returns the icon as a pixmap with the required size, mode, and state.
The default implementation creates a new pixmap and calls paint() to fill it.
Reimplemented from QIconEngine.
Definition at line 29 of file qabstractfileiconengine.cpp.
References cacheKey(), filePixmap(), QPixmapCache::find(), QPixmapCache::insert(), QString::number(), Q_UNUSED, and state.
|
overridevirtual |
Returns a pixmap for the given size, mode, state and scale.
The scale argument is typically equal to the \l {High DPI} {device pixel ratio} of the display.
Reimplemented from QIconEngine.
Definition at line 54 of file qabstractfileiconengine.cpp.
|
inlinestatic |
Definition at line 50 of file qabstractfileiconengine_p.h.
Referenced by QCocoaFileIconEngine::availableIconSizes().