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/profilewidget2.h | |
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/profilewidget2.h')
-rw-r--r-- | qt-ui/profile/profilewidget2.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index a1ba7a23a..7d55fe5d0 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -43,6 +43,7 @@ class AbstractProfilePolygonItem; class DiveHandler; class QGraphicsSimpleTextItem; class QModelIndex; +class DivePictureItem; class ProfileWidget2 : public QGraphicsView { Q_OBJECT @@ -160,7 +161,7 @@ private: //specifics for ADD and PLAN QList<DiveHandler *> handles; QList<QGraphicsSimpleTextItem *> gases; - QList<DivePixmapItem*> pictures; + QList<DivePictureItem*> pictures; void repositionDiveHandlers(); int fixHandlerIndex(DiveHandler *activeHandler); friend class DiveHandler; |