mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Fix QPainter::drawLines glitch in gLineChart
This commit is contained in:
parent
c369f0ef00
commit
5ebc7dc283
@ -522,6 +522,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
lastpx = xst + ((time - minx) * xmult);
|
||||
lastpy = yst - ((data - miny) * ymult);
|
||||
|
||||
siz--;
|
||||
for (int i = idx; i < siz; i += sam) {
|
||||
ptr += sam;
|
||||
time += rate;
|
||||
@ -556,6 +557,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
int idx = 0;
|
||||
|
||||
if (siz > 15) {
|
||||
|
||||
for (; idx < siz; ++idx) {
|
||||
time = start + *tptr++;
|
||||
|
||||
@ -566,7 +568,6 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
|
||||
if (idx > 0) {
|
||||
idx--;
|
||||
//tptr--;
|
||||
}
|
||||
}
|
||||
|
||||
@ -609,16 +610,16 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// Cap px to right margin
|
||||
if (px > xst + width) { px = xst + width; }
|
||||
|
||||
lines.append(QLine(lastpx, lastpy, px, lastpy));
|
||||
lines.append(QLine(px, lastpy, px, py));
|
||||
} else {
|
||||
// lines.append(QLine(lastpx, lastpy, px, lastpy));
|
||||
// lines.append(QLine(px, lastpy, px, py));
|
||||
} // else {
|
||||
// Letting the scissor do the dirty work for non horizontal lines
|
||||
// This really should be changed, as it might be cause that weird
|
||||
// display glitch on Linux..
|
||||
|
||||
lines.append(QLine(lastpx, lastpy, px, lastpy));
|
||||
lines.append(QLine(px, lastpy, px, py));
|
||||
}
|
||||
// }
|
||||
|
||||
lastpx = px;
|
||||
lastpy = py;
|
||||
@ -645,13 +646,13 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
// Cap px to right margin
|
||||
if (px > xst + width) { px = xst + width; }
|
||||
|
||||
lines.append(QLine(lastpx, lastpy, px, py));
|
||||
} else {
|
||||
// lines.append(QLine(lastpx, lastpy, px, py));
|
||||
} //else {
|
||||
// Letting the scissor do the dirty work for non horizontal lines
|
||||
// This really should be changed, as it might be cause that weird
|
||||
// display glitch on Linux..
|
||||
lines.append(QLine(lastpx, lastpy, px, py));
|
||||
}
|
||||
//}
|
||||
|
||||
lastpx = px;
|
||||
lastpy = py;
|
||||
@ -662,11 +663,17 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
}
|
||||
}
|
||||
}
|
||||
painter.setPen(QPen(m_colors[gi],p_profile->appearance->lineThickness()));
|
||||
painter.drawLines(lines);
|
||||
w.graphView()->lines_drawn_this_frame+=lines.count();
|
||||
lines.clear();
|
||||
|
||||
}
|
||||
|
||||
if (done) { break; }
|
||||
}
|
||||
}
|
||||
|
||||
painter.setPen(QPen(m_colors[gi],p_profile->appearance->lineThickness()));
|
||||
painter.drawLines(lines);
|
||||
w.graphView()->lines_drawn_this_frame+=lines.count();
|
||||
|
@ -23,7 +23,7 @@
|
||||
//********************************************************************************************
|
||||
// Please INCREMENT the following value when making changes to this loaders implementation.
|
||||
//
|
||||
const int resmed_data_version = 6;
|
||||
const int resmed_data_version = 7;
|
||||
//
|
||||
//********************************************************************************************
|
||||
|
||||
@ -238,10 +238,10 @@ struct EDFGroup {
|
||||
SAD = sad;
|
||||
}
|
||||
EDFGroup(const EDFGroup & copy) {
|
||||
BRP=copy.BRP;
|
||||
EVE=copy.EVE;
|
||||
PLD=copy.PLD;
|
||||
SAD=copy.SAD;
|
||||
BRP = copy.BRP;
|
||||
EVE = copy.EVE;
|
||||
PLD = copy.PLD;
|
||||
SAD = copy.SAD;
|
||||
}
|
||||
QString BRP;
|
||||
QString EVE;
|
||||
|
Loading…
Reference in New Issue
Block a user