diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-06-30 19:08:16 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 16:06:53 -0700 |
commit | 1ac0b00662e55ead4c1ddc1335e548cb846585db (patch) | |
tree | 90c2f8f6d3220aed7c471a7eec35064a9e21ebe4 /qt-ui/profile/profilewidget2.h | |
parent | 4da7dee8cf18c17c451e9d9885545dcdd1ba22c7 (diff) | |
download | subsurface-1ac0b00662e55ead4c1ddc1335e548cb846585db.tar.gz |
Only replot the dive if maxDepth > oldMaxDepth on plan / add mode.
This fixes the "impossible to work with" planner with the mouse
now the dive will only grow and not shrink untill you release
the mouse.
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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index 47e9a51b3..42d5abbcb 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -107,6 +107,8 @@ slots: // Necessary to call from QAction's signals. void keyLeftAction(); void keyRightAction(); + void divePlannerHandlerClicked(); + void divePlannerHandlerReleased(); protected: virtual void resizeEvent(QResizeEvent *event); virtual void wheelEvent(QWheelEvent *event); @@ -115,6 +117,7 @@ protected: virtual void mouseDoubleClickEvent(QMouseEvent *event); virtual void mousePressEvent(QMouseEvent *event); virtual void mouseReleaseEvent(QMouseEvent *event); + private: /*methods*/ void fixBackgroundPos(); void scrollViewTo(const QPoint &pos); @@ -169,7 +172,9 @@ private: friend class DiveHandler; QHash<Qt::Key, QAction *> actionsForKeys; bool shouldCalculateMaxTime; + bool shouldCalculateMaxDepth; int maxtime; + int maxdepth; }; #endif // PROFILEWIDGET2_H |