mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
New - added option to disable daily Graph titles
requested for high resolution displays
This commit is contained in:
parent
4c1c17287d
commit
89eec381c8
@ -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);
|
||||
|
@ -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();
|
||||
|
@ -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)
|
||||
|
@ -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());
|
||||
|
@ -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">
|
||||
|
Loading…
Reference in New Issue
Block a user