From 622cc5a39abe133d77691bc2bff739d096c155ce Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 7 Aug 2014 06:10:40 +1000 Subject: [PATCH] Added calendar hiding persistence --- sleepyhead/SleepLib/profiles.h | 6 ++++++ sleepyhead/daily.cpp | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/sleepyhead/SleepLib/profiles.h b/sleepyhead/SleepLib/profiles.h index fc29b489..9024d0e8 100644 --- a/sleepyhead/SleepLib/profiles.h +++ b/sleepyhead/SleepLib/profiles.h @@ -313,6 +313,7 @@ const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling"; const QString STR_AS_GraphTooltips = "GraphTooltips"; const QString STR_AS_LineThickness = "LineThickness"; const QString STR_AS_LineCursorMode = "LineCursorMode"; +const QString STR_AS_CalendarVisible = "CalendarVisible"; // UserSettings Strings const QString STR_US_UnitSystem = "UnitSystem"; @@ -673,6 +674,7 @@ class AppearanceSettings : public ProfileSettings initPref(STR_AS_OverviewLinechartMode, OLC_Bartop); initPref(STR_AS_LineThickness, 1.0); initPref(STR_AS_LineCursorMode, false); + initPref(STR_AS_CalendarVisible, true); } //! \brief Returns the normal (unscaled) height of a graph @@ -695,6 +697,8 @@ class AppearanceSettings : public ProfileSettings 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 Whether to show the calendar + bool calendarVisible() const { return getPref(STR_AS_CalendarVisible).toBool(); } //! \brief Returns the type of overlay flags (which are displayed over the Flow Waveform) @@ -732,6 +736,8 @@ class AppearanceSettings : public ProfileSettings 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); } + //! \brief Sets whether to display the (Daily View) Calendar + void setCalendarVisible(bool b) { setPref(STR_AS_CalendarVisible, b); } }; /*! \class UserSettings diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 3e86123d..0a016645 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -442,6 +442,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared) } GraphView->setEmptyText(STR_TR_NoData); previous_date=QDate(); + + ui->calButton->setChecked(p_profile->appearance->calendarVisible() ? Qt::Checked : Qt::Unchecked); + on_calButton_toggled(p_profile->appearance->calendarVisible()); + + } @@ -2042,6 +2047,7 @@ void Daily::on_calButton_toggled(bool checked) { bool b=checked; ui->calendarFrame->setVisible(b); + p_profile->appearance->setCalendarVisible(b); if (!b) { ui->calButton->setArrowType(Qt::DownArrow);