/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Nokia Corporation (info@qt.nokia.com) ** ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this file. ** Please review the following information to ensure the GNU Lesser General ** Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at info@qt.nokia.com. ** **************************************************************************/ #include "fileiconprovider.h" #include "mimedatabase.h" #include #include #include #include #include #include #include #include #include #include /*! \class Core::FileIconProvider Provides icons based on file suffixes with the ability to overwrite system icons for specific subtypes. Implements the QFileIconProvider interface and can therefore be used for QFileSystemModel. Note: Registering overlay icons currently completely replaces the system icon and is therefore not recommended on platforms that have their own overlay icon handling (Mac/Windows). The class is a singleton: It's instance can be accessed via the static instance() method. Plugins can register custom icons via registerIconSuffix(), and retrieve icons via the icon() method. The instance is explicitly deleted by the core plugin for destruction order reasons. */ // Cache icons in a list of pairs suffix/icon which should be faster than // hashes for small lists. enum { debug = 0 }; typedef QPair StringIconPair; typedef QList StringIconPairList; // Helper to find an icon by suffix in a list of pairs for const/non-const-iterators. template inline StringIconPairListIterator findBySuffix(const QString &suffix, StringIconPairListIterator iter, const StringIconPairListIterator &end) { for (; iter != end; ++iter) if ((*iter).first == suffix) return iter; return end; } namespace Core { struct FileIconProviderPrivate { FileIconProviderPrivate(); // Mapping of file suffix to icon. StringIconPairList m_cache; QIcon m_unknownFileIcon; // singleton pattern static FileIconProvider *m_instance; }; FileIconProviderPrivate::FileIconProviderPrivate() : m_unknownFileIcon(qApp->style()->standardIcon(QStyle::SP_FileIcon)) { } FileIconProvider *FileIconProviderPrivate::m_instance = 0; // FileIconProvider FileIconProvider::FileIconProvider() : d(new FileIconProviderPrivate) { FileIconProviderPrivate::m_instance = this; } FileIconProvider::~FileIconProvider() { FileIconProviderPrivate::m_instance = 0; delete d; } /*! Returns the icon associated with the file suffix in fileInfo. If there is none, the default icon of the operating system is returned. */ QIcon FileIconProvider::icon(const QFileInfo &fileInfo) const { typedef StringIconPairList::const_iterator CacheConstIterator; if (debug) qDebug() << "FileIconProvider::icon" << fileInfo.absoluteFilePath(); // Check for cached overlay icons by file suffix. if (!d->m_cache.isEmpty() && !fileInfo.isDir()) { const QString suffix = fileInfo.suffix(); if (!suffix.isEmpty()) { const CacheConstIterator it = findBySuffix(suffix, d->m_cache.constBegin(), d->m_cache.constEnd()); if (it != d->m_cache.constEnd()) return (*it).second; } } // Get icon from OS. #if defined(Q_WS_WIN) || defined(Q_WS_MAC) return QFileIconProvider::icon(fileInfo); #else // File icons are unknown on linux systems. return (fileInfo.isDir()) ? QFileIconProvider::icon(fileInfo) : d->m_unknownFileIcon; #endif } /*! Creates a pixmap with baseicon at size and overlays overlayIcon over it. See platform note in class documentation about recommended usage. */ QPixmap FileIconProvider::overlayIcon(QStyle::StandardPixmap baseIcon, const QIcon &overlayIcon, const QSize &size) { QPixmap iconPixmap = qApp->style()->standardIcon(baseIcon).pixmap(size); QPainter painter(&iconPixmap); painter.drawPixmap(0, 0, overlayIcon.pixmap(size)); painter.end(); return iconPixmap; } /*! Registers an icon for a given suffix, overlaying the system file icon. See platform note in class documentation about recommended usage. */ void FileIconProvider::registerIconOverlayForSuffix(const QIcon &icon, const QString &suffix) { typedef StringIconPairList::iterator CacheIterator; if (debug) qDebug() << "FileIconProvider::registerIconOverlayForSuffix" << suffix; QTC_ASSERT(!icon.isNull() && !suffix.isEmpty(), return) const QPixmap fileIconPixmap = overlayIcon(QStyle::SP_FileIcon, icon, QSize(16, 16)); // replace old icon, if it exists const CacheIterator it = findBySuffix(suffix, d->m_cache.begin(), d->m_cache.end()); if (it == d->m_cache.end()) { d->m_cache.append(StringIconPair(suffix, fileIconPixmap)); } else { (*it).second = fileIconPixmap; } } /*! Registers an icon for all the suffixes of a given mime type, overlaying the system file icon. */ void FileIconProvider::registerIconOverlayForMimeType(const QIcon &icon, const MimeType &mimeType) { foreach (const QString &suffix, mimeType.suffixes()) registerIconOverlayForSuffix(icon, suffix); } /*! Returns the sole instance of FileIconProvider. */ FileIconProvider *FileIconProvider::instance() { if (!FileIconProviderPrivate::m_instance) FileIconProviderPrivate::m_instance = new FileIconProvider; return FileIconProviderPrivate::m_instance; } } // namespace core