~ubuntu-sdk-team/ubuntu-ui-toolkit/trunk

« back to all changes in this revision

Viewing changes to modules/Ubuntu/Components/plugin/unitythemeiconprovider.cpp

  • Committer: Tarmac
  • Author(s): Antti Kaijanmäki, Lars Uebernickel, Michal Hruby, Nick Dedekind
  • Date: 2013-08-29 10:07:51 UTC
  • mfrom: (679.2.13 unity-theme-icon-provider)
  • Revision ID: tarmac-20130829100751-9103940qqcxghxc3
Add UnityThemeIconProvider - A QQuickImageProvider that loads icons from the current icon theme, following the xdg icon spec.

Approved by PS Jenkins bot, Lars Uebernickel, Michał Sawicz, Michal Hruby.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors: Lars Uebernickel <lars.uebernickel@canonical.com>
 
17
 */
 
18
 
 
19
#include "unitythemeiconprovider.h"
 
20
 
 
21
#include <QIcon>
 
22
 
 
23
UnityThemeIconProvider::UnityThemeIconProvider():
 
24
  QQuickImageProvider(QQuickImageProvider::Pixmap)
 
25
{
 
26
}
 
27
 
 
28
QPixmap UnityThemeIconProvider::requestPixmap(const QString &id, QSize *realSize, const QSize &requestedSize)
 
29
{
 
30
    QIcon icon;
 
31
 
 
32
    Q_FOREACH (QString name, id.split(",", QString::SkipEmptyParts)) {
 
33
        icon = QIcon::fromTheme(name);
 
34
        if (!icon.isNull()) {
 
35
            if (requestedSize.isValid()) {
 
36
                *realSize =requestedSize;
 
37
                return icon.pixmap(requestedSize);
 
38
            } else {
 
39
                QList<QSize> sizes = icon.availableSizes();
 
40
                if (sizes.count() > 0 && sizes.last().isValid()) {
 
41
                    *realSize = sizes.last();
 
42
                } else {
 
43
                    *realSize = QSize(32,32);
 
44
                }
 
45
                return icon.pixmap(*realSize);
 
46
            }
 
47
            break;
 
48
        }
 
49
    }
 
50
    return QPixmap();
 
51
}