📄 qiconengine.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qiconengine.h"#include "qpainter.h"/*! \class QIconEngine \brief The QIconEngine class provides an abstract base class for QIcon renderers. \ingroup multimedia An icon engine provides the rendering functions for a QIcon. Each icon has a corresponding icon engine that is responsible for drawing the icon with a requested size, mode and state. The icon is rendered by the paint() function, and the icon can additionally be obtained as a pixmap with the pixmap() function (the default implementation simply uses paint() to achieve this). The addPixmap() function can be used to add new pixmaps to the icon engine, and is used by QIcon to add specialized custom pixmaps. The paint(), pixmap(), and addPixmap() functions are all virtual, and can therefore be reimplemented in subclasses of QIconEngine. \sa QIconEnginePlugin*//*! \fn virtual void QIconEngine::paint(QPainter *painter, const QRect &rect, QIcon::Mode mode, QIcon::State state) = 0; Uses the given \a painter to paint the icon with the required \a mode and \a state into the rectangle \a rect.*//*! Returns the actual size of the icon the engine provides for the requested \a size, \a mode and \a state. The default implementation returns the given \a size. */QSize QIconEngine::actualSize(const QSize &size, QIcon::Mode /*mode*/, QIcon::State /*state*/){ return size;}/*! Destroys the icon engine. */QIconEngine::~QIconEngine(){}/*! Returns the icon as a pixmap with the required \a size, \a mode, and \a state. The default implementation creates a new pixmap and calls paint() to fill it.*/QPixmap QIconEngine::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state){ QPixmap pm(size); { QPainter p(&pm); paint(&p, QRect(QPoint(0,0),size), mode, state); } return pm;}/*! Called by QIcon::addPixmap(). Adds a specialized \a pixmap for the given \a mode and \a 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. */void QIconEngine::addPixmap(const QPixmap &/*pixmap*/, QIcon::Mode /*mode*/, QIcon::State /*state*/){}/*! Called by QIcon::addFile(). Adds a specialized pixmap from the file with the given \a fileName, \a size, \a mode and \a 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. */void QIconEngine::addFile(const QString &/*fileName*/, const QSize &/*size*/, QIcon::Mode /*mode*/, QIcon::State /*state*/){}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -