2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "fileiconprovider.h"
|
2009-07-15 11:20:24 +02:00
|
|
|
#include "mimedatabase.h"
|
|
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2009-01-27 12:40:49 +01:00
|
|
|
#include <QtGui/QApplication>
|
|
|
|
|
#include <QtGui/QStyle>
|
|
|
|
|
#include <QtGui/QPainter>
|
2010-01-28 15:47:45 +01:00
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QPair>
|
|
|
|
|
#include <QtCore/QDebug>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
#include <QtGui/QFileIconProvider>
|
|
|
|
|
#include <QtGui/QIcon>
|
|
|
|
|
#include <QtGui/QStyle>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
\class FileIconProvider
|
|
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
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).
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
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.
|
2010-01-28 15:47:45 +01:00
|
|
|
The instance is explicitly deleted by the core plugin for destruction order reasons.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
|
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
// Cache icons in a list of pairs suffix/icon which should be faster than
|
|
|
|
|
// hashes for small lists.
|
|
|
|
|
|
|
|
|
|
enum { debug = 0 };
|
|
|
|
|
|
|
|
|
|
typedef QPair<QString, QIcon> StringIconPair;
|
|
|
|
|
typedef QList<StringIconPair> StringIconPairList;
|
|
|
|
|
|
|
|
|
|
// Helper to find an icon by suffix in a list of pairs for const/non-const-iterators.
|
|
|
|
|
|
|
|
|
|
template <class StringIconPairListIterator>
|
|
|
|
|
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;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
QFileIconProvider m_systemIconProvider;
|
|
|
|
|
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)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-01-28 15:47:45 +01:00
|
|
|
FileIconProviderPrivate::m_instance = this;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FileIconProvider::~FileIconProvider()
|
|
|
|
|
{
|
2010-01-28 15:47:45 +01:00
|
|
|
FileIconProviderPrivate::m_instance = 0;
|
|
|
|
|
delete d;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
Returns the icon associated with the file suffix in fileInfo. If there is none,
|
|
|
|
|
the default icon of the operating system is returned.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
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.
|
2009-07-14 16:37:26 +02:00
|
|
|
#if defined(Q_WS_WIN) || defined(Q_WS_MAC)
|
2010-01-28 15:47:45 +01:00
|
|
|
return d->m_systemIconProvider.icon(fileInfo);
|
2008-12-02 12:01:29 +01:00
|
|
|
#else
|
2010-01-28 15:47:45 +01:00
|
|
|
// File icons are unknown on linux systems.
|
|
|
|
|
return (fileInfo.isDir()) ?
|
|
|
|
|
d->m_systemIconProvider.icon(fileInfo) :
|
|
|
|
|
d->m_unknownFileIcon;
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
2010-01-28 15:47:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QIcon FileIconProvider::icon(IconType type) const
|
|
|
|
|
{
|
|
|
|
|
return d->m_systemIconProvider.icon(type);
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
QString FileIconProvider::type(const QFileInfo &info) const
|
|
|
|
|
{
|
|
|
|
|
return d->m_systemIconProvider.type(info);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-07-15 11:20:24 +02:00
|
|
|
/*!
|
|
|
|
|
Creates a pixmap with baseicon at size and overlays overlayIcon over it.
|
2010-01-28 15:47:45 +01:00
|
|
|
See platform note in class documentation about recommended usage.
|
2009-07-15 11:20:24 +02:00
|
|
|
*/
|
2010-02-12 12:40:32 +01:00
|
|
|
QPixmap FileIconProvider::overlayIcon(QStyle::StandardPixmap baseIcon, const QIcon &overlayIcon, const QSize &size)
|
2009-01-27 12:40:49 +01:00
|
|
|
{
|
|
|
|
|
QPixmap iconPixmap = qApp->style()->standardIcon(baseIcon).pixmap(size);
|
|
|
|
|
QPainter painter(&iconPixmap);
|
|
|
|
|
painter.drawPixmap(0, 0, overlayIcon.pixmap(size));
|
|
|
|
|
painter.end();
|
|
|
|
|
return iconPixmap;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
2009-07-15 11:20:24 +02:00
|
|
|
Registers an icon for a given suffix, overlaying the system file icon.
|
2010-01-28 15:47:45 +01:00
|
|
|
See platform note in class documentation about recommended usage.
|
2008-12-02 12:01:29 +01:00
|
|
|
*/
|
2010-01-28 15:47:45 +01:00
|
|
|
void FileIconProvider::registerIconOverlayForSuffix(const QIcon &icon,
|
|
|
|
|
const QString &suffix)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-01-28 15:47:45 +01:00
|
|
|
typedef StringIconPairList::iterator CacheIterator;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-28 15:47:45 +01:00
|
|
|
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;
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-07-15 11:20:24 +02:00
|
|
|
/*!
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
/*!
|
|
|
|
|
Returns the sole instance of FileIconProvider.
|
|
|
|
|
*/
|
2010-01-28 15:47:45 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
FileIconProvider *FileIconProvider::instance()
|
|
|
|
|
{
|
2010-01-28 15:47:45 +01:00
|
|
|
if (!FileIconProviderPrivate::m_instance)
|
|
|
|
|
FileIconProviderPrivate::m_instance = new FileIconProvider;
|
|
|
|
|
return FileIconProviderPrivate::m_instance;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-01-28 15:47:45 +01:00
|
|
|
|
|
|
|
|
} // namespace core
|