From 9ff8389a9148557daa5ff473d95dca9a8dd18b1d Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 8 Mar 2016 12:17:00 +1000 Subject: [PATCH] Add a cancel button to import auto-scanner --- sleepyhead/Graphs/MinutesAtPressure.cpp | 57 ++++++++++++++++++++++++- sleepyhead/mainwindow.cpp | 22 ++++++++-- sleepyhead/mainwindow.h | 17 ++++++++ 3 files changed, 92 insertions(+), 4 deletions(-) diff --git a/sleepyhead/Graphs/MinutesAtPressure.cpp b/sleepyhead/Graphs/MinutesAtPressure.cpp index a6fc7d74..3fea7a95 100644 --- a/sleepyhead/Graphs/MinutesAtPressure.cpp +++ b/sleepyhead/Graphs/MinutesAtPressure.cpp @@ -282,10 +282,11 @@ void MinutesAtPressure::paint(QPainter &painter, gGraph &graph, const QRegion &r } - double estep = float(height) / ipap.peakevents; + double estep; if (ipap.peakevents>0) { + estep = float(height) / ipap.peakevents; for (int k=0; k0) { + estep = float(height) / epap.peakevents; + for (int k=0; kappearance->lineThickness())); + + + xp = left; + lastyp = bottom - (float(epap.events[ch][min-1]) * estep); + for (int i=min; iimportScanCancelled = true; + hide(); +} QList MainWindow::detectCPAPCards() { @@ -872,7 +877,7 @@ QList MainWindow::detectCPAPCards() time.start(); // Create dialog - QDialog popup(this, Qt::SplashScreen); + ImportDialogScan popup(this) ;//, Qt::SplashScreen); QLabel waitmsg(tr("Please insert your CPAP data card...")); QProgressBar progress; QVBoxLayout waitlayout; @@ -881,15 +886,20 @@ QList MainWindow::detectCPAPCards() QHBoxLayout layout2; QIcon icon("://icons/sdcard.png"); QPushButton skipbtn(icon, tr("Choose a folder")); + QPushButton cancelbtn(STR_MessageBox_Cancel); skipbtn.setMinimumHeight(40); + cancelbtn.setMinimumHeight(40); waitlayout.addWidget(&waitmsg,1,Qt::AlignCenter); waitlayout.addWidget(&progress,1); waitlayout.addLayout(&layout2,1); layout2.addWidget(&skipbtn); + layout2.addWidget(&cancelbtn); popup.connect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide())); + popup.connect(&cancelbtn, SIGNAL(clicked()), &popup, SLOT(cancelbutton())); progress.setValue(0); progress.setMaximum(timeout); progress.setVisible(true); + importScanCancelled = false; popup.show(); QApplication::processEvents(); QString lastpath = (*p_profile)[STR_PREF_LastCPAPPath].toString(); @@ -911,19 +921,23 @@ QList MainWindow::detectCPAPCards() qDebug() << "Found" << loader->loaderName() << "datacard at" << path; } + QApplication::processEvents(); } } int el=time.elapsed(); progress.setValue(el); - QApplication::processEvents(); if (el > timeout) break; if (!popup.isVisible()) break; // needs a slight delay here - QThread::msleep(200); + for (int i=0; i<5; ++i) { + QThread::msleep(50); + QApplication::processEvents(); + } } while (detectedCards.size() == 0); popup.hide(); popup.disconnect(&skipbtn, SIGNAL(clicked()), &popup, SLOT(hide())); + popup.disconnect(&cancelbtn, SIGNAL(clicked()), &popup, SLOT(hide())); return detectedCards; } @@ -944,6 +958,8 @@ void MainWindow::on_action_Import_Data_triggered() QList datacards = detectCPAPCards(); + if (importScanCancelled) return; + QListloaders = GetLoaders(MT_CPAP); QTime time; diff --git a/sleepyhead/mainwindow.h b/sleepyhead/mainwindow.h index 6a943017..75183049 100644 --- a/sleepyhead/mainwindow.h +++ b/sleepyhead/mainwindow.h @@ -144,6 +144,8 @@ class MainWindow : public QMainWindow void log(QString text); + bool importScanCancelled; + public slots: //! \brief Recalculate all event summaries and flags void doReprocessEvents(); @@ -368,4 +370,19 @@ private: QTimer wtimer; }; +class ImportDialogScan:public QDialog +{ + Q_OBJECT +public: + ImportDialogScan(QWidget * parent) :QDialog(parent, Qt::SplashScreen) + { + } + virtual ~ImportDialogScan() + { + } +public slots: + virtual void cancelbutton(); +}; + + #endif // MAINWINDOW_H