Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
QProxyIconEngine Class Referenceabstract

#include <qiconengine_p.h>

+ Inheritance diagram for QProxyIconEngine:
+ Collaboration diagram for QProxyIconEngine:

Public Member Functions

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.
 
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.
 
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.
 
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
 
QIconEngineclone () 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.
 
QList< QSizeavailableSizes (QIcon::Mode mode=QIcon::Normal, QIcon::State state=QIcon::Off) override
 
QString iconName () override
 
bool isNull () override
 
QPixmap scaledPixmap (const QSize &size, QIcon::Mode mode, QIcon::State state, qreal scale) override
 
void virtual_hook (int id, void *data) override
 
- Public Member Functions inherited from QIconEngine
 QIconEngine ()
 
virtual ~QIconEngine ()
 Destroys the icon engine.
 

Protected Member Functions

virtual QIconEngineproxiedEngine () const =0
 
- Protected Member Functions inherited from QIconEngine
 QIconEngine (const QIconEngine &other)
 

Additional Inherited Members

- Public Types inherited from QIconEngine
enum  IconEngineHook { IsNullHook = 3 , ScaledPixmapHook }
 

Detailed Description

Definition at line 28 of file qiconengine_p.h.

Member Function Documentation

◆ actualSize()

QSize QProxyIconEngine::actualSize ( const QSize & size,
QIcon::Mode mode,
QIcon::State state )
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 319 of file qiconengine.cpp.

References proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ addFile()

void QProxyIconEngine::addFile ( const QString & fileName,
const QSize & size,
QIcon::Mode mode,
QIcon::State state )
overridevirtual

Called by QIcon::addFile().

Adds a specialized pixmap from the file with the given fileName, size, mode and state. The default pixmap-based engine stores any supplied file names, and it loads the pixmaps on demand instead of using scaled pixmaps if the size of a pixmap matches the size of icon requested. Custom icon engines that implement scalable vector formats are free to ignores any extra files.

Reimplemented from QIconEngine.

Definition at line 334 of file qiconengine.cpp.

References fileName, proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ addPixmap()

void QProxyIconEngine::addPixmap ( const QPixmap & pixmap,
QIcon::Mode mode,
QIcon::State state )
overridevirtual

Called by QIcon::addPixmap().

Adds a specialized pixmap for the given mode and state. The default pixmap-based engine stores any supplied pixmaps, and it uses them instead of scaled pixmaps if the size of a pixmap matches the size of icon requested. Custom icon engines that implement scalable vector formats are free to ignores any extra pixmaps.

Reimplemented from QIconEngine.

Definition at line 329 of file qiconengine.cpp.

References pixmap, proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ availableSizes()

QList< QSize > QProxyIconEngine::availableSizes ( QIcon::Mode mode = QIcon::Normal,
QIcon::State state = QIcon::Off )
overridevirtual
Since
4.5

Returns sizes of all images that are contained in the engine for the specific mode and state.

Reimplemented from QIconEngine.

Definition at line 359 of file qiconengine.cpp.

References proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ clone()

QIconEngine * QProxyIconEngine::clone ( ) const
overridevirtual

Reimplement this method to return a clone of this icon engine.

Implements QIconEngine.

Reimplemented in QThemeIconEngine.

Definition at line 344 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ iconName()

QString QProxyIconEngine::iconName ( )
overridevirtual
Since
4.7

Returns the name used to create the engine, if available.

Reimplemented from QIconEngine.

Definition at line 364 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ isNull()

bool QProxyIconEngine::isNull ( )
overridevirtual
Since
5.7

Returns true if this icon engine represent a null QIcon.

Reimplemented from QIconEngine.

Definition at line 369 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ key()

QString QProxyIconEngine::key ( ) const
overridevirtual

\variable QIconEngine::ScaledPixmapArgument::size

The requested size of the pixmap.

\variable QIconEngine::ScaledPixmapArgument::mode

The requested mode of the pixmap.

See also
QIcon::Mode

\variable QIconEngine::ScaledPixmapArgument::state

The requested state of the pixmap.

See also
QIcon::State

\variable QIconEngine::ScaledPixmapArgument::scale

The requested scale of the pixmap.

\variable QIconEngine::ScaledPixmapArgument::pixmap

The pixmap that is the best match for the given \l size, \l mode, \l state, and \l scale. This is an output parameter that is set after calling \l virtual_hook().

Returns a key that identifies this icon engine.

Reimplemented from QIconEngine.

Reimplemented in QThemeIconEngine.

Definition at line 339 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ paint()

void QProxyIconEngine::paint ( QPainter * painter,
const QRect & rect,
QIcon::Mode mode,
QIcon::State state )
overridevirtual

Uses the given painter to paint the icon with the required mode and state into the rectangle rect.

Implements QIconEngine.

Definition at line 314 of file qiconengine.cpp.

References painter, proxiedEngine(), rect, and state.

+ Here is the call graph for this function:

◆ pixmap()

QPixmap QProxyIconEngine::pixmap ( const QSize & size,
QIcon::Mode mode,
QIcon::State state )
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 324 of file qiconengine.cpp.

References proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ proxiedEngine()

virtual QIconEngine * QProxyIconEngine::proxiedEngine ( ) const
protectedpure virtual

Implemented in QThemeIconEngine.

Referenced by actualSize(), addFile(), addPixmap(), availableSizes(), clone(), iconName(), isNull(), key(), paint(), pixmap(), read(), scaledPixmap(), virtual_hook(), and write().

+ Here is the caller graph for this function:

◆ read()

bool QProxyIconEngine::read ( QDataStream & in)
overridevirtual

Reads icon engine contents from the QDataStream in.

Returns true if the contents were read; otherwise returns false.

QIconEngine's default implementation always return false.

Reimplemented from QIconEngine.

Reimplemented in QThemeIconEngine.

Definition at line 349 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ scaledPixmap()

QPixmap QProxyIconEngine::scaledPixmap ( const QSize & size,
QIcon::Mode mode,
QIcon::State state,
qreal scale )
overridevirtual
Since
5.9

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.

Note
Some engines may cast scale to an integer.
See also
ScaledPixmapArgument

Reimplemented from QIconEngine.

Definition at line 374 of file qiconengine.cpp.

References proxiedEngine(), and state.

+ Here is the call graph for this function:

◆ virtual_hook()

void QProxyIconEngine::virtual_hook ( int id,
void * data )
overridevirtual
Since
4.5

Additional method to allow extending QIconEngine without adding new virtual methods (and without breaking binary compatibility). The actual action and format of data depends on id argument which is in fact a constant from IconEngineHook enum.

See also
IconEngineHook

Reimplemented from QIconEngine.

Definition at line 379 of file qiconengine.cpp.

References proxiedEngine().

+ Here is the call graph for this function:

◆ write()

bool QProxyIconEngine::write ( QDataStream & out) const
overridevirtual

Writes the contents of this engine to the QDataStream out.

Returns true if the contents were written; otherwise returns false.

QIconEngine's default implementation always return false.

Reimplemented from QIconEngine.

Reimplemented in QThemeIconEngine.

Definition at line 354 of file qiconengine.cpp.

References out, and proxiedEngine().

+ Here is the call graph for this function:

The documentation for this class was generated from the following files: