mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Added tooltip timeout slider in Appearance Preferences, removed empty preferences page.
This commit is contained in:
parent
a47559f9ba
commit
a1a52b8625
@ -2978,7 +2978,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
if (i<count) {
|
if (i<count) {
|
||||||
ChannelID code=fg->visibleLayers()[i]->code();
|
ChannelID code=fg->visibleLayers()[i]->code();
|
||||||
QString ttip=schema::channel[code].description();
|
QString ttip=schema::channel[code].description();
|
||||||
m_tooltip->display(ttip,x,y-20,800);
|
m_tooltip->display(ttip,x,y-20,p_profile->general->tooltipTimeout());
|
||||||
redraw();
|
redraw();
|
||||||
//qDebug() << code << ttip;
|
//qDebug() << code << ttip;
|
||||||
}
|
}
|
||||||
@ -2989,7 +2989,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!m_graphs[i]->units().isEmpty()) {
|
if (!m_graphs[i]->units().isEmpty()) {
|
||||||
m_tooltip->display(m_graphs[i]->units(),x,y-20,800);
|
m_tooltip->display(m_graphs[i]->units(),x,y-20,p_profile->general->tooltipTimeout());
|
||||||
redraw();
|
redraw();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -842,11 +842,11 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
graph->ToolTip(z,x,y-15,2200);
|
graph->ToolTip(z,x,y-15,p_profile->general->tooltipTimeout());
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\nNo Data";
|
QString z=dt.toString(Qt::SystemLocaleShortDate)+"\r\nNo Data";
|
||||||
graph->ToolTip(z,x,y-15,2200);
|
graph->ToolTip(z,x,y-15,p_profile->general->tooltipTimeout());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -240,6 +240,7 @@ const QString STR_US_ShowSerialNumbers="ShowSerialNumbers";
|
|||||||
const QString STR_US_PrefCalcMiddle="PrefCalcMiddle";
|
const QString STR_US_PrefCalcMiddle="PrefCalcMiddle";
|
||||||
const QString STR_US_PrefCalcPercentile="PrefCalcPercentile";
|
const QString STR_US_PrefCalcPercentile="PrefCalcPercentile";
|
||||||
const QString STR_US_PrefCalcMax="PrefCalcMax";
|
const QString STR_US_PrefCalcMax="PrefCalcMax";
|
||||||
|
const QString STR_US_TooltipTimeout="TooltipTimeout";
|
||||||
|
|
||||||
|
|
||||||
class DoctorInfo
|
class DoctorInfo
|
||||||
@ -584,6 +585,7 @@ public:
|
|||||||
if (!m_profile->contains(STR_US_PrefCalcMiddle)) (*m_profile)[STR_US_PrefCalcMiddle]=(int)0;
|
if (!m_profile->contains(STR_US_PrefCalcMiddle)) (*m_profile)[STR_US_PrefCalcMiddle]=(int)0;
|
||||||
if (!m_profile->contains(STR_US_PrefCalcPercentile)) (*m_profile)[STR_US_PrefCalcPercentile]=(double)95.0;
|
if (!m_profile->contains(STR_US_PrefCalcPercentile)) (*m_profile)[STR_US_PrefCalcPercentile]=(double)95.0;
|
||||||
if (!m_profile->contains(STR_US_PrefCalcMax)) (*m_profile)[STR_US_PrefCalcMax]=(int)0;
|
if (!m_profile->contains(STR_US_PrefCalcMax)) (*m_profile)[STR_US_PrefCalcMax]=(int)0;
|
||||||
|
if (!m_profile->contains(STR_US_TooltipTimeout)) (*m_profile)[STR_US_TooltipTimeout]=(int)2500;
|
||||||
}
|
}
|
||||||
~UserSettings() {}
|
~UserSettings() {}
|
||||||
|
|
||||||
@ -600,6 +602,7 @@ public:
|
|||||||
int prefCalcMiddle() { return (*m_profile)[STR_US_PrefCalcMiddle].toInt(); }
|
int prefCalcMiddle() { return (*m_profile)[STR_US_PrefCalcMiddle].toInt(); }
|
||||||
double prefCalcPercentile() { return (*m_profile)[STR_US_PrefCalcPercentile].toDouble(); }
|
double prefCalcPercentile() { return (*m_profile)[STR_US_PrefCalcPercentile].toDouble(); }
|
||||||
int prefCalcMax() { return (*m_profile)[STR_US_PrefCalcMax].toInt(); }
|
int prefCalcMax() { return (*m_profile)[STR_US_PrefCalcMax].toInt(); }
|
||||||
|
int tooltipTimeout() { return (*m_profile)[STR_US_TooltipTimeout].toInt(); }
|
||||||
|
|
||||||
|
|
||||||
void setUnitSystem(UnitSystem us) { (*m_profile)[STR_US_UnitSystem]=(int)us; }
|
void setUnitSystem(UnitSystem us) { (*m_profile)[STR_US_UnitSystem]=(int)us; }
|
||||||
@ -613,6 +616,7 @@ public:
|
|||||||
void setPrefCalcMiddle(int i) { (*m_profile)[STR_US_PrefCalcMiddle]=i; }
|
void setPrefCalcMiddle(int i) { (*m_profile)[STR_US_PrefCalcMiddle]=i; }
|
||||||
void setPrefCalcPercentile(double p) { (*m_profile)[STR_US_PrefCalcPercentile]=p; }
|
void setPrefCalcPercentile(double p) { (*m_profile)[STR_US_PrefCalcPercentile]=p; }
|
||||||
void setPrefCalcMax(int i) { (*m_profile)[STR_US_PrefCalcMax]=i; }
|
void setPrefCalcMax(int i) { (*m_profile)[STR_US_PrefCalcMax]=i; }
|
||||||
|
void setTooltipTimeout(int i) { (*m_profile)[STR_US_TooltipTimeout]=i; }
|
||||||
|
|
||||||
Profile *m_profile;
|
Profile *m_profile;
|
||||||
};
|
};
|
||||||
|
@ -175,6 +175,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
|
|||||||
float f=profile->general->prefCalcPercentile();
|
float f=profile->general->prefCalcPercentile();
|
||||||
ui->prefCalcPercentile->setValue(f);
|
ui->prefCalcPercentile->setValue(f);
|
||||||
|
|
||||||
|
ui->tooltipTimeoutSlider->setValue(profile->general->tooltipTimeout());
|
||||||
|
|
||||||
bool bcd=profile->session->backupCardData();
|
bool bcd=profile->session->backupCardData();
|
||||||
ui->createSDBackups->setChecked(bcd);
|
ui->createSDBackups->setChecked(bcd);
|
||||||
@ -346,6 +347,8 @@ bool PreferencesDialog::Save()
|
|||||||
profile->appearance->setSquareWavePlots(ui->useSquareWavePlots->isChecked());
|
profile->appearance->setSquareWavePlots(ui->useSquareWavePlots->isChecked());
|
||||||
profile->appearance->setGraphSnapshots(ui->enableGraphSnapshots->isChecked());
|
profile->appearance->setGraphSnapshots(ui->enableGraphSnapshots->isChecked());
|
||||||
profile->general->setSkipEmptyDays(ui->skipEmptyDays->isChecked());
|
profile->general->setSkipEmptyDays(ui->skipEmptyDays->isChecked());
|
||||||
|
profile->general->setTooltipTimeout(ui->tooltipTimeoutSlider->value());
|
||||||
|
|
||||||
profile->session->setMultithreading(ui->enableMultithreading->isChecked());
|
profile->session->setMultithreading(ui->enableMultithreading->isChecked());
|
||||||
profile->session->setCacheSessions(ui->cacheSessionData->isChecked());
|
profile->session->setCacheSessions(ui->cacheSessionData->isChecked());
|
||||||
profile->cpap->setMaskDescription(ui->maskDescription->text());
|
profile->cpap->setMaskDescription(ui->maskDescription->text());
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>1</number>
|
<number>6</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="importTab">
|
<widget class="QWidget" name="importTab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
@ -1794,11 +1794,6 @@ p, li { white-space: pre-wrap; }
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QWidget" name="tab">
|
|
||||||
<attribute name="title">
|
|
||||||
<string>Page</string>
|
|
||||||
</attribute>
|
|
||||||
</widget>
|
|
||||||
<widget class="QWidget" name="appearanceTab">
|
<widget class="QWidget" name="appearanceTab">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>&Appearance</string>
|
<string>&Appearance</string>
|
||||||
@ -1887,7 +1882,7 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="2" column="0" colspan="2">
|
<item row="3" column="0" colspan="2">
|
||||||
<spacer name="verticalSpacer">
|
<spacer name="verticalSpacer">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
<enum>Qt::Vertical</enum>
|
<enum>Qt::Vertical</enum>
|
||||||
@ -1900,6 +1895,41 @@ p, li { white-space: pre-wrap; }
|
|||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QSlider" name="tooltipTimeoutSlider">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>How long you want the tooltips to stay visible.</string>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<number>250</number>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<number>10000</number>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<number>250</number>
|
||||||
|
</property>
|
||||||
|
<property name="pageStep">
|
||||||
|
<number>1000</number>
|
||||||
|
</property>
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickPosition">
|
||||||
|
<enum>QSlider::TicksBelow</enum>
|
||||||
|
</property>
|
||||||
|
<property name="tickInterval">
|
||||||
|
<number>250</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="label_45">
|
||||||
|
<property name="text">
|
||||||
|
<string>Tooltip Timeout</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
Reference in New Issue
Block a user