diff --git a/oscar/Graphs/gFlagsLine.cpp b/oscar/Graphs/gFlagsLine.cpp index e921400e..50f39e37 100644 --- a/oscar/Graphs/gFlagsLine.cpp +++ b/oscar/Graphs/gFlagsLine.cpp @@ -1,6 +1,7 @@ -/* gFlagsLine Implementation +/* gFlagsLine Implementation * * Copyright (c) 2011-2018 Mark Watkins + * Copyright (c) 2020 The OSCAR Team * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the source code @@ -176,8 +177,14 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion ®ion) for (int i=0, end=visflags.size(); i < end; i++) { // Alternating box color - if (i & 1) { barcol = COLOR_ALT_BG1; } - else { barcol = COLOR_ALT_BG2; } + barcol = COLOR_ALT_BG2; + if (i & 1) { + if (g.printing() && AppSetting->monochromePrinting()) { + barcol = QColor(0xe4, 0xe4, 0xe4, 0xff); + } else { + barcol = COLOR_ALT_BG1; + } + } painter.fillRect(left, floor(linetop), width-1, ceil(m_barh), QBrush(barcol)); @@ -294,6 +301,9 @@ void gFlagsLine::paint(QPainter &painter, gGraph &w, const QRegion ®ion) QVector vlines; QColor color=schema::channel[m_code].defaultColor(); + if (w.printing() && AppSetting->monochromePrinting()) { + color = Qt::black; + } QBrush brush(color); int tooltipTimeout = AppSetting->tooltipTimeout(); @@ -415,7 +425,11 @@ void gFlagsLine::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } - painter.setPen(color); + if (w.printing() && AppSetting->monochromePrinting()) { + painter.setPen(QPen(Qt::black, 1.5)); + } else { + painter.setPen(color); + } painter.drawLines(vlines); } diff --git a/oscar/Graphs/gLineChart.cpp b/oscar/Graphs/gLineChart.cpp index 751691bf..96405842 100644 --- a/oscar/Graphs/gLineChart.cpp +++ b/oscar/Graphs/gLineChart.cpp @@ -839,7 +839,11 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } - painter.setPen(QPen(chan.defaultColor(), lineThickness)); + if (w.printing() && AppSetting->monochromePrinting()) { + painter.setPen(QPen(Qt::black, lineThickness + 0.5)); + } else { + painter.setPen(QPen(chan.defaultColor(), lineThickness)); + } painter.drawLines(lines); w.graphView()->lines_drawn_this_frame += lines.count(); lines.clear(); @@ -962,7 +966,11 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } } - painter.setPen(QPen(chan.defaultColor(), lineThickness)); + if (w.printing() && AppSetting->monochromePrinting()) { + painter.setPen(QPen(Qt::black, lineThickness + 0.5)); + } else { + painter.setPen(QPen(chan.defaultColor(), lineThickness)); + } painter.drawLines(lines); w.graphView()->lines_drawn_this_frame+=lines.count(); lines.clear(); diff --git a/oscar/Graphs/gSegmentChart.cpp b/oscar/Graphs/gSegmentChart.cpp index 35845d7c..b47f8295 100644 --- a/oscar/Graphs/gSegmentChart.cpp +++ b/oscar/Graphs/gSegmentChart.cpp @@ -1,6 +1,7 @@ -/* gSegmentChart Implementation +/* gSegmentChart Implementation * * Copyright (c) 2011-2018 Mark Watkins + * Copyright (c) 2020 The OSCAR Team * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the source code @@ -125,7 +126,10 @@ void gSegmentChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) // Pie Chart ///////////////////////////////////////////////////////////////////////////////////// if (m_graph_type == GST_Pie) { - const QColor col = schema::channel[m_codes[m]].defaultColor(); + QColor col = schema::channel[m_codes[m]].defaultColor(); + if (w.printing() && AppSetting->monochromePrinting()) { + col = Qt::white; + } // length of this segment in degrees float len = 360.0 / m_total * data;