mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Don't bother realigning ResMed event durations
This commit is contained in:
parent
6ca12024ae
commit
4f3e2ff37d
@ -34,6 +34,10 @@ bool SearchEvent(Session * session, ChannelID code, qint64 time, EventStoreType
|
|||||||
int cnt;
|
int cnt;
|
||||||
|
|
||||||
//qint64 rate;
|
//qint64 rate;
|
||||||
|
bool fixdurations = (session->machine()->GetClass() != STR_MACH_ResMed);
|
||||||
|
if (!fixdurations) {
|
||||||
|
dur=0;
|
||||||
|
}
|
||||||
|
|
||||||
QHash<ChannelID, QVector<EventList *> >::iterator evend = session->eventlist.end();
|
QHash<ChannelID, QVector<EventList *> >::iterator evend = session->eventlist.end();
|
||||||
if (it != evend) {
|
if (it != evend) {
|
||||||
@ -76,6 +80,12 @@ bool SearchEvent(Session * session, ChannelID code, qint64 time, EventStoreType
|
|||||||
|
|
||||||
bool SearchApnea(Session *session, qint64 time, double dur, qint64 dist)
|
bool SearchApnea(Session *session, qint64 time, double dur, qint64 dist)
|
||||||
{
|
{
|
||||||
|
if (session->SearchEvent(CPAP_UserFlag1, time, dist))
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if (session->SearchEvent(CPAP_UserFlag2, time, dist))
|
||||||
|
return true;
|
||||||
|
|
||||||
if (SearchEvent(session, CPAP_Obstructive, time, dur, dist))
|
if (SearchEvent(session, CPAP_Obstructive, time, dur, dist))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
@ -85,14 +95,9 @@ bool SearchApnea(Session *session, qint64 time, double dur, qint64 dist)
|
|||||||
if (SearchEvent(session, CPAP_ClearAirway, time, dur, dist))
|
if (SearchEvent(session, CPAP_ClearAirway, time, dur, dist))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (SearchEvent(session, CPAP_Hypopnea, time, 0, dist))
|
if (SearchEvent(session, CPAP_Hypopnea, time, dur, dist))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (session->SearchEvent(CPAP_UserFlag1, time, dist))
|
|
||||||
return true;
|
|
||||||
|
|
||||||
if (session->SearchEvent(CPAP_UserFlag2, time, dist))
|
|
||||||
return true;
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -750,6 +750,7 @@ void Daily::LoadDate(QDate date)
|
|||||||
|
|
||||||
void Daily::on_calendar_selectionChanged()
|
void Daily::on_calendar_selectionChanged()
|
||||||
{
|
{
|
||||||
|
graphView()->releaseKeyboard();
|
||||||
QTime time;
|
QTime time;
|
||||||
time_t unload_time, load_time, other_time;
|
time_t unload_time, load_time, other_time;
|
||||||
time.start();
|
time.start();
|
||||||
|
@ -10,8 +10,10 @@
|
|||||||
<br/>
|
<br/>
|
||||||
<b>New features & bug fixes in v0.9.7</b><br/>
|
<b>New features & bug fixes in v0.9.7</b><br/>
|
||||||
<list>
|
<list>
|
||||||
|
<li>New Feature: Added second set of User Flags detection and preferences.</li>
|
||||||
<li>New Feature: Hit Escape key to go back through previous graph selection history</li>
|
<li>New Feature: Hit Escape key to go back through previous graph selection history</li>
|
||||||
<li>New Feature: Hold Shift while selecting a graph area to allow you to take another attempt</li>
|
<li>New Feature: Holding Alt shows a vertical line, and the current time position when hovering over LineCharts</li>
|
||||||
|
<li>New Feature: Hold Alt while selecting a graph area to allow you to take another attempt</li>
|
||||||
<li>Fixed changing languages clobbering graph settings</li>
|
<li>Fixed changing languages clobbering graph settings</li>
|
||||||
<li>Import now remembers last place you imported from</li>
|
<li>Import now remembers last place you imported from</li>
|
||||||
<li>Lock files are now used to help protect the same profiles being open multiple times</li>
|
<li>Lock files are now used to help protect the same profiles being open multiple times</li>
|
||||||
|
@ -295,6 +295,8 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
|||||||
ui->graphView->setModel(graphFilterModel);
|
ui->graphView->setModel(graphFilterModel);
|
||||||
|
|
||||||
resetGraphModel();
|
resetGraphModel();
|
||||||
|
|
||||||
|
grabKeyboard();
|
||||||
// tree->sortByColumn(0,Qt::AscendingOrder);
|
// tree->sortByColumn(0,Qt::AscendingOrder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user