From fedfc4ac15309841fdf08bc6b72a1b50efd210cd Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 21 Jul 2014 18:33:04 +1000 Subject: [PATCH] Make F3 toggle stats above graphs instead of having to hold in Alt --- sleepyhead/Graphs/gGraphView.cpp | 15 ++++++++++++--- sleepyhead/Graphs/gLineChart.cpp | 2 +- sleepyhead/Graphs/gLineOverlay.cpp | 4 +--- sleepyhead/SleepLib/profiles.h | 6 ++++++ sleepyhead/daily.cpp | 4 ++-- 5 files changed, 22 insertions(+), 9 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index beaad9c7..6a892bea 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -1077,6 +1077,10 @@ void gGraphView::paintGL() void gGraphView::leaveEvent(QEvent * event) { Q_UNUSED(event); + if (m_metaselect) { + m_metaselect = false; + timedRedraw(0); + } releaseKeyboard(); } @@ -1830,11 +1834,16 @@ void gGraphView::wheelEvent(QWheelEvent *event) void gGraphView::keyPressEvent(QKeyEvent *event) { - bool meta = m_metaselect; +// bool meta = m_metaselect; m_metaselect = event->modifiers() & Qt::AltModifier; - if (meta != m_metaselect) { - timedRedraw(30); +// if (meta != m_metaselect) { +// timedRedraw(30); +// } + + if (event->key() == Qt::Key_F3) { + p_profile->appearance->setLineCursorMode(!p_profile->appearance->lineCursorMode()); + timedRedraw(0); } if (event->key() == Qt::Key_Tab) { diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 24729e58..dcb75277 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -274,7 +274,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } - if (w.graphView()->metaSelect()) { + if (p_profile->appearance->lineCursorMode()) { qint64 time = w.currentTime(); if ((time > minx) && (time < maxx)) { diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index c90de2c6..b50d1b4c 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -352,10 +352,8 @@ void gLineOverlaySummary::paint(QPainter &painter, gGraph &w, const QRegion ® if ((w.graphView()->selectionInProgress() || w.graphView()->metaSelect()) && (!w.selDurString().isEmpty())) { a = QObject::tr("Duration")+": "+w.selDurString(); } else { - if (!w.graphView()->metaSelect()) { - a = QObject::tr("Events") + ": " + QString::number(cnt) + ", " + + a = QObject::tr("Events") + ": " + QString::number(cnt) + ", " + QObject::tr("Duration") + " " + QString().sprintf("%02i:%02i:%02i", h, m, s) + ", " + m_text + ": " + QString::number(val, 'f', 2); - } } if (isSpan) { float sph; diff --git a/sleepyhead/SleepLib/profiles.h b/sleepyhead/SleepLib/profiles.h index 7e01fc32..83d222a4 100644 --- a/sleepyhead/SleepLib/profiles.h +++ b/sleepyhead/SleepLib/profiles.h @@ -310,6 +310,7 @@ const QString STR_AS_UsePixmapCaching = "UsePixmapCaching"; const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling"; const QString STR_AS_GraphTooltips = "GraphTooltips"; const QString STR_AS_LineThickness = "LineThickness"; +const QString STR_AS_LineCursorMode = "LineCursorMode"; // UserSettings Strings const QString STR_US_UnitSystem = "UnitSystem"; @@ -664,6 +665,7 @@ class AppearanceSettings : public ProfileSettings initPref(STR_AS_OverlayType, ODT_Bars); initPref(STR_AS_OverviewLinechartMode, OLC_Bartop); initPref(STR_AS_LineThickness, 1.0); + initPref(STR_AS_LineCursorMode, false); } //! \brief Returns the normal (unscaled) height of a graph @@ -684,6 +686,8 @@ class AppearanceSettings : public ProfileSettings bool graphTooltips() const { return getPref(STR_AS_GraphTooltips).toBool(); } //! \brief Pen width of line plots float lineThickness() const { return getPref(STR_AS_LineThickness).toFloat(); } + //! \brief Whether to show line cursor + bool lineCursorMode() const { return getPref(STR_AS_LineCursorMode).toBool(); } //! \brief Returns the type of overlay flags (which are displayed over the Flow Waveform) @@ -719,6 +723,8 @@ class AppearanceSettings : public ProfileSettings } //! \brief Set the pen width of line plots. void setLineThickness(float size) { setPref(STR_AS_LineThickness, size); } + //! \brief Sets whether to display Line Cursor + void setLineCursorMode(bool b) { setPref(STR_AS_LineCursorMode, b); } }; /*! \class UserSettings diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 07114751..95e8c677 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -307,10 +307,10 @@ Daily::Daily(QWidget *parent,gGraphView * shared) // this is class wide because the leak redline can be reset in preferences.. // Better way would be having a search for linechart layers in graphlist[...] - gLineChart *leakchart=new gLineChart(CPAP_LeakTotal, COLOR_LeakTotal, square); + gLineChart *leakchart=new gLineChart(CPAP_Leak, COLOR_LeakTotal, square); graphlist[schema::channel[CPAP_Leak].label()]->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_LargeLeak, COLOR_LargeLeak, STR_TR_LL, FT_Span))); - leakchart->addPlot(CPAP_Leak, COLOR_Leak, square); + leakchart->addPlot(CPAP_LeakTotal, COLOR_Leak, square); leakchart->addPlot(CPAP_MaxLeak, COLOR_MaxLeak, square); schema::channel[CPAP_Leak].setUpperThresholdColor(Qt::red); schema::channel[CPAP_Leak].setLowerThresholdColor(Qt::green);