OSCAR-code/oximetry.h

66 lines
1.4 KiB
C
Raw Normal View History

2011-07-13 05:27:27 +00:00
#ifndef OXIMETRY_H
#define OXIMETRY_H
2011-07-27 09:21:53 +00:00
/*
2011-07-13 05:27:27 +00:00
#include <QWidget>
#include <QGLContext>
#include <QSplitter>
#include <qextserialport/qextserialport.h>
#include "SleepLib/profiles.h"
#include "Graphs/graphwindow.h"
#include "Graphs/graphdata_custom.h"
2011-07-13 05:27:27 +00:00
namespace Ui {
class Oximetry;
}
enum PORTMODE { PM_LIVE, PM_RECORDING };
const int max_data_points=1000000;
2011-07-13 05:27:27 +00:00
class Oximetry : public QWidget
{
Q_OBJECT
public:
explicit Oximetry(QWidget *parent,QGLWidget * shared=NULL);
2011-07-13 05:27:27 +00:00
~Oximetry();
void AddData(gPointData *d) { Data.push_back(d); }
void AddGraph(gGraphWindow *w) { Graphs.push_back(w); }
void RedrawGraphs();
2011-07-13 05:27:27 +00:00
private slots:
void on_RefreshPortsButton_clicked();
void on_RunButton_toggled(bool checked);
void on_SerialPortsCombo_activated(const QString &arg1);
void onReadyRead();
void onDsrChanged(bool status);
void on_ImportButton_clicked();
2011-07-13 05:27:27 +00:00
private:
bool UpdatePulse(qint8 pulse);
bool UpdateSPO2(qint8 spo2);
void UpdatePlethy(qint8 plethy);
2011-07-13 05:27:27 +00:00
Ui::Oximetry *ui;
Profile *profile;
QSplitter *gSplitter;
gPointData *pulse,*spo2,*plethy;
gGraphWindow *PULSE,*SPO2,*PLETHY;
2011-07-18 02:33:25 +00:00
vector<gGraphWindow *> Graphs;
vector<gPointData *> Data;
QextSerialPort *port;
QString portname;
PORTMODE portmode;
2011-07-17 12:10:51 +00:00
qint64 lasttime,starttime;
int lastpulse, lastspo2;
2011-07-13 05:27:27 +00:00
};
2011-07-27 09:21:53 +00:00
*/
2011-07-13 05:27:27 +00:00
#endif // OXIMETRY_H