mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 20:16:16 +00:00
This patch adds a subtle animation when the picture gets hovered with the mouse, and restored to it's original size when mouse exits the image area. Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
27 lines
665 B
C++
27 lines
665 B
C++
#include "divepixmapitem.h"
|
|
#include "animationfunctions.h"
|
|
DivePixmapItem::DivePixmapItem(QObject *parent) : QObject(parent), QGraphicsPixmapItem()
|
|
{
|
|
}
|
|
|
|
DivePictureItem::DivePictureItem(QObject *parent): DivePixmapItem(parent)
|
|
{
|
|
setAcceptsHoverEvents(true);
|
|
setScale(0.2);
|
|
}
|
|
|
|
void DivePictureItem::setPixmap(const QPixmap &pix)
|
|
{
|
|
DivePixmapItem::setPixmap(pix);
|
|
setTransformOriginPoint(boundingRect().width()/2, boundingRect().height()/2);
|
|
}
|
|
|
|
void DivePictureItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
Animations::scaleTo(this, 1.0);
|
|
}
|
|
|
|
void DivePictureItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
{
|
|
Animations::scaleTo(this, 0.2);
|
|
}
|