diff options
author | Krzysztof Arentowicz <karent.bug@gmail.com> | 2015-01-02 00:28:38 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-01 16:23:22 -0800 |
commit | e3378e299a64e4aa807858b49bf5794a2a5babe7 (patch) | |
tree | 3505cbb39efd9b706af3e35220653bffd0aeaa2a /qt-ui/profile/profilewidget2.h | |
parent | ee1ef5233036be26ab28228465985f1cf71ba157 (diff) | |
download | subsurface-e3378e299a64e4aa807858b49bf5794a2a5babe7.tar.gz |
Plot mean depth data
As we already have running depth sum values for each sample
why don't just plot running average depth graph.
Signed-off-by: Krzysztof Arentowicz <k.arentowicz@gmail.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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index 51acef91e..2d49206cc 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -23,6 +23,7 @@ struct dive; struct plot_info; class ToolTipItem; class MeanDepthLine; +class DiveMeanDepth; class DiveReportedCeiling; class DiveTextItem; class TemperatureAxis; @@ -161,6 +162,7 @@ private: TimeAxis *timeAxis; DiveProfileItem *diveProfileItem; DiveTemperatureItem *temperatureItem; + DiveMeanDepthItem *meanDepthItem; DiveCartesianAxis *cylinderPressureAxis; DiveGasPressureItem *gasPressureItem; MeanDepthLine *meanDepth; |