mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Added calendar hiding persistence
This commit is contained in:
parent
3dc74a3231
commit
622cc5a39a
@ -313,6 +313,7 @@ const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling";
|
|||||||
const QString STR_AS_GraphTooltips = "GraphTooltips";
|
const QString STR_AS_GraphTooltips = "GraphTooltips";
|
||||||
const QString STR_AS_LineThickness = "LineThickness";
|
const QString STR_AS_LineThickness = "LineThickness";
|
||||||
const QString STR_AS_LineCursorMode = "LineCursorMode";
|
const QString STR_AS_LineCursorMode = "LineCursorMode";
|
||||||
|
const QString STR_AS_CalendarVisible = "CalendarVisible";
|
||||||
|
|
||||||
// UserSettings Strings
|
// UserSettings Strings
|
||||||
const QString STR_US_UnitSystem = "UnitSystem";
|
const QString STR_US_UnitSystem = "UnitSystem";
|
||||||
@ -673,6 +674,7 @@ class AppearanceSettings : public ProfileSettings
|
|||||||
initPref(STR_AS_OverviewLinechartMode, OLC_Bartop);
|
initPref(STR_AS_OverviewLinechartMode, OLC_Bartop);
|
||||||
initPref(STR_AS_LineThickness, 1.0);
|
initPref(STR_AS_LineThickness, 1.0);
|
||||||
initPref(STR_AS_LineCursorMode, false);
|
initPref(STR_AS_LineCursorMode, false);
|
||||||
|
initPref(STR_AS_CalendarVisible, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! \brief Returns the normal (unscaled) height of a graph
|
//! \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(); }
|
float lineThickness() const { return getPref(STR_AS_LineThickness).toFloat(); }
|
||||||
//! \brief Whether to show line cursor
|
//! \brief Whether to show line cursor
|
||||||
bool lineCursorMode() const { return getPref(STR_AS_LineCursorMode).toBool(); }
|
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)
|
//! \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); }
|
void setLineThickness(float size) { setPref(STR_AS_LineThickness, size); }
|
||||||
//! \brief Sets whether to display Line Cursor
|
//! \brief Sets whether to display Line Cursor
|
||||||
void setLineCursorMode(bool b) { setPref(STR_AS_LineCursorMode, b); }
|
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
|
/*! \class UserSettings
|
||||||
|
@ -442,6 +442,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
|||||||
}
|
}
|
||||||
GraphView->setEmptyText(STR_TR_NoData);
|
GraphView->setEmptyText(STR_TR_NoData);
|
||||||
previous_date=QDate();
|
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;
|
bool b=checked;
|
||||||
ui->calendarFrame->setVisible(b);
|
ui->calendarFrame->setVisible(b);
|
||||||
|
p_profile->appearance->setCalendarVisible(b);
|
||||||
|
|
||||||
if (!b) {
|
if (!b) {
|
||||||
ui->calButton->setArrowType(Qt::DownArrow);
|
ui->calButton->setArrowType(Qt::DownArrow);
|
||||||
|
Loading…
Reference in New Issue
Block a user