2011-08-05 00:12:23 +00:00
|
|
|
/*
|
|
|
|
Oximetry GUI Headers
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
#ifndef OXIMETRY_H
|
|
|
|
#define OXIMETRY_H
|
2011-07-29 14:58:44 +00:00
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
#include <QWidget>
|
2011-07-22 13:46:17 +00:00
|
|
|
#include <QGLContext>
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <QHBoxLayout>
|
2011-07-13 17:42:49 +00:00
|
|
|
#include <QSplitter>
|
|
|
|
#include <qextserialport/qextserialport.h>
|
|
|
|
|
|
|
|
#include "SleepLib/profiles.h"
|
2011-07-29 14:58:44 +00:00
|
|
|
#include "SleepLib/day.h"
|
|
|
|
#include "SleepLib/session.h"
|
|
|
|
|
|
|
|
#include "Graphs/gLineChart.h"
|
2011-08-29 07:13:58 +00:00
|
|
|
#include "Graphs/gFooBar.h"
|
2011-07-13 05:27:27 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class Oximetry;
|
|
|
|
}
|
|
|
|
|
2011-07-13 17:42:49 +00:00
|
|
|
enum PORTMODE { PM_LIVE, PM_RECORDING };
|
2011-07-17 15:57:45 +00:00
|
|
|
const int max_data_points=1000000;
|
2011-07-13 17:42:49 +00:00
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
class Oximetry : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2011-09-11 06:16:45 +00:00
|
|
|
explicit Oximetry(QWidget *parent, Profile * _profile,gGraphView * shared=NULL);
|
2011-07-13 05:27:27 +00:00
|
|
|
~Oximetry();
|
|
|
|
|
2011-07-13 17:42:49 +00:00
|
|
|
void RedrawGraphs();
|
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
private slots:
|
|
|
|
void on_RefreshPortsButton_clicked();
|
2011-07-13 17:42:49 +00:00
|
|
|
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:
|
2011-07-19 02:52:03 +00:00
|
|
|
bool UpdatePulse(qint8 pulse);
|
|
|
|
bool UpdateSPO2(qint8 spo2);
|
2011-07-17 15:57:45 +00:00
|
|
|
void UpdatePlethy(qint8 plethy);
|
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
Ui::Oximetry *ui;
|
2011-07-13 17:42:49 +00:00
|
|
|
Profile *profile;
|
2011-08-29 07:13:58 +00:00
|
|
|
|
|
|
|
gGraphView *GraphView;
|
|
|
|
MyScrollBar *scrollbar;
|
|
|
|
QHBoxLayout *layout;
|
|
|
|
|
2011-07-29 14:58:44 +00:00
|
|
|
gLineChart *pulse,*spo2,*plethy;
|
2011-08-29 07:13:58 +00:00
|
|
|
gGraph *PULSE,*SPO2,*PLETHY,*CONTROL;
|
2011-07-29 14:58:44 +00:00
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
QVector<gLineChart *> Data;
|
2011-07-29 14:58:44 +00:00
|
|
|
|
2011-07-13 17:42:49 +00:00
|
|
|
QextSerialPort *port;
|
|
|
|
QString portname;
|
|
|
|
PORTMODE portmode;
|
2011-07-17 12:10:51 +00:00
|
|
|
qint64 lasttime,starttime;
|
2011-07-17 08:53:20 +00:00
|
|
|
int lastpulse, lastspo2;
|
|
|
|
|
2011-07-29 14:58:44 +00:00
|
|
|
Machine * mach;
|
|
|
|
Day * day;
|
|
|
|
Session * session;
|
|
|
|
EventList * ev_pulse;
|
|
|
|
EventList * ev_spo2;
|
|
|
|
EventList * ev_plethy;
|
2011-08-29 07:13:58 +00:00
|
|
|
Layer * foobar;
|
|
|
|
gGraphView * m_shared;
|
2011-07-13 05:27:27 +00:00
|
|
|
};
|
2011-07-29 14:58:44 +00:00
|
|
|
|
2011-07-13 05:27:27 +00:00
|
|
|
#endif // OXIMETRY_H
|