mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
102 lines
2.0 KiB
C++
102 lines
2.0 KiB
C++
#ifndef OXIMETERIMPORT_H
|
|
#define OXIMETERIMPORT_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "Graphs/gGraphView.h"
|
|
#include "Graphs/gLineChart.h"
|
|
#include "SleepLib/serialoximeter.h"
|
|
#include "sessionbar.h"
|
|
|
|
namespace Ui {
|
|
class OximeterImport;
|
|
}
|
|
|
|
enum OximeterImportMode {
|
|
IM_UNDEFINED = 0, IM_LIVE, IM_RECORDING, IM_FILE
|
|
};
|
|
|
|
class OximeterImport : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit OximeterImport(QWidget *parent = 0);
|
|
~OximeterImport();
|
|
|
|
|
|
private slots:
|
|
void on_nextButton_clicked();
|
|
|
|
void on_directImportButton_clicked();
|
|
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();
|
|
|
|
void on_cancelButton_clicked();
|
|
|
|
void on_showLiveGraphs_clicked(bool checked);
|
|
|
|
void on_skipWelcomeCheckbox_clicked(bool checked);
|
|
|
|
void on_informationButton_clicked();
|
|
|
|
void on_syncButton_clicked();
|
|
|
|
void on_saveButton_clicked();
|
|
|
|
void chooseSession();
|
|
|
|
void on_chooseSessionButton_clicked();
|
|
|
|
protected slots:
|
|
void on_updatePlethy(QByteArray plethy);
|
|
void finishedRecording();
|
|
void finishedImport(SerialOximeter*);
|
|
void updateLiveDisplay();
|
|
|
|
protected:
|
|
SerialOximeter * detectOximeter();
|
|
void updateStatus(QString msg);
|
|
|
|
private:
|
|
Ui::OximeterImport *ui;
|
|
SerialOximeter * oximodule;
|
|
gGraphView * liveView;
|
|
gGraph * plethyGraph;
|
|
Session * session;
|
|
Day * dummyday;
|
|
gLineChart * plethyChart;
|
|
SessionBar * sessbar;
|
|
EventList * ELplethy;
|
|
qint64 start_ti, ti;
|
|
QTimer updateTimer;
|
|
OximeterImportMode importMode;
|
|
|
|
|
|
int pulse;
|
|
int spo2;
|
|
|
|
};
|
|
|
|
#endif // OXIMETERIMPORT_H
|