2007-05-29 09:59:50 +02:00
|
|
|
/*
|
2007-07-31 12:52:05 +02:00
|
|
|
* Copyright (C) 2007 by Siraj Razick <siraj@kde.org>
|
|
|
|
* Copyright (C) 2007 by Riccardo Iaconelli <riccardo@kde.org>
|
2007-07-20 08:28:51 +02:00
|
|
|
* Copyright (C) 2007 by Matt Broadstone <mbroadst@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-06-05 20:39:59 +02:00
|
|
|
#ifndef ICON_H
|
|
|
|
#define ICON_H
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-23 00:01:10 +02:00
|
|
|
#include <QtCore/QObject>
|
|
|
|
#include <QtGui/QGraphicsTextItem>
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-06-02 19:29:39 +02:00
|
|
|
#include <plasma/dataengine.h>
|
2007-07-21 00:54:56 +02:00
|
|
|
#include <plasma/phase.h>
|
2007-06-02 19:29:39 +02:00
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
#include <plasma/widgets/layoutitem.h>
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-23 00:01:10 +02:00
|
|
|
class QAction;
|
2007-06-17 01:38:56 +02:00
|
|
|
class KUrl;
|
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* This class provides a generic Icon for the Plasma desktop. An icon, in this
|
|
|
|
* sense, is not restricted to just an image, but can also contain text. Currently,
|
|
|
|
* the Icon class is primarily used for desktop items, but is designed to be used
|
|
|
|
* anywhere an icon is needed in an applet.
|
|
|
|
*
|
|
|
|
* @author Siraj Razick <siraj@kde.org>
|
|
|
|
* @author Matt Broadstone <mbroadst@gmail.com>
|
|
|
|
*/
|
2007-05-29 09:59:50 +02:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2007-07-18 00:56:28 +02:00
|
|
|
class PLASMA_EXPORT Icon : public QObject, public QGraphicsItem, public LayoutItem
|
2007-05-29 09:59:50 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2007-08-04 15:14:57 +02:00
|
|
|
Q_PROPERTY( QString text READ text WRITE setText )
|
|
|
|
Q_PROPERTY( QString infoText READ infoText WRITE setInfoText )
|
|
|
|
Q_PROPERTY( QSizeF iconSize READ iconSize WRITE setIconSize )
|
|
|
|
|
2007-05-29 09:59:50 +02:00
|
|
|
public:
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* Creates a new Plasma::Icon.
|
|
|
|
* @param parent the QGraphicsItem this icon is parented to.
|
|
|
|
*/
|
2007-07-23 00:01:10 +02:00
|
|
|
explicit Icon(QGraphicsItem *parent = 0);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience constructor to create a Plasma::Icon with text.
|
|
|
|
* @param text the text that will be displayed with this icon.
|
|
|
|
* @param parent the QGraphicsItem this icon is parented to.
|
|
|
|
*/
|
2007-07-23 00:01:10 +02:00
|
|
|
explicit Icon(const QString &text, QGraphicsItem *parent = 0);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new Plasma::Icon with text and an icon.
|
|
|
|
* @param icon the icon that will be displayed with this icon.
|
|
|
|
* @param text the text that will be displayed with this icon.
|
|
|
|
* @param parent The QGraphicsItem this icon is parented to.
|
|
|
|
*/
|
2007-07-20 08:28:51 +02:00
|
|
|
Icon(const QIcon & icon, const QString &text, QGraphicsItem *parent = 0);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys this Plasma::Icon.
|
|
|
|
*/
|
2007-05-29 09:59:50 +02:00
|
|
|
virtual ~Icon();
|
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* Returns the text associated with this icon.
|
|
|
|
*/
|
2007-05-29 09:59:50 +02:00
|
|
|
QString text() const;
|
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* Sets the text associated with this icon.
|
|
|
|
* @param text the text to associate with this icon.
|
|
|
|
*/
|
|
|
|
void setText(const QString &text);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the meta text associated with this icon.
|
|
|
|
*/
|
|
|
|
QString infoText() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the additional information to be displayed by
|
|
|
|
* this icon.
|
|
|
|
* @param text additional meta text associated with this icon.
|
|
|
|
*/
|
|
|
|
void setInfoText(const QString &text);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the graphical icon for this Plasma::Icon.
|
|
|
|
* @param icon the QIcon to associate with this icon.
|
|
|
|
*/
|
2007-08-04 15:14:57 +02:00
|
|
|
Q_INVOKABLE void setIcon(const QIcon& icon);
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* Convenience method to set the icon of this Plasma::Icon
|
|
|
|
* using a QString path to the icon.
|
|
|
|
* @param icon the path to the icon to associate with this Plasma::Icon.
|
|
|
|
*/
|
2007-08-04 15:14:57 +02:00
|
|
|
Q_INVOKABLE void setIcon(const QString& icon);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the size of this Plasma::Icon's graphical icon.
|
|
|
|
*/
|
2007-07-20 08:28:51 +02:00
|
|
|
QSizeF iconSize() const;
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the size of the graphical icon for this Plasma::Icon.
|
|
|
|
* @param size the size of the icon.
|
|
|
|
*/
|
2007-07-20 08:28:51 +02:00
|
|
|
void setIconSize(const QSizeF& size);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience method to set the icon size without a QSizeF.
|
|
|
|
* @param height the height of the icon.
|
|
|
|
* @param width the width of the icon.
|
|
|
|
*/
|
2007-08-04 15:14:57 +02:00
|
|
|
Q_INVOKABLE void setIconSize(int height, int width);
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Plasma::Icon allows the user to specify a number of actions
|
|
|
|
* (current four) to be displayed around the widget. This method
|
|
|
|
* allows for a created QAction (not a KAction!) to be added to
|
|
|
|
* the Plasma::Icon.
|
|
|
|
* @param action the QAction to associate with this icon.
|
|
|
|
*/
|
2007-07-21 06:07:41 +02:00
|
|
|
void addAction(QAction* action);
|
2007-07-20 08:28:51 +02:00
|
|
|
|
2007-07-28 21:27:56 +02:00
|
|
|
// Layout stuff - no need to document
|
2007-05-29 22:37:21 +02:00
|
|
|
Qt::Orientations expandingDirections() const;
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-05-29 22:37:21 +02:00
|
|
|
QSizeF minimumSize() const;
|
|
|
|
QSizeF maximumSize() const;
|
2007-05-29 09:59:50 +02:00
|
|
|
|
|
|
|
bool hasHeightForWidth() const;
|
|
|
|
qreal heightForWidth(qreal w) const;
|
|
|
|
|
|
|
|
bool hasWidthForHeight() const;
|
|
|
|
qreal widthForHeight(qreal h) const;
|
|
|
|
|
2007-05-29 22:37:21 +02:00
|
|
|
QRectF geometry() const;
|
|
|
|
void setGeometry(const QRectF& r);
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-05-29 22:37:21 +02:00
|
|
|
QSizeF sizeHint() const;
|
2007-07-20 09:42:02 +02:00
|
|
|
QRectF boundingRect() const;
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-20 08:28:51 +02:00
|
|
|
protected:
|
|
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
|
2007-06-05 04:54:48 +02:00
|
|
|
|
2007-07-20 08:28:51 +02:00
|
|
|
Q_SIGNALS:
|
2007-07-28 21:27:56 +02:00
|
|
|
/**
|
|
|
|
* Indicates when the icon has been pressed.
|
|
|
|
*/
|
2007-07-20 08:28:51 +02:00
|
|
|
void pressed(bool down);
|
2007-07-28 21:27:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates when the icon has been clicked.
|
|
|
|
*/
|
2007-07-20 08:28:51 +02:00
|
|
|
void clicked();
|
2007-05-29 09:59:50 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
bool isDown();
|
|
|
|
void mousePressEvent(QGraphicsSceneMouseEvent *event);
|
2007-07-20 08:28:51 +02:00
|
|
|
void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
|
2007-05-29 09:59:50 +02:00
|
|
|
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
|
2007-07-20 08:28:51 +02:00
|
|
|
|
2007-06-17 22:56:03 +02:00
|
|
|
void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
|
|
|
|
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
|
2007-05-29 09:59:50 +02:00
|
|
|
|
2007-07-21 06:07:41 +02:00
|
|
|
public:
|
|
|
|
class Private;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
**/
|
|
|
|
void drawActionButtonBase(QPainter* painter, const QSize &size, int element);
|
|
|
|
|
2007-05-29 09:59:50 +02:00
|
|
|
private:
|
2007-06-19 23:56:40 +02:00
|
|
|
QPixmap buttonPixmap();
|
2007-07-20 08:28:51 +02:00
|
|
|
void init();
|
|
|
|
void calculateSize();
|
2007-06-19 23:56:40 +02:00
|
|
|
|
2007-05-29 09:59:50 +02:00
|
|
|
Private * const d;
|
2007-07-21 06:07:41 +02:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void actionDestroyed(QObject* obj);
|
2007-05-29 09:59:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Plasma
|
|
|
|
|
2007-07-20 08:28:51 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
// Add these to UrlIcon
|
|
|
|
void setUrl(const KUrl& url);
|
|
|
|
KUrl url() const;
|
|
|
|
*/
|
|
|
|
|
2007-05-29 09:59:50 +02:00
|
|
|
#endif
|