plasma-framework/widgets/icon.cpp
Aaron J. Seigo a80c5349e4 * let's not bother with the blur here quite yet; let's do it Right(tm) later in an image effects lib, and when we can actually operate on the backing store
* if there is not -pressed element, still paint something proper

svn path=/trunk/KDE/kdebase/workspace/lib/plasma/; revision=672363
2007-06-06 20:48:06 +00:00

356 lines
7.9 KiB
C++

/*
* Copyright (C) 2007 by Aaron Seigo aseigo@kde.org
*
* 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.
*/
#include "icon.h"
#include <QPainter>
#include <QGraphicsSceneMouseEvent>
#include <KIcon>
#include <KDebug>
#include "svg.h"
namespace Plasma
{
class Icon::Private
{
public:
Private()
: size(128*1.1, 128*1.1),
iconSize(128, 128),
state(Private::NoState),
svg("widgets/iconbutton")
{
svg.setContentType(Plasma::Svg::ImageSet);
svg.resize(size);
if (svg.elementExists("background")) {
svgElements |= SvgBackground;
}
if (svg.elementExists("background-hover")) {
svgElements |= SvgBackgroundHover;
}
if (svg.elementExists("background-pressed")) {
svgElements |= SvgBackgroundPressed;
}
if (svg.elementExists("foreground")) {
svgElements |= SvgForeground;
}
if (svg.elementExists("foreground-hover")) {
svgElements |= SvgForegroundHover;
}
if (svg.elementExists("foreground-pressed")) {
svgElements |= SvgForegroundPressed;
}
}
~Private() {}
enum ButtonState
{
NoState,
HoverState,
PressedState
};
enum { NoSvg = 0,
SvgBackground = 1,
SvgBackgroundHover = 2,
SvgBackgroundPressed = 4,
SvgForeground = 8,
SvgForegroundHover = 16,
SvgForegroundPressed = 32 };
QString text;
QSizeF size;
QSizeF iconSize;
QIcon icon;
ButtonState state;
Svg svg;
int svgElements;
};
Icon::Icon(QGraphicsItem *parent)
: QObject(),
QGraphicsItem(parent),
d(new Private)
{
setAcceptedMouseButtons(Qt::LeftButton);
setAcceptsHoverEvents(true);
setEnabled(true);
setFlags(ItemIsMovable);
setPos(QPointF(0.0,0.0));
}
Icon::~Icon()
{
delete d;
}
QRectF Icon::boundingRect() const
{
return QRectF(QPointF(0, 0), d->size);
}
void Icon::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
Q_UNUSED(option)
Q_UNUSED(widget)
// QRectF rect = boundingRect();
QString element;
if (d->svgElements & Private::SvgBackground) {
element = "background";
}
switch (d->state) {
case Private::NoState:
break;
case Private::HoverState:
if (d->svgElements & Private::SvgBackgroundHover) {
element = "background-hover";
}
break;
case Private::PressedState:
if (d->svgElements & Private::SvgBackgroundPressed) {
element = "background-pressed";
} else if (d->svgElements & Private::SvgBackgroundHover) {
element = "background-hover";
}
break;
}
if (!element.isEmpty()) {
d->svg.paint(painter, 0, 0, element);
element = QString();
}
if (!d->icon.isNull()) {
qreal iw = d->iconSize.width();
qreal ih = d->iconSize.height();
qreal deltaX = (d->size.width() - iw) / 2;
qreal deltaY = (d->size.height() - ih) / 2 ;
if(d->state == Private::PressedState)
{
painter->save();
painter->setRenderHint(QPainter::SmoothPixmapTransform);
painter->scale(0.95, 0.95);
deltaY *= 0.95;
deltaX *= 0.95;
painter->drawPixmap(deltaX + (iw * .025), deltaY + (ih * .025),
d->icon.pixmap(d->iconSize.toSize()));
painter->restore();
}
else
{
painter->drawPixmap(deltaX, deltaY, d->icon.pixmap(d->iconSize.toSize()));
}
}
//TODO: draw text
if (d->svgElements & Private::SvgForeground) {
element = "foreground";
}
switch (d->state) {
case Private::NoState:
break;
case Private::HoverState:
if (d->svgElements & Private::SvgForegroundHover) {
element = "foreground-hover";
}
break;
case Private::PressedState:
if (d->svgElements & Private::SvgForegroundPressed) {
element = "foreground-pressed";
} else if (d->svgElements & Private::SvgForegroundHover) {
element = "foreground-hover";
}
break;
}
if (!element.isEmpty()) {
//kDebug() << "painting " << element << endl;
d->svg.paint(painter, 0, 0, element);
}
}
void Icon::setText(const QString& text)
{
d->text = text;
//TODO: implement this puppy calculateSize();
}
QString Icon::text() const
{
return d->text;
}
void Icon::setIcon(const QString& icon)
{
if (icon.isEmpty()) {
setIcon(QIcon());
return;
}
setIcon(KIcon(icon));
}
void Icon::setIcon(const QIcon& icon)
{
d->icon = icon;
update();
}
QSizeF Icon::size() const
{
return d->size;
}
QSizeF Icon::iconSize() const
{
return d->iconSize;
}
void Icon::setSize(const QSizeF& s)
{
prepareGeometryChange();
d->iconSize = s;
d->size = s * 1.1;
d->svg.resize(d->size);
update();
}
void Icon::setSize(int w, int h)
{
setSize(QSizeF(w, h));
}
bool Icon::isDown()
{
return d->state == Private::PressedState;
}
void Icon::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
d->state = Private::PressedState;
emit pressed(true);
QGraphicsItem::mousePressEvent(event);
update();
}
void Icon::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
bool inside = boundingRect().contains(event->pos());
bool wasClicked = d->state == Private::PressedState && inside;
if (inside) {
d->state = Private::HoverState;
} else {
d->state = Private::NoState;
}
if (wasClicked) {
emit pressed(false);
emit clicked();
}
QGraphicsItem::mouseReleaseEvent(event);
update();
}
void Icon::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
d->state = Private::HoverState;
QGraphicsItem::hoverEnterEvent(event);
}
void Icon::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
d->state = Private::NoState;
QGraphicsItem::hoverLeaveEvent(event);
}
QSizeF Icon::sizeHint() const
{
return d->size;
}
QSizeF Icon::minimumSize() const
{
return d->size; // probably should be more flexible on this =)
}
QSizeF Icon::maximumSize() const
{
return d->size;
}
Qt::Orientations Icon::expandingDirections() const
{
return Qt::Horizontal;
}
bool Icon::hasHeightForWidth() const
{
return true;
}
qreal Icon::heightForWidth(qreal w) const
{
return w; //FIXME: we shouldn't assume squareness but actually calculate based on text and what not
}
bool Icon::hasWidthForHeight() const
{
return true;
}
qreal Icon::widthForHeight(qreal h) const
{
return h; //FIXME: we shouldn't assume squareness but actually calculate based on text and what not
}
QRectF Icon::geometry() const
{
return boundingRect().toRect();
}
void Icon::setGeometry(const QRectF &r)
{
setSize(r.size());
setPos(r.x(),r.y());
}
int Icon::boundsForIconSize(int iconSize)
{
return iconSize * 1.1;
}
} // namespace Plasma
#include "icon.moc"