diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-06-08 12:43:04 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-08 12:42:51 -0700 |
commit | e14a15e61c6fa5529f33de410bfc6e0ad351a7af (patch) | |
tree | 168daf4927e48f4b51dbfd6a0e8136518e99a9c6 /qt-ui/profile/divepixmapitem.cpp | |
parent | 38ac6ed35fc4e3a99cbf1ea1ae271ddea7a06661 (diff) | |
download | subsurface-e14a15e61c6fa5529f33de410bfc6e0ad351a7af.tar.gz |
Subtle animation when the picture gets hovered with the mouse.
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>
Diffstat (limited to 'qt-ui/profile/divepixmapitem.cpp')
-rw-r--r-- | qt-ui/profile/divepixmapitem.cpp | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/qt-ui/profile/divepixmapitem.cpp b/qt-ui/profile/divepixmapitem.cpp index d27d77cba..b1942344e 100644 --- a/qt-ui/profile/divepixmapitem.cpp +++ b/qt-ui/profile/divepixmapitem.cpp @@ -1,5 +1,27 @@ #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); +} |