diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2013-07-13 17:02:06 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-07-18 12:00:12 -0700 |
commit | 3076dc6d47584b42200d050beefa26ac9df8d20c (patch) | |
tree | 38a603f9fe4ad15103ad33b278b9eafa7488aaed /qt-ui/profilegraphics.cpp | |
parent | fc84f8868d6cad30f6e250b3115c1ce1f574e1b5 (diff) | |
download | subsurface-3076dc6d47584b42200d050beefa26ac9df8d20c.tar.gz |
Profile: add the isGrayscale flag
setPrintMode() can now be used to set the
profile to be plotted in grayscale.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'qt-ui/profilegraphics.cpp')
-rw-r--r-- | qt-ui/profilegraphics.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp index 1fe3fbe88..98f01db10 100644 --- a/qt-ui/profilegraphics.cpp +++ b/qt-ui/profilegraphics.cpp @@ -47,6 +47,7 @@ extern int evn_used; ProfileGraphicsView::ProfileGraphicsView(QWidget* parent) : QGraphicsView(parent), toolTip(0) , dive(0), diveDC(0) { printMode = false; + isGrayscale = false; gc.printer = false; fill_profile_color(); setScene(new QGraphicsScene()); @@ -190,9 +191,10 @@ void ProfileGraphicsView::refresh() plot(current_dive, TRUE); } -void ProfileGraphicsView::setPrintMode(bool mode) +void ProfileGraphicsView::setPrintMode(bool mode, bool grayscale) { printMode = mode; + isGrayscale = grayscale; } void ProfileGraphicsView::plot(struct dive *d, bool forceRedraw) |