2014-08-17 12:56:05 +00:00
|
|
|
/* Oximeter Import Wizard Header
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins
|
2014-08-17 12:56:05 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-08-17 12:56:05 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
#ifndef OXIMETERIMPORT_H
|
|
|
|
#define OXIMETERIMPORT_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "Graphs/gGraphView.h"
|
|
|
|
#include "Graphs/gLineChart.h"
|
2014-05-25 16:20:33 +00:00
|
|
|
#include "SleepLib/serialoximeter.h"
|
2014-05-25 07:07:08 +00:00
|
|
|
#include "sessionbar.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class OximeterImport;
|
|
|
|
}
|
|
|
|
|
2014-05-28 09:35:21 +00:00
|
|
|
enum OximeterImportMode {
|
|
|
|
IM_UNDEFINED = 0, IM_LIVE, IM_RECORDING, IM_FILE
|
|
|
|
};
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
class OximeterImport : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit OximeterImport(QWidget *parent = 0);
|
|
|
|
~OximeterImport();
|
|
|
|
|
2014-05-27 05:24:35 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
private slots:
|
|
|
|
void on_nextButton_clicked();
|
|
|
|
|
|
|
|
void on_directImportButton_clicked();
|
2014-08-19 02:44:48 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
void doUpdateProgress(int, int);
|
|
|
|
void on_fileImportButton_clicked();
|
|
|
|
|
|
|
|
void on_liveImportButton_clicked();
|
|
|
|
|
|
|
|
void on_retryButton_clicked();
|
|
|
|
|
|
|
|
void on_stopButton_clicked();
|
|
|
|
|
|
|
|
void on_calendarWidget_clicked(const QDate &date);
|
|
|
|
|
|
|
|
void on_calendarWidget_selectionChanged();
|
|
|
|
|
|
|
|
void onSessionSelected(Session * session);
|
|
|
|
|
|
|
|
void on_sessionBackButton_clicked();
|
|
|
|
|
|
|
|
void on_sessionForwardButton_clicked();
|
|
|
|
|
|
|
|
void on_radioSyncCPAP_clicked();
|
|
|
|
|
|
|
|
void on_radioSyncOximeter_clicked();
|
|
|
|
|
2014-05-25 16:20:33 +00:00
|
|
|
void on_cancelButton_clicked();
|
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
void on_showLiveGraphs_clicked(bool checked);
|
|
|
|
|
2014-05-26 10:22:38 +00:00
|
|
|
void on_skipWelcomeCheckbox_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_informationButton_clicked();
|
|
|
|
|
2014-05-27 05:24:35 +00:00
|
|
|
void on_syncButton_clicked();
|
|
|
|
|
2014-05-27 17:43:28 +00:00
|
|
|
void on_saveButton_clicked();
|
|
|
|
|
2014-05-28 09:35:21 +00:00
|
|
|
void chooseSession();
|
|
|
|
|
|
|
|
void on_chooseSessionButton_clicked();
|
|
|
|
|
2014-09-18 10:53:59 +00:00
|
|
|
void on_oximeterType_currentIndexChanged(int index);
|
|
|
|
|
|
|
|
void on_cms50CheckName_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_cms50SyncTime_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_cms50DeviceName_textEdited(const QString &arg1);
|
|
|
|
|
2016-03-06 02:50:22 +00:00
|
|
|
void on_textBrowser_anchorClicked(const QUrl &arg1);
|
|
|
|
|
2014-05-25 16:20:33 +00:00
|
|
|
protected slots:
|
|
|
|
void on_updatePlethy(QByteArray plethy);
|
2014-05-26 07:37:28 +00:00
|
|
|
void finishedRecording();
|
|
|
|
void finishedImport(SerialOximeter*);
|
|
|
|
void updateLiveDisplay();
|
2014-05-25 16:20:33 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
protected:
|
2014-05-25 16:20:33 +00:00
|
|
|
SerialOximeter * detectOximeter();
|
2014-05-25 07:07:08 +00:00
|
|
|
void updateStatus(QString msg);
|
2014-08-19 02:44:48 +00:00
|
|
|
void doImport();
|
2014-08-29 10:38:46 +00:00
|
|
|
void setInformation();
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
private:
|
|
|
|
Ui::OximeterImport *ui;
|
2014-05-25 16:20:33 +00:00
|
|
|
SerialOximeter * oximodule;
|
2014-05-25 07:07:08 +00:00
|
|
|
gGraphView * liveView;
|
2014-05-25 16:20:33 +00:00
|
|
|
gGraph * plethyGraph;
|
|
|
|
Session * session;
|
|
|
|
Day * dummyday;
|
2014-05-25 07:07:08 +00:00
|
|
|
gLineChart * plethyChart;
|
|
|
|
SessionBar * sessbar;
|
2014-05-25 16:20:33 +00:00
|
|
|
EventList * ELplethy;
|
|
|
|
qint64 start_ti, ti;
|
2014-05-26 07:37:28 +00:00
|
|
|
QTimer updateTimer;
|
2014-05-28 09:35:21 +00:00
|
|
|
OximeterImportMode importMode;
|
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
int pulse;
|
|
|
|
int spo2;
|
|
|
|
|
2014-08-19 02:44:48 +00:00
|
|
|
bool selecting_session;
|
2014-08-19 04:19:16 +00:00
|
|
|
QList<int> chosen_sessions;
|
2014-05-25 07:07:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OXIMETERIMPORT_H
|