New - added option to disable daily Graph titles

requested for high resolution displays
This commit is contained in:
LoudSnorer 2024-07-09 14:50:14 -04:00
parent 4c1c17287d
commit 89eec381c8
5 changed files with 23 additions and 0 deletions

View File

@ -1415,7 +1415,14 @@ bool gGraphView::renderGraphs(QPainter &painter)
float pinned_height = 0; // pixel height total
int pinned_graphs = 0; // count
bool showTitle=!AppSetting->disableDailyGraphTitles();
bool dailyGraph= mainwin->getDaily()->graphView() == this;
for (auto & g : m_graphs) {
if (dailyGraph) {
// suppress graph titles in daily graphs based on user preferences
g->setShowTitle(showTitle) ;
}
int minh = g->minHeight();
if (g->height() < minh) {
g->setHeight(minh);

View File

@ -28,6 +28,7 @@ AppWideSetting::AppWideSetting(Preferences *pref) : PrefSettings(pref)
initPref(STR_AS_IncludeSerial, false);
initPref(STR_AS_MonochromePrinting, false);
//initPref(STR_AS_EventFlagSessionBar, false);
initPref(STR_AS_DisableDailyGraphTitles, false);
initPref(STR_AS_ShowPieChart, false);
m_animations = initPref(STR_AS_Animations, true).toBool();
m_squareWavePlots = initPref(STR_AS_SquareWave, false).toBool();

View File

@ -48,6 +48,7 @@ const QString STR_AS_AllowYAxisScaling = "AllowYAxisScaling";
const QString STR_AS_IncludeSerial = "IncludeSerial";
const QString STR_AS_MonochromePrinting = "PrintBW";
//const QString STR_AS_EventFlagSessionBar = "EventFlagSessionBar";
const QString STR_AS_DisableDailyGraphTitles = "DisableDailyGraphTitles";
const QString STR_AS_GraphTooltips = "GraphTooltips";
const QString STR_AS_LineThickness = "LineThickness";
const QString STR_AS_LineCursorMode = "LineCursorMode";
@ -141,6 +142,7 @@ public:
//! \brief Whether to print reports in black and white, which can be more legible on non-color printers
bool monochromePrinting() const { return getPref(STR_AS_MonochromePrinting).toBool(); }
//bool eventFlagSessionBar() const { return getPref(STR_AS_EventFlagSessionBar).toBool(); }
bool disableDailyGraphTitles() const { return getPref(STR_AS_DisableDailyGraphTitles).toBool(); }
//! \Allow disabling of sessions
//! \brief Whether to show graph tooltips
inline bool graphTooltips() const { return m_graphTooltips; }
@ -203,6 +205,7 @@ public:
//! \brief Sets whether to print reports in black and white, which can be more legible on non-color printers
void setMonochromePrinting(bool b) { setPref(STR_AS_MonochromePrinting, b); }
// void setEventFlagSessionBar(bool b) { setPref(STR_AS_EventFlagSessionBar, b); }
void setDisableDailyGraphTitles(bool b) { setPref(STR_AS_DisableDailyGraphTitles, b); }
//! \brief Sets whether to allow double clicking on Y-Axis labels to change vertical scaling mode
void setGraphTooltips(bool b) { setPref(STR_AS_GraphTooltips, m_graphTooltips=b); }
//! \brief Sets the type of overlay flags (which are displayed over the Flow Waveform)

View File

@ -242,6 +242,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
ui->includeSerial->setChecked(AppSetting->includeSerial());
ui->monochromePrinting->setChecked(AppSetting->monochromePrinting());
ui->eventFlagSessionBar->setChecked(profile->appearance->eventFlagSessionBar());
ui->disableDailyGraphTitles->setChecked(AppSetting->disableDailyGraphTitles());
ui->complianceHours->setValue(profile->cpap->complianceHours());
ui->clinicalMode->setChecked(profile->cpap->clinicalMode());
ui->clinicalTextEdit->setPlainText(clinicalHelp());
@ -861,6 +862,7 @@ bool PreferencesDialog::Save()
AppSetting->setIncludeSerial(ui->includeSerial->isChecked());
AppSetting->setMonochromePrinting(ui->monochromePrinting->isChecked());
p_profile->appearance->setEventFlagSessionBar(ui->eventFlagSessionBar->isChecked());
AppSetting->setDisableDailyGraphTitles(ui->disableDailyGraphTitles->isChecked());
bool clicicalModeChanged = profile->cpap->clinicalMode() != ui->clinicalMode->isChecked() ;
p_profile->cpap->setClinicalMode(ui->clinicalMode->isChecked());

View File

@ -2903,6 +2903,16 @@ Try it and see if you like it.</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="disableDailyGraphTitles">
<property name="toolTip">
<string>Needed for high Resolution displays where title overwrites labels</string>
</property>
<property name="text">
<string>Disable daily graph titles</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="highResolution">
<property name="toolTip">