diff --git a/sleepyhead/Graphs/gGraph.cpp b/sleepyhead/Graphs/gGraph.cpp index 0cbc613b..ebcf3436 100644 --- a/sleepyhead/Graphs/gGraph.cpp +++ b/sleepyhead/Graphs/gGraph.cpp @@ -1190,7 +1190,7 @@ void gGraph::ZoomX(double mult, int origin_px) void gGraph::DrawTextQue(QPainter &painter) { - m_graphview->DrawTextQue(painter); + AppSetting->usePixmapCaching() ? m_graphview->DrawTextQueCached(painter) : m_graphview->DrawTextQue(painter); } // margin recalcs.. diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 39f1c3e5..51014538 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -741,270 +741,183 @@ void gGraphView::dumpInfo() // } } -bool gGraphView::usePixmapCache() -{ - //use_pixmap_cache is an overide setting - return AppSetting->usePixmapCaching(); -} - -#define CACHE_DRAWTEXT -#ifndef CACHE_DRAWTEXT -// Render all qued text via QPainter method +// Render graphs with QPainter or pixmap caching, depending on preferences void gGraphView::DrawTextQue(QPainter &painter) { - int w, h; + // process the text drawing queue + int h,w; - // not sure if global antialiasing would be better.. - //painter.setRenderHint(QPainter::TextAntialiasing, AppSetting->antiAliasing()); - int items = m_textque.size(); - for (int i = 0; i < items; ++i) { - TextQue &q = m_textque[i]; - painter.setPen(q.color); - painter.setRenderHint(QPainter::TextAntialiasing, q.antialias); - QFont font = *q.font; - painter.setFont(font); + strings_drawn_this_frame += m_textque.size() + m_textqueRect.size();; - if (q.angle == 0) { // normal text + for (const TextQue & q : m_textque) { + // can do antialiased text via texture cache fine on mac + // Just draw the fonts.. + painter.setPen(QColor(q.color)); + painter.setFont(*q.font); + if (q.angle == 0) { painter.drawText(q.x, q.y, q.text); - } else { // rotated text + } else { w = painter.fontMetrics().width(q.text); h = painter.fontMetrics().xHeight() + 2; painter.translate(q.x, q.y); painter.rotate(-q.angle); - painter.drawText(floor(-w / 2.0), floor(-h / 2.0), q.text); + painter.drawText(floor(-w / 2.0)-6, floor(-h / 2.0), q.text); painter.rotate(+q.angle); painter.translate(-q.x, -q.y); } - strings_drawn_this_frame++; - q.text.clear(); } - m_textque.clear(); - items = m_textqueRect.size(); - for (int i=0; i< items; ++i) { - TextQueRect &q = m_textqueRect[i]; - painter.setPen(q.color); - painter.setRenderHint(QPainter::TextAntialiasing, q.antialias); - QFont font = *q.font; - painter.setFont(font); + //////////////////////////////////////////////////////////////////////// + // Text Rectangle Queues.. + //////////////////////////////////////////////////////////////////////// - if (q.angle == 0) { // normal text + for (const TextQueRect & q : m_textqueRect) { + // Just draw the fonts.. + painter.setPen(QColor(q.color)); + painter.setFont(*q.font); + + if (q.angle == 0) { painter.drawText(q.rect, q.flags, q.text); - } else { // rotated text - - int x = q.rect.x(); - int y = q.rect.y(); + } else { w = painter.fontMetrics().width(q.text); h = painter.fontMetrics().xHeight() + 2; - painter.translate(x, y); + painter.translate(q.rect.x(), q.rect.y()); painter.rotate(-q.angle); painter.drawText(floor(-w / 2.0), floor(-h / 2.0), q.text); painter.rotate(+q.angle); - painter.translate(-x, -y); + painter.translate(-q.rect.x(), -q.rect.y()); } - strings_drawn_this_frame++; - q.text.clear(); } - m_textqueRect.clear(); } -#else -// Render graphs with QPainter or pixmap caching, depending on preferences -void gGraphView::DrawTextQue(QPainter &painter) + +const QString z__cacheStr = "%1:%2:%3"; + +void gGraphView::DrawTextQueCached(QPainter &painter) { - { - // process the text drawing queue - int h,w; + // process the text drawing queue + int h,w; + QString hstr; + QPixmap pm; + float ww, hh, xxx, yyy; + const int buf = 8; + int fonta = defaultfont->pointSize(); + int fontb = mediumfont->pointSize(); + int fontc = bigfont->pointSize(); + int size; - for (const auto & q : m_textque) { - // can do antialiased text via texture cache fine on mac - if (usePixmapCache()) { - // Generate the pixmap cache "key" - QString hstr = QString("%1:%2:%3"). - arg(q.text). - arg(q.color.name()). - arg(q.font->pointSize()); - QPixmap pm; - const int buf = 8; - if (!QPixmapCache::find(hstr, &pm)) { + for (const TextQue & q : m_textque) { + // can do antialiased text via texture cache fine on mac + // Generate the pixmap cache "key" + size = (q.font == defaultfont) ? fonta : (q.font==mediumfont) ? fontb : (q.font == bigfont) ? fontc : q.font->pointSize(); - QFontMetrics fm(*q.font); - // QRect rect=fm.tightBoundingRect(q.text); - w = fm.width(q.text); - h = fm.height()+buf; + hstr = z__cacheStr.arg(q.text).arg(q.color.name()).arg(size); - pm=QPixmap(w, h); - pm.fill(Qt::transparent); + if (!QPixmapCache::find(hstr, &pm)) { - QPainter imgpainter(&pm); + QFontMetrics fm(*q.font); + // QRect rect=fm.tightBoundingRect(q.text); + w = fm.width(q.text); + h = fm.height()+buf; - imgpainter.setPen(q.color); + pm = QPixmap(w, h); + pm.fill(Qt::transparent); - imgpainter.setFont(*q.font); + QPainter imgpainter(&pm); - imgpainter.setRenderHint(QPainter::TextAntialiasing, q.antialias); - imgpainter.drawText(0, h-buf, q.text); - imgpainter.end(); + imgpainter.setPen(q.color); - QPixmapCache::insert(hstr, pm); - strings_drawn_this_frame++; - } else { - //cached - strings_cached_this_frame++; - } + imgpainter.setFont(*q.font); - h = pm.height(); - w = pm.width(); - if (q.angle != 0) { - float xxx = q.x - h - (h / 2); - float yyy = q.y + w / 2; // + buf / 2; + imgpainter.setRenderHint(QPainter::TextAntialiasing, q.antialias); + imgpainter.drawText(0, h-buf, q.text); + imgpainter.end(); - xxx+=4; - yyy+=4; - - painter.translate(xxx, yyy); - painter.rotate(-q.angle); - painter.drawPixmap(QRect(0, h / 2, w, h), pm); - painter.rotate(+q.angle); - painter.translate(-xxx, -yyy); - } else { - QRect r1(q.x - buf / 2 + 4, q.y - h + buf, w, h); - painter.drawPixmap(r1, pm); - } - } else { - // Just draw the fonts.. - painter.setPen(QColor(q.color)); - painter.setFont(*q.font); - - if (q.angle == 0) { - painter.drawText(q.x, q.y, q.text); - } else { - painter.setFont(*q.font); - - w = painter.fontMetrics().width(q.text); - h = painter.fontMetrics().xHeight() + 2; - - painter.translate(q.x, q.y); - painter.rotate(-q.angle); - painter.drawText(floor(-w / 2.0)-6, floor(-h / 2.0), q.text); - painter.rotate(+q.angle); - painter.translate(-q.x, -q.y); - } - strings_drawn_this_frame++; - - } - - //q.text.clear(); - //q.text.squeeze(); + QPixmapCache::insert(hstr, pm); } - m_textque.clear(); + h = pm.height(); + w = pm.width(); + if (q.angle != 0) { + xxx = q.x - h - (h / 2); + yyy = q.y + w / 2; // + buf / 2; + + xxx += 4; + yyy += 4; + + painter.translate(xxx, yyy); + painter.rotate(-q.angle); + painter.drawPixmap(QRect(0, h / 2, w, h), pm); + painter.rotate(+q.angle); + painter.translate(-xxx, -yyy); + } else { + QRect r1(q.x - buf / 2 + 4, q.y - h + buf, w, h); + painter.drawPixmap(r1, pm); + } } //////////////////////////////////////////////////////////////////////// // Text Rectangle Queues.. //////////////////////////////////////////////////////////////////////// - float ww, hh; - for (const auto & q : m_textqueRect) { + for (const TextQueRect & q : m_textqueRect) { // can do antialiased text via texture cache fine on mac - if (usePixmapCache()) { - // Generate the pixmap cache "key" - QString hstr = QString("%1:%2:%3"). - arg(q.text). - arg(q.color.name()). - arg(q.font->pointSize()); + // Generate the pixmap cache "key" - QPixmap pm; - if (!QPixmapCache::find(hstr, &pm)) { + size = (q.font == defaultfont) ? fonta : (q.font==mediumfont) ? fontb : (q.font == bigfont) ? fontc : q.font->pointSize(); - ww = q.rect.width(); - hh = q.rect.height(); + hstr = z__cacheStr.arg(q.text).arg(q.color.name()).arg(size); - pm=QPixmap(ww, hh); + if (!QPixmapCache::find(hstr, &pm)) { - //int aaw1 = pm.width(); - pm.fill(Qt::transparent); + w = q.rect.width(); + h = q.rect.height(); - QPainter imgpainter(&pm); + pm = QPixmap(w, h); - //int aaw2 = pm.width(); - imgpainter.setPen(q.color); + pm.fill(Qt::transparent); - imgpainter.setFont(*q.font); + QPainter imgpainter(&pm); - imgpainter.setRenderHint(QPainter::Antialiasing, true); - imgpainter.setRenderHint(QPainter::TextAntialiasing, true); - QRectF rect(0,0, ww, hh); - imgpainter.drawText(rect, q.flags, q.text); - //int aaw3 = pm.width(); - imgpainter.end(); - - QPixmapCache::insert(hstr, pm); - //int aaw4 = pm.width(); - strings_drawn_this_frame++; - } else { - //cached - strings_cached_this_frame++; - } + imgpainter.setPen(q.color); + imgpainter.setFont(*q.font); + imgpainter.setRenderHint(QPainter::TextAntialiasing, true); + imgpainter.drawText(QRect(0,0, w, h), q.flags, q.text); + imgpainter.end(); + QPixmapCache::insert(hstr, pm); + } else { hh = pm.height(); ww = pm.width(); - if (q.angle != 0) { - float xxx = q.rect.x() - hh - (hh / 2); - float yyy = q.rect.y() + ww / 2; // + buf / 2; - - xxx+=4; - yyy+=4; - - painter.translate(xxx, yyy); - painter.rotate(-q.angle); - painter.drawPixmap(QRect(0, hh / 2, ww, hh), pm); - painter.rotate(+q.angle); - painter.translate(-xxx, -yyy); - } else { - //painter.drawPixmap(QPoint(q.rect.x(), q.rect.y()), pm); - painter.drawPixmap(q.rect,pm, QRect(0,0,ww,hh)); - } - } else { - // Just draw the fonts.. - - painter.setPen(QColor(q.color)); - painter.setFont(*q.font); - - if (q.angle == 0) { - painter.drawText(q.rect, q.flags, q.text); - } else { - painter.setFont(*q.font); - - ww = painter.fontMetrics().width(q.text); - hh = painter.fontMetrics().xHeight() + 2; - - painter.translate(q.rect.x(), q.rect.y()); - painter.rotate(-q.angle); - painter.drawText(floor(-ww / 2.0), floor(-hh / 2.0), q.text); - painter.rotate(+q.angle); - painter.translate(-q.rect.x(), -q.rect.y()); - } - strings_drawn_this_frame++; - } + if (q.angle != 0) { + xxx = q.rect.x() - h - (h / 2); + yyy = q.rect.y() + w / 2; - //q.text.clear(); - //q.text.squeeze(); + xxx += 4; + yyy += 4; + + painter.translate(xxx, yyy); + painter.rotate(-q.angle); + painter.drawPixmap(QRect(0, hh / 2, w, h), pm); + painter.rotate(+q.angle); + painter.translate(-xxx, -yyy); + } else { + painter.drawPixmap(q.rect,pm, QRect(0,0,w,h)); + } } + strings_drawn_this_frame += m_textque.size() + m_textqueRect.size();; + m_textque.clear(); m_textqueRect.clear(); - } -#endif void gGraphView::AddTextQue(const QString &text, QRectF rect, quint32 flags, float angle, QColor color, QFont *font, bool antialias) { @@ -1351,7 +1264,7 @@ bool gGraphView::renderGraphs(QPainter &painter) m_drawlist.clear(); if (m_graphs.size() > 1) { - DrawTextQue(painter); + AppSetting->usePixmapCaching() ? DrawTextQueCached(painter) :DrawTextQue(painter); // Draw a gradient behind pinned graphs QLinearGradient linearGrad(QPointF(100, 100), QPointF(width() / 2, 100)); @@ -1426,7 +1339,7 @@ bool gGraphView::renderGraphs(QPainter &painter) // lines->setSize(linesize); - DrawTextQue(painter); + AppSetting->usePixmapCaching() ? DrawTextQueCached(painter) :DrawTextQue(painter); //glDisable(GL_TEXTURE_2D); //glDisable(GL_DEPTH_TEST); @@ -1518,7 +1431,7 @@ void gGraphView::paintGL() } else { emit updateRange(graphs_drawn ? m_minx : 0.0F, m_maxx); } - DrawTextQue(painter); + AppSetting->usePixmapCaching() ? DrawTextQueCached(painter) :DrawTextQue(painter); m_tooltip->paint(painter); @@ -1559,7 +1472,7 @@ void gGraphView::paintGL() // if (usePixmapCache()) xx+=4; else xx-=3; #endif AddTextQue(ss, width(), w / 2, 90, QColor(Qt::black), defaultfont); - DrawTextQue(painter); + AppSetting->usePixmapCaching() ? DrawTextQueCached(painter) :DrawTextQue(painter); } // painter.setPen(Qt::lightGray); // painter.drawLine(0, 0, 0, height()); diff --git a/sleepyhead/Graphs/gGraphView.h b/sleepyhead/Graphs/gGraphView.h index d2a2841d..91d63904 100644 --- a/sleepyhead/Graphs/gGraphView.h +++ b/sleepyhead/Graphs/gGraphView.h @@ -428,6 +428,9 @@ class gGraphView //! \brief Draw all text components using QPainter object painter void DrawTextQue(QPainter &painter); + //! \brief Draw all text components using QPainter object painter using Pixmapcache + void DrawTextQueCached(QPainter &painter); + //! \brief Returns number of graphs contained (whether they are visible or not) int size() const { return m_graphs.size(); } @@ -492,9 +495,6 @@ class gGraphView //! \brief Enable or disable the Text Pixmap Caching system preference overide void setUsePixmapCache(bool b) { use_pixmap_cache = b; } - //! \brief Return whether or not the Pixmap Cache for text rendering is being used. - bool usePixmapCache(); - //! \brief Graph drawing routines, returns true if there weren't any graphs to draw bool renderGraphs(QPainter &painter); diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 6d976f58..2848dbdd 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -477,8 +477,8 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } - EventDataType lastpx, lastpy; - EventDataType px, py; + double lastpx, lastpy; + double px, py; int idx; bool done; double x0, xL; @@ -736,8 +736,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) for (int i = idx; i <= siz; i += sam, ptr += sam) { time += rate; // This is much faster than QVector access. - data = *ptr + el.offset(); - data *= gain; + data = *ptr * gain; // Scale the time scale X to pixel scale X px = ((time - minx) * xmult); @@ -747,7 +746,8 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) // In accel mode, each pixel has a min/max Y value. // m_drawlist's index is the pixel index for the X pixel axis. - int z = round(px); // Hmmm... round may screw this up. + //int z = round(px); // Hmmm... round may screw this up. + int z = (px>=0.5)?(int(px)+1):int(px); if (z < minz) { minz = z; // minz=First pixel @@ -790,7 +790,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } float ax1, ay1; - QPoint *drl = m_drawlist + minz; + QPointF *drl = m_drawlist + minz; // Don't need to cap VertexBuffer here, as it's limited to max_drawlist_size anyway diff --git a/sleepyhead/Graphs/gLineChart.h b/sleepyhead/Graphs/gLineChart.h index 00dafb9d..1da1d8ac 100644 --- a/sleepyhead/Graphs/gLineChart.h +++ b/sleepyhead/Graphs/gLineChart.h @@ -166,7 +166,7 @@ class gLineChart: public Layer static const int max_drawlist_size = 10000; //! \brief The list of screen points used for accelerated waveform plots.. - QPoint m_drawlist[max_drawlist_size]; + QPointF m_drawlist[max_drawlist_size]; int subtract_offset; diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index d49124f8..ff783121 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -31,7 +31,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) int left = region.boundingRect().left(); int topp = region.boundingRect().top(); // FIXME: Misspelling intentional. - int width = region.boundingRect().width(); + double width = region.boundingRect().width(); int height = region.boundingRect().height(); if (!m_visible) { return; } @@ -42,7 +42,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) double xx = w.max_x - w.min_x; //double yy = w.max_y - w.min_y; - double jj = double(width) / double(xx); + double jj = width / xx; if (xx <= 0) { return; } @@ -53,8 +53,8 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) float bottom = start_py + height - 25 * w.printScaleY(), top = start_py + 25 * w.printScaleY(); - double X; - double Y; + qint64 X; + qint64 Y; QPoint mouse=w.graphView()->currentMousePos(); @@ -108,22 +108,22 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) //////////////////////////////////////////////////////////////////////////// // Skip data previous to minx bounds //////////////////////////////////////////////////////////////////////////// - for (; dptr < eptr; dptr++) { - X = stime + *tptr; - if (X >= w.min_x) { + for (; dptr < eptr; ++dptr) { + + if ((stime + *tptr) >= w.min_x) { break; } - tptr++; + ++tptr; } if (m_flt == FT_Span) { //////////////////////////////////////////////////////////////////////////// // FT_Span //////////////////////////////////////////////////////////////////////////// + QBrush brush(m_flag_color); for (; dptr < eptr; dptr++) { - //hover = false; X = stime + *tptr++; raw = *dptr; @@ -132,31 +132,18 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) if (Y > w.max_x) { break; } - - x1 = jj * double(X - w.min_x) + left; - m_count++; m_sum += raw; - x2 = jj * double(Y - w.min_x) + left; + ++m_count; - if (int(x1) == int(x2)) { - x2 += 1; - } + x1 = jj * double(X - w.min_x); + x2 = jj * double(Y - w.min_x); - if (x2 < left) { - x2 = left; - } + x2 += (int(x1)==int(x2)) ? 1 : 0; - if (x1 > width + left) { - x1 = width + left; - } + x2 = qMax(0.0, x2)+left; + x1 = qMin(width, x1)+left; - QRect rect(x2, start_py, x1-x2, height); - QColor col = m_flag_color; -// if (rect.contains(mouse)) { -// hover = true; -// } - - painter.fillRect(rect, QBrush(col)); + painter.fillRect(QRect(x2, start_py, x1-x2, height), brush); } }/* else if (m_flt == FT_Dot) { //////////////////////////////////////////////////////////////////////////// @@ -192,6 +179,13 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) //////////////////////////////////////////////////////////////////////////// // FT_Bar //////////////////////////////////////////////////////////////////////////// + QColor col = m_flag_color; + + QString lab = QString("%1").arg(m_label); + GetTextExtent(lab, x, y); + + //int lx,ly; + for (; dptr < eptr; dptr++) { // hover = false; X = stime + *tptr++; @@ -201,7 +195,7 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) break; } - x1 = jj * (double(X) - double(w.min_x)) + left; + x1 = jj * double(X - w.min_x) + left; m_count++; m_sum += raw; int z = start_py + height; @@ -209,10 +203,8 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) double d1 = jj * double(raw) * 1000.0; - if ((m_flt == FT_Bar) && (odt == ODT_Bars)) { // || (xx < 3600000)) { + if ((m_flt == FT_Bar) && (odt == ODT_Bars)) { QRect rect(x1-d1, top, d1+4, height); - QColor col = m_flag_color; - painter.setPen(QPen(col,4)); painter.drawPoint(x1, top); @@ -220,7 +212,6 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) if (!w.selectingArea() && !m_blockhover && rect.contains(mouse) && !m_hover) { m_hover = true; - QColor col2(230,230,230,128); QRect rect((x1-d1), start_py+2, d1, height-2); if (rect.x() < left) { @@ -231,31 +222,16 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) painter.setPen(col); painter.drawRect(rect); - // Draw text label - QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw); - GetTextExtent(lab, x, y); + // Queue tooltip + QString lab2 = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw); + w.ToolTip(lab2, x1 - 10, start_py + 24 + (3 * w.printScaleY()), TT_AlignRight, AppSetting->tooltipTimeout()); - w.ToolTip(lab, x1 - 10, start_py + 24 + (3 * w.printScaleY()), TT_AlignRight, AppSetting->tooltipTimeout()); - - //painter.fillRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4, QBrush(QColor(255,255,255,245))); -// painter.setPen(QPen(Qt::gray,1)); -// painter.drawRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4); -// w.renderText(lab, x1 - (x / 2)+2 - x, start_py + 14 + y + (3 * w.printScaleY()),0); - -// painter.drawLine(rect.x(), top, rect.x()+d1, top); -// painter.drawLine(rect.x(), bottom, rect.x()+d1, bottom); -// painter.drawLine(rect.x(), top, rect.x(), bottom); - - // col = COLOR_Gold; -// hover = true; painter.setPen(QPen(col,3)); } else { painter.setPen(QPen(col,1)); } painter.drawLine(x1, top, x1, bottom); if (xx < (3600000)) { - QString lab = QString("%1").arg(m_label); - GetTextExtent(lab, x, y); w.renderText(lab, x1 - (x / 2), top - y + (5 * w.printScaleY()),0); } @@ -268,7 +244,6 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) if (!w.selectingArea() && !m_blockhover && QRect(x1-2, topp, 6, height).contains(mouse) && !m_hover) { // only want to draw the highlight/label once per frame m_hover = true; - //b = true; // Draw text label QString lab = QString("%1 (%2)").arg(schema::channel[m_code].fullname()).arg(raw); @@ -276,12 +251,6 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) w.ToolTip(lab, x1 - 10, start_py + 24 + (3 * w.printScaleY()), TT_AlignRight, tooltipTimeout); -// painter.fillRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4, QBrush(QColor(255,255,255,245))); -// painter.setPen(QPen(Qt::gray,1)); -// painter.drawRect(x1 - (x / 2) - x, start_py + 14 + (3 * w.printScaleY()), x+4,y+4); -// w.renderText(lab, x1 - (x / 2)+2 - x, start_py + 14 + y + (3 * w.printScaleY()),0); - - //x1-=1; QColor col = m_flag_color; col.setAlpha(60); painter.setPen(QPen(col, 4)); @@ -297,17 +266,12 @@ void gLineOverlayBar::paint(QPainter &painter, gGraph &w, const QRegion ®ion) painter.setPen(QPen(col,1)); painter.drawLine(x1, start_py+14, x1, z); painter.setPen(QPen(m_flag_color,1)); - // painter.drawLine(x1, z, x1, z - 12); painter.drawLine(x1, start_py+2, x1, start_py + 14); } - - } } } - } - } } bool gLineOverlayBar::mouseMoveEvent(QMouseEvent *event, gGraph *graph) diff --git a/sleepyhead/Graphs/gXAxis.cpp b/sleepyhead/Graphs/gXAxis.cpp index 693dec08..5a742a79 100644 --- a/sleepyhead/Graphs/gXAxis.cpp +++ b/sleepyhead/Graphs/gXAxis.cpp @@ -85,7 +85,7 @@ void gXAxis::paint(QPainter &painter, gGraph &w, const QRegion ®ion) QFontMetrics fm(*defaultfont); - bool usepixmap = w.graphView()->usePixmapCache(); // Whether or not to use pixmap caching + bool usepixmap = AppSetting->usePixmapCaching(); // Whether or not to use pixmap caching if (!usepixmap || (usepixmap && w.invalidate_xAxisImage)) { // Redraw graph xaxis labels and ticks either to pixmap or directly to screen diff --git a/sleepyhead/SleepLib/appsettings.h b/sleepyhead/SleepLib/appsettings.h index 72c4f20b..b476ef91 100644 --- a/sleepyhead/SleepLib/appsettings.h +++ b/sleepyhead/SleepLib/appsettings.h @@ -67,25 +67,25 @@ public: AppWideSetting(Preferences *pref) : PrefSettings(pref) { - initPref(STR_IS_Multithreading, idealThreads() > 1); + m_multithreading = initPref(STR_IS_Multithreading, idealThreads() > 1).toBool(); initPref(STR_US_ShowPerformance, false); initPref(STR_US_ShowDebug, false); initPref(STR_AS_CalendarVisible, true); - initPref(STR_US_ScrollDampening, (int)50); - initPref(STR_US_TooltipTimeout, (int)2500); - initPref(STR_AS_GraphHeight, 180.0); + m_scrollDampening = initPref(STR_US_ScrollDampening, (int)50).toInt(); + m_tooltipTimeout = initPref(STR_US_TooltipTimeout, (int)2500).toInt(); + m_graphHeight=initPref(STR_AS_GraphHeight, 180).toInt(); initPref(STR_AS_DailyPanelWidth, 350.0); initPref(STR_AS_RightPanelWidth, 230.0); - initPref(STR_AS_AntiAliasing, true); + m_antiAliasing=initPref(STR_AS_AntiAliasing, true).toBool(); initPref(STR_AS_GraphSnapshots, true); initPref(STR_AS_Animations, true); - initPref(STR_AS_SquareWave, false); + m_squareWavePlots = initPref(STR_AS_SquareWave, false).toBool(); initPref(STR_AS_AllowYAxisScaling, true); initPref(STR_AS_GraphTooltips, true); - initPref(STR_AS_UsePixmapCaching, false); + m_usePixmapCaching = initPref(STR_AS_UsePixmapCaching, false).toBool(); initPref(STR_AS_OverlayType, ODT_Bars); initPref(STR_AS_OverviewLinechartMode, OLC_Bartop); - initPref(STR_AS_LineThickness, 1.0); + m_lineThickness=initPref(STR_AS_LineThickness, 1.0).toFloat(); initPref(STR_AS_LineCursorMode, true); initPref(STR_AS_RightSidebarVisible, true); initPref(STR_CS_UserEventPieChart, false); @@ -107,6 +107,11 @@ public: initPref(STR_GEN_ShowAboutDialog, 0); // default to about screen, set to -1 afterwards } + bool m_usePixmapCaching, m_antiAliasing, m_squareWavePlots; + int m_tooltipTimeout, m_graphHeight, m_scrollDampening; + bool m_multithreading; + float m_lineThickness; + QString versionString() const { return getPref(STR_PREF_VersionString).toString(); } bool updatesAutoCheck() const { return getPref(STR_GEN_UpdatesAutoCheck).toBool(); } bool allowEarlyUpdates() const { return getPref(STR_PREF_AllowEarlyUpdates).toBool(); } @@ -118,35 +123,35 @@ public: QString profileName() const { return getPref(STR_GEN_Profile).toString(); } bool autoLaunchImport() const { return getPref(STR_US_AutoLaunchImport).toBool(); } bool cacheSessions() const { return getPref(STR_IS_CacheSessions).toBool(); } - bool multithreading() const { return getPref(STR_IS_Multithreading).toBool(); } + bool multithreading() const { return m_multithreading; } bool showDebug() const { return getPref(STR_US_ShowDebug).toBool(); } bool showPerformance() const { return getPref(STR_US_ShowPerformance).toBool(); } //! \brief Whether to show the calendar bool calendarVisible() const { return getPref(STR_AS_CalendarVisible).toBool(); } - int scrollDampening() const { return getPref(STR_US_ScrollDampening).toInt(); } - int tooltipTimeout() const { return getPref(STR_US_TooltipTimeout).toInt(); } + int scrollDampening() const { return m_scrollDampening; } + int tooltipTimeout() const { return m_tooltipTimeout; } //! \brief Returns the normal (unscaled) height of a graph - int graphHeight() const { return getPref(STR_AS_GraphHeight).toInt(); } + int graphHeight() const { return m_graphHeight; } //! \brief Returns the normal (unscaled) height of a graph int dailyPanelWidth() const { return getPref(STR_AS_DailyPanelWidth).toInt(); } //! \brief Returns the normal (unscaled) height of a graph int rightPanelWidth() const { return getPref(STR_AS_RightPanelWidth).toInt(); } //! \brief Returns true if AntiAliasing (the graphical smoothing method) is enabled - bool antiAliasing() const { return getPref(STR_AS_AntiAliasing).toBool(); } + bool antiAliasing() const { return m_antiAliasing; } //! \brief Returns true if renderPixmap function is in use, which takes snapshots of graphs bool graphSnapshots() const { return getPref(STR_AS_GraphSnapshots).toBool(); } //! \brief Returns true if Graphical animations & Transitions will be drawn bool animations() const { return getPref(STR_AS_Animations).toBool(); } //! \brief Returns true if PixmapCaching acceleration will be used - bool usePixmapCaching() const { return getPref(STR_AS_UsePixmapCaching).toBool(); } + inline const bool & usePixmapCaching() const { return m_usePixmapCaching; } //! \brief Returns true if Square Wave plots are preferred (where possible) - bool squareWavePlots() const { return getPref(STR_AS_SquareWave).toBool(); } + bool squareWavePlots() const { return m_squareWavePlots; } //! \brief Whether to allow double clicking on Y-Axis labels to change vertical scaling mode bool allowYAxisScaling() const { return getPref(STR_AS_AllowYAxisScaling).toBool(); } //! \brief Whether to show graph tooltips bool graphTooltips() const { return getPref(STR_AS_GraphTooltips).toBool(); } //! \brief Pen width of line plots - float lineThickness() const { return getPref(STR_AS_LineThickness).toFloat(); } + float lineThickness() const { return m_lineThickness; } //! \brief Whether to show line cursor bool lineCursorMode() const { return getPref(STR_AS_LineCursorMode).toBool(); } //! \brief Whether to show the right sidebar @@ -170,29 +175,29 @@ public: void setProfileName(QString name) { setPref(STR_GEN_Profile, name); } void setAutoLaunchImport(bool b) { setPref(STR_US_AutoLaunchImport, b); } void setCacheSessions(bool c) { setPref(STR_IS_CacheSessions, c); } - void setMultithreading(bool enabled) { setPref(STR_IS_Multithreading, enabled); } + void setMultithreading(bool b) { setPref(STR_IS_Multithreading, m_multithreading = b); } void setShowDebug(bool b) { setPref(STR_US_ShowDebug, b); } void setShowPerformance(bool b) { setPref(STR_US_ShowPerformance, b); } //! \brief Sets whether to display the (Daily View) Calendar void setCalendarVisible(bool b) { setPref(STR_AS_CalendarVisible, b); } - void setScrollDampening(int i) { setPref(STR_US_ScrollDampening, i); } - void setTooltipTimeout(int i) { setPref(STR_US_TooltipTimeout, i); } + void setScrollDampening(int i) { setPref(STR_US_ScrollDampening, m_scrollDampening=i); } + void setTooltipTimeout(int i) { setPref(STR_US_TooltipTimeout, m_tooltipTimeout=i); } //! \brief Set the normal (unscaled) height of a graph. - void setGraphHeight(int height) { setPref(STR_AS_GraphHeight, height); } + void setGraphHeight(int height) { setPref(STR_AS_GraphHeight, m_graphHeight=height); } //! \brief Set the normal (unscaled) height of a graph. void setDailyPanelWidth(int width) { setPref(STR_AS_DailyPanelWidth, width); } //! \brief Set the normal (unscaled) height of a graph. void setRightPanelWidth(int width) { setPref(STR_AS_RightPanelWidth, width); } //! \brief Set to true to turn on AntiAliasing (the graphical smoothing method) - void setAntiAliasing(bool aa) { setPref(STR_AS_AntiAliasing, aa); } + void setAntiAliasing(bool aa) { setPref(STR_AS_AntiAliasing, m_antiAliasing=aa); } //! \brief Set to true if renderPixmap functions are in use, which takes snapshots of graphs. void setGraphSnapshots(bool gs) { setPref(STR_AS_GraphSnapshots, gs); } //! \brief Set to true if Graphical animations & Transitions will be drawn void setAnimations(bool anim) { setPref(STR_AS_Animations, anim); } //! \brief Set to true to use Pixmap Caching of Text and other graphics caching speedup techniques - void setUsePixmapCaching(bool b) { setPref(STR_AS_UsePixmapCaching, b); } + void setUsePixmapCaching(bool b) { setPref(STR_AS_UsePixmapCaching, m_usePixmapCaching=b); } //! \brief Set whether or not to useSquare Wave plots (where possible) - void setSquareWavePlots(bool sw) { setPref(STR_AS_SquareWave, sw); } + void setSquareWavePlots(bool sw) { setPref(STR_AS_SquareWave, m_squareWavePlots=sw); } //! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform) void setOverlayType(OverlayDisplayType od) { setPref(STR_AS_OverlayType, (int)od); } //! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode @@ -204,7 +209,7 @@ public: setPref(STR_AS_OverviewLinechartMode, (int)od); } //! \brief Set the pen width of line plots. - void setLineThickness(float size) { setPref(STR_AS_LineThickness, size); } + void setLineThickness(float size) { setPref(STR_AS_LineThickness, m_lineThickness=size); } //! \brief Sets whether to display Line Cursor void setLineCursorMode(bool b) { setPref(STR_AS_LineCursorMode, b); } //! \brief Sets whether to display the right sidebar diff --git a/sleepyhead/SleepLib/preferences.h b/sleepyhead/SleepLib/preferences.h index d52c644a..2dbb6ca5 100644 --- a/sleepyhead/SleepLib/preferences.h +++ b/sleepyhead/SleepLib/preferences.h @@ -60,10 +60,12 @@ class Preferences } //! \brief Create a preference and set the default if it doesn't exists - void init(QString name, QVariant value) { - if (!contains(name)) { - p_preferences[name] = value; + QVariant & init(QString name, QVariant value) { + auto it = p_preferences.find(name); + if (it == p_preferences.end()) { + return p_preferences[name] = value; } + return it.value(); } //! \brief Returns true if preference 'name' exists, and contains a boolean true value @@ -142,11 +144,11 @@ class PrefSettings (*m_pref)[name] = value; } - inline void initPref(QString name, QVariant value) { - m_pref->init(name, value); + inline QVariant & initPref(QString name, QVariant value) { + return m_pref->init(name, value); } - inline QVariant getPref(QString name) const { + inline QVariant & getPref(QString name) const { return (*m_pref)[name]; } diff --git a/sleepyhead/sleepyhead.pro b/sleepyhead/sleepyhead.pro index 59073df5..0dcfbf4a 100644 --- a/sleepyhead/sleepyhead.pro +++ b/sleepyhead/sleepyhead.pro @@ -32,6 +32,7 @@ DEFINES += LOCK_RESMED_SESSIONS CONFIG += c++11 CONFIG += rtti +CONFIG-=debug_and_release #static { # CONFIG += static @@ -116,14 +117,9 @@ macx { QMAKE_BUNDLE_DATA += HelpFiles message("Setting up Translations & Help Transfers") } else { - CONFIG(debug, debug|release) { - DDIR = $$OUT_PWD/debug/Translations - HELPDIR = $$OUT_PWD/debug/Help - } - CONFIG(release, debug|release) { - DDIR = $$OUT_PWD/release/Translations - HELPDIR = $$OUT_PWD/release/Help - } + DDIR = $$OUT_PWD/Translations + HELPDIR = $$OUT_PWD/Help + TRANS_FILES += $$PWD/../Translations/*.qm HELP_FILES += $$PWD/help/*.qch