diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-12-30 21:10:21 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-30 16:12:28 -0800 |
commit | 146030f805ab80d56282996ad830e1583fa9679c (patch) | |
tree | 5f4a1e5853c5a1366f140870a20e38ee2f4831df /qt-ui/profile/diveprofileitem.cpp | |
parent | 2839aed8f282f409779f93fed2d899299f2a06d8 (diff) | |
download | subsurface-146030f805ab80d56282996ad830e1583fa9679c.tar.gz |
Add skeleton for the instant mean depth line
This class will hold the visible line of the mean depth for the time 'now'
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.cpp')
-rw-r--r-- | qt-ui/profile/diveprofileitem.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp index e2148bf7c..d96059173 100644 --- a/qt-ui/profile/diveprofileitem.cpp +++ b/qt-ui/profile/diveprofileitem.cpp @@ -925,3 +925,13 @@ void PartialPressureGasItem::setColors(const QColor &normal, const QColor &alert normalColor = normal; alertColor = alert; } + +InstantMeanDepthLine::InstantMeanDepthLine() +{ + +} + +void InstantMeanDepthLine::mouseMoved(int time, int depth) +{ + +} |