OSCAR-code/oscar/oximeterimport.h

125 lines
2.7 KiB
C
Raw Normal View History

2014-08-17 12:56:05 +00:00
/* Oximeter Import Wizard Header
*
* Copyright (c) 2019-2024 The OSCAR Team
* 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
* 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;
}
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();
void on_showLiveGraphs_clicked(bool checked);
void on_skipWelcomeCheckbox_clicked(bool checked);
void on_informationButton_clicked();
2014-05-27 05:24:35 +00:00
void on_syncButton_clicked();
void on_saveButton_clicked();
void chooseSession();
void on_chooseSessionButton_clicked();
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);
void on_textBrowser_anchorClicked(const QUrl &arg1);
2014-05-25 16:20:33 +00:00
protected slots:
void on_updatePlethy(QByteArray plethy);
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;
QTimer updateTimer;
OximeterImportMode importMode;
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