diff --git a/sleepyhead/SleepLib/loader_plugins/cms50_loader.h b/sleepyhead/SleepLib/loader_plugins/cms50_loader.h index d589fe58..5d1c8fa0 100644 --- a/sleepyhead/SleepLib/loader_plugins/cms50_loader.h +++ b/sleepyhead/SleepLib/loader_plugins/cms50_loader.h @@ -42,6 +42,8 @@ Q_OBJECT virtual void process(); + virtual bool isStartTimeValid() { return !cms50dplus; } + protected slots: // virtual void dataAvailable(); virtual void resetImportTimeout(); diff --git a/sleepyhead/SleepLib/serialoximeter.h b/sleepyhead/SleepLib/serialoximeter.h index 21360c46..c90b02e3 100644 --- a/sleepyhead/SleepLib/serialoximeter.h +++ b/sleepyhead/SleepLib/serialoximeter.h @@ -65,6 +65,8 @@ public: QVector oxirec; QDateTime startTime() { return m_startTime; } + virtual bool isStartTimeValid() { return true; } + signals: void noDeviceFound(); diff --git a/sleepyhead/oximeterimport.cpp b/sleepyhead/oximeterimport.cpp index 73a5440b..c5ac13b9 100644 --- a/sleepyhead/oximeterimport.cpp +++ b/sleepyhead/oximeterimport.cpp @@ -22,11 +22,13 @@ OximeterImport::OximeterImport(QWidget *parent) : setWindowTitle(tr("Oximeter Import Wizard")); ui->stackedWidget->setCurrentIndex(0); oximodule = nullptr; - ui->retryButton->setVisible(false); liveView = new gGraphView(this); liveView->setVisible(false); + ui->retryButton->setVisible(false); ui->stopButton->setVisible(false); - ui->syncSaveButton->setVisible(false); + ui->saveButton->setVisible(false); + ui->syncButton->setVisible(false); + QVBoxLayout * lvlayout = new QVBoxLayout; lvlayout->setMargin(0); @@ -80,6 +82,8 @@ OximeterImport::OximeterImport(QWidget *parent) : ui->nextButton->setVisible(true); ui->informationButton->setVisible(false); } + + ui->dateTimeEdit->setMinimumHeight(ui->dateTimeEdit->height()+10); } OximeterImport::~OximeterImport() @@ -236,13 +240,8 @@ void OximeterImport::finishedImport(SerialOximeter * oxi) oximodule->process(); disconnect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int))); - ui->stackedWidget->setCurrentWidget(ui->syncPage); - ui->syncSaveButton->setVisible(true); - ui->calendarWidget->setMinimumDate(PROFILE.FirstDay()); - ui->calendarWidget->setMaximumDate(PROFILE.LastDay()); - - on_calendarWidget_clicked(PROFILE.LastDay()); + on_syncButton_clicked(); } void OximeterImport::doUpdateProgress(int v, int t) @@ -286,13 +285,7 @@ void OximeterImport::on_fileImportButton_clicked() } ui->informationButton->setVisible(false); - ui->stackedWidget->setCurrentWidget(ui->syncPage); - ui->syncSaveButton->setVisible(true); - - ui->calendarWidget->setMinimumDate(PROFILE.FirstDay()); - ui->calendarWidget->setMaximumDate(PROFILE.LastDay()); - - on_calendarWidget_clicked(PROFILE.LastDay()); + on_syncButton_clicked(); } void OximeterImport::on_liveImportButton_clicked() @@ -370,14 +363,10 @@ void OximeterImport::finishedRecording() disconnect(oximodule, SIGNAL(updatePlethy(QByteArray)), this, SLOT(on_updatePlethy(QByteArray))); -// Remember to clear sessionlist before deleting dummyday. or it will destroy session. // delete dummyday; //ui->stackedWidget->setCurrentWidget(ui->syncPage); - ui->syncSaveButton->setVisible(true); - - ui->calendarWidget->setMinimumDate(PROFILE.FirstDay()); - ui->calendarWidget->setMaximumDate(PROFILE.LastDay()); + ui->syncButton->setVisible(true); plethyGraph->SetMinX(start_ti); liveView->SetXBounds(start_ti, ti, 0, true); @@ -385,7 +374,6 @@ void OximeterImport::finishedRecording() plethyGraph->setBlockZoom(false); - // detect oximeter } void OximeterImport::on_retryButton_clicked() @@ -466,17 +454,20 @@ void OximeterImport::on_sessionForwardButton_clicked() void OximeterImport::on_radioSyncCPAP_clicked() { - if (!ui->syncCPAPGroup->isVisible()) { - if (sessbar->selected() < 0) { - int idx = 0; - if (idx < sessbar->count()) { - sessbar->setSelected(idx); - QDateTime datetime = QDateTime::fromMSecsSinceEpoch(sessbar->session(idx)->first()); - ui->dateTimeEdit->setDateTime(datetime); - sessbar->update(); - } + int idx = sessbar->selected(); + if (idx < 0) { + if (sessbar->count() > 0) { + idx = 0; + sessbar->setSelected(0); + sessbar->update(); } } + if (idx >= 0) { + QDateTime datetime = QDateTime::fromMSecsSinceEpoch(sessbar->session(idx)->first()); + ui->dateTimeEdit->setDateTime(datetime); + } + + ui->syncCPAPGroup->setVisible(true); } @@ -484,16 +475,7 @@ void OximeterImport::on_radioSyncCPAP_clicked() void OximeterImport::on_radioSyncOximeter_clicked() { ui->syncCPAPGroup->setVisible(false); -} - -void OximeterImport::on_radioSyncManually_clicked() -{ - ui->syncCPAPGroup->setVisible(false); -} - -void OximeterImport::on_syncSaveButton_clicked() -{ - + if (oximodule && oximodule->isStartTimeValid()) ui->dateTimeEdit->setDateTime(oximodule->startTime()); } void OximeterImport::on_updatePlethy(QByteArray plethy) @@ -620,3 +602,30 @@ void OximeterImport::on_informationButton_clicked() ui->informationButton->setVisible(false); } + +void OximeterImport::on_syncButton_clicked() +{ + ui->stackedWidget->setCurrentWidget(ui->syncPage); + + ui->syncButton->setVisible(false); + ui->saveButton->setVisible(true); + + ui->calendarWidget->setMinimumDate(PROFILE.FirstDay()); + ui->calendarWidget->setMaximumDate(PROFILE.LastDay()); + + on_calendarWidget_clicked(PROFILE.LastDay()); + Q_ASSERT(oximodule != nullptr); + + ui->radioSyncOximeter->setChecked(true); + on_radioSyncOximeter_clicked(); + + if (ELplethy != nullptr) { + // Live Recording + ui->labelSyncOximeter->setText(tr("I want to use the time my computer recorded for this live oximetry session.")); + } else if (!oximodule->isStartTimeValid()) { + // Oximeter doesn't provide a clock + ui->labelSyncOximeter->setText(tr("I need to set the time manually, because my oximeter doesn't have an internal clock.")); + } + + +} diff --git a/sleepyhead/oximeterimport.h b/sleepyhead/oximeterimport.h index d2890c79..a33676d3 100644 --- a/sleepyhead/oximeterimport.h +++ b/sleepyhead/oximeterimport.h @@ -20,6 +20,7 @@ public: explicit OximeterImport(QWidget *parent = 0); ~OximeterImport(); + private slots: void on_nextButton_clicked(); @@ -47,10 +48,6 @@ private slots: void on_radioSyncOximeter_clicked(); - void on_radioSyncManually_clicked(); - - void on_syncSaveButton_clicked(); - void on_cancelButton_clicked(); void on_showLiveGraphs_clicked(bool checked); @@ -59,6 +56,8 @@ private slots: void on_informationButton_clicked(); + void on_syncButton_clicked(); + protected slots: void on_updatePlethy(QByteArray plethy); void finishedRecording(); diff --git a/sleepyhead/oximeterimport.ui b/sleepyhead/oximeterimport.ui index c3377a17..a8fc5fdb 100644 --- a/sleepyhead/oximeterimport.ui +++ b/sleepyhead/oximeterimport.ui @@ -6,8 +6,8 @@ 0 0 - 915 - 615 + 905 + 625 @@ -644,7 +644,7 @@ border-radius: 0px; - 1 + 4 @@ -1312,11 +1312,17 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) - + 0 0 + + + 0 + 200 + + Day recording (normally would of) started @@ -1334,7 +1340,14 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) 0 - + + + + 0 + 0 + + + @@ -1342,16 +1355,67 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) - + 1 0 + + + 0 + 200 + + Oximeter Starting time - - + + + + + + 0 + 0 + + + + I want to use the time reported by my oximeter's built in clock. + + + true + + + + + + + + 0 + 0 + + + + I started this oximeter recording at (or near) the same time as a session on my CPAP machine. + + + true + + + + + + + + 0 + 0 + + + + + + + + @@ -1360,7 +1424,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) - Which timesource do you want to use to sync this session? + <html><head/><body><p>SleepyHead needs a starting time to know where to save this oximetry session to.</p><p>Choose one of the following options:</p></body></html> Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop @@ -1370,28 +1434,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) - - - - CPAP - - - - - - - Oximeter - - - - - - - Enter Manually - - - - + Qt::Vertical @@ -1404,6 +1447,19 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) + + + + + 0 + 0 + + + + + + + @@ -1411,6 +1467,12 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) + + + 0 + 0 + + Choose CPAP session to sync to: @@ -1444,6 +1506,12 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) + + + 0 + 0 + + ... @@ -1461,6 +1529,12 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) 40 + + + 16777215 + 40 + + QFrame::StyledPanel @@ -1471,6 +1545,12 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) + + + 0 + 0 + + ... @@ -1487,27 +1567,68 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + 0 + 0 + + You can manually adjust the time here if required: + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + 0 + 0 + + - 17 + 40 + + QAbstractSpinBox::UpDownArrows + hh:mm:ss AP - + Qt::Horizontal @@ -1526,6 +1647,9 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) Qt::Vertical + + QSizePolicy::Expanding + 20 @@ -1591,7 +1715,14 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc) - + + + &Sync and Save + + + + + &Save and Finish diff --git a/sleepyhead/statistics.cpp b/sleepyhead/statistics.cpp index 4bb4fc66..b697f54c 100644 --- a/sleepyhead/statistics.cpp +++ b/sleepyhead/statistics.cpp @@ -528,11 +528,11 @@ QString Statistics::GenerateHTML() if (mach.size() == 0) { - html += ""; //cellpadding=2 cellspacing=0 border=0 + html += "
"; //cellpadding=2 cellspacing=0 border=0 html += "

" + tr("Please Import Some Data") + "

" + tr("SleepyHead is pretty much useless without it.") + "

" + tr("It might be a good idea to check preferences first,
as there are some options that affect import.") - + "

" + tr("First import can take a few minutes.") + "

"; + + "

" + tr("First import can take a few minutes.") + "

"; html += htmlFooter(); return html; }