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