2012-11-26 20:49:16 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Marco Martin <mart@kde.org>
|
2014-05-12 18:47:49 +02:00
|
|
|
* Copyright 2014 David Edmundson <davidedmudnson@kde.org>
|
2012-11-26 20:49:16 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ICONITEM_H
|
|
|
|
#define ICONITEM_H
|
|
|
|
|
2013-02-01 18:18:52 +01:00
|
|
|
#include <QIcon>
|
2014-05-12 18:47:49 +02:00
|
|
|
#include <QQuickItem>
|
2012-11-26 20:49:16 +01:00
|
|
|
#include <QPixmap>
|
|
|
|
#include <QVariant>
|
2014-02-17 15:39:01 +01:00
|
|
|
#include <QTimer>
|
2012-11-26 20:49:16 +01:00
|
|
|
|
2014-06-09 19:35:58 +02:00
|
|
|
#include <plasma/svg.h>
|
2012-11-26 20:49:16 +01:00
|
|
|
|
2014-06-09 19:35:58 +02:00
|
|
|
class QPropertyAnimation;
|
2012-11-26 20:49:16 +01:00
|
|
|
|
2014-08-12 23:12:15 +02:00
|
|
|
/**
|
|
|
|
* @class IconItem
|
|
|
|
* @short Displays an icon, either from the standard QIcon system or where applicable from the theme SVG files
|
|
|
|
*/
|
2014-05-12 18:47:49 +02:00
|
|
|
class IconItem : public QQuickItem
|
2012-11-26 20:49:16 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PROPERTY(QVariant source READ source WRITE setSource NOTIFY sourceChanged)
|
2014-06-18 19:22:02 +02:00
|
|
|
Q_PROPERTY(Plasma::Theme::ColorGroup colorGroup READ colorGroup WRITE setColorGroup NOTIFY colorGroupChanged)
|
2012-11-26 20:49:16 +01:00
|
|
|
Q_PROPERTY(bool smooth READ smooth WRITE setSmooth NOTIFY smoothChanged)
|
|
|
|
Q_PROPERTY(bool active READ isActive WRITE setActive NOTIFY activeChanged)
|
|
|
|
Q_PROPERTY(bool valid READ isValid NOTIFY validChanged)
|
2016-01-04 18:17:33 +01:00
|
|
|
Q_PROPERTY(int paintedWidth READ paintedWidth NOTIFY paintedSizeChanged)
|
|
|
|
Q_PROPERTY(int paintedHeight READ paintedHeight NOTIFY paintedSizeChanged)
|
2012-11-26 20:49:16 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-04-26 01:45:47 +02:00
|
|
|
IconItem(QQuickItem *parent = 0);
|
2012-11-26 20:49:16 +01:00
|
|
|
~IconItem();
|
|
|
|
|
|
|
|
void setSource(const QVariant &source);
|
|
|
|
QVariant source() const;
|
|
|
|
|
2014-06-18 19:22:02 +02:00
|
|
|
void setColorGroup(Plasma::Theme::ColorGroup group);
|
|
|
|
Plasma::Theme::ColorGroup colorGroup() const;
|
2014-06-09 19:35:58 +02:00
|
|
|
|
2012-11-26 20:49:16 +01:00
|
|
|
bool isActive() const;
|
|
|
|
void setActive(bool active);
|
|
|
|
|
|
|
|
void setSmooth(const bool smooth);
|
|
|
|
bool smooth() const;
|
|
|
|
|
|
|
|
bool isValid() const;
|
|
|
|
|
2016-01-04 18:17:33 +01:00
|
|
|
int paintedWidth() const;
|
|
|
|
int paintedHeight() const;
|
|
|
|
|
2015-12-22 18:36:23 +01:00
|
|
|
void updatePolish() Q_DECL_OVERRIDE;
|
2015-02-13 13:31:30 +01:00
|
|
|
QSGNode* updatePaintNode(QSGNode * oldNode, UpdatePaintNodeData * updatePaintNodeData) Q_DECL_OVERRIDE;
|
2012-11-26 20:49:16 +01:00
|
|
|
|
|
|
|
void geometryChanged(const QRectF &newGeometry,
|
2015-02-13 13:31:30 +01:00
|
|
|
const QRectF &oldGeometry) Q_DECL_OVERRIDE;
|
2012-11-26 20:49:16 +01:00
|
|
|
|
2014-12-15 20:21:06 +01:00
|
|
|
void componentComplete() Q_DECL_OVERRIDE;
|
|
|
|
|
2012-11-26 20:49:16 +01:00
|
|
|
Q_SIGNALS:
|
|
|
|
void activeChanged();
|
|
|
|
void sourceChanged();
|
|
|
|
void smoothChanged();
|
|
|
|
void validChanged();
|
2014-06-13 15:40:16 +02:00
|
|
|
void colorGroupChanged();
|
2016-01-04 18:17:33 +01:00
|
|
|
void paintedSizeChanged();
|
2012-11-26 20:49:16 +01:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
2015-12-22 18:36:23 +01:00
|
|
|
void schedulePixmapUpdate();
|
2012-11-26 20:49:16 +01:00
|
|
|
void animationFinished();
|
|
|
|
void valueChanged(const QVariant &value);
|
|
|
|
|
|
|
|
private:
|
2015-12-22 18:36:23 +01:00
|
|
|
void loadPixmap();
|
|
|
|
|
2012-11-26 20:49:16 +01:00
|
|
|
//all the ways we can set an source. Only one of them will be valid
|
|
|
|
QIcon m_icon;
|
|
|
|
Plasma::Svg *m_svgIcon;
|
|
|
|
QPixmap m_pixmapIcon;
|
|
|
|
QImage m_imageIcon;
|
|
|
|
//this contains the raw variant it was passed
|
|
|
|
QVariant m_source;
|
|
|
|
|
|
|
|
QSizeF m_implicitSize;
|
|
|
|
|
|
|
|
bool m_smooth;
|
|
|
|
bool m_active;
|
|
|
|
|
2014-05-12 18:47:49 +02:00
|
|
|
bool m_textureChanged;
|
|
|
|
bool m_sizeChanged;
|
|
|
|
|
2015-10-20 11:44:52 +02:00
|
|
|
bool m_svgFromIconLoader;
|
|
|
|
|
2014-05-12 18:47:49 +02:00
|
|
|
QPixmap m_iconPixmap;
|
|
|
|
QPixmap m_oldIconPixmap;
|
|
|
|
|
2014-06-18 19:22:02 +02:00
|
|
|
Plasma::Theme::ColorGroup m_colorGroup;
|
2012-11-26 20:49:16 +01:00
|
|
|
|
|
|
|
//animation on pixmap change
|
|
|
|
QPropertyAnimation *m_animation;
|
|
|
|
qreal m_animValue;
|
2014-12-15 20:21:06 +01:00
|
|
|
|
2012-11-26 20:49:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|