2011-07-31 20:24:43 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gLineChart Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-07-31 20:24:43 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GLINECHART_H
|
|
|
|
#define GLINECHART_H
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
#include <QVector>
|
2011-07-27 09:21:53 +00:00
|
|
|
#include "SleepLib/event.h"
|
|
|
|
#include "SleepLib/day.h"
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "gGraphView.h"
|
|
|
|
//#include "graphlayer.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class AHIChart
|
|
|
|
\brief Another graph calculating the AHI/hour, this one looks at all the sessions for a day. Currently Unused.
|
|
|
|
*/
|
2011-11-21 12:51:15 +00:00
|
|
|
class AHIChart:public Layer
|
|
|
|
{
|
|
|
|
public:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Constructs an AHIChart object, with QColor col for the line plots.
|
2011-11-21 12:51:15 +00:00
|
|
|
AHIChart(const QColor col=QColor("black"));
|
|
|
|
~AHIChart();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Draws the precalculated data to the Vertex buffers
|
2011-11-21 12:51:15 +00:00
|
|
|
virtual void paint(gGraph & w,int left, int top, int width, int height);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief AHI/hr Calculations are done for this day here.
|
|
|
|
//! This also uses the sliding window method
|
2011-11-21 12:51:15 +00:00
|
|
|
virtual void SetDay(Day *d);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the minimum AHI/hr value caculated
|
2011-11-21 12:51:15 +00:00
|
|
|
virtual EventDataType Miny() { return m_miny; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the maximum AHI/hr value caculated
|
2011-11-21 12:51:15 +00:00
|
|
|
virtual EventDataType Maxy() { return m_maxy; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if no data was available
|
2011-11-21 12:51:15 +00:00
|
|
|
virtual bool isEmpty() { return m_data.size()==0; }
|
|
|
|
|
|
|
|
protected:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Contains the plot data (Y-axis) generated for this day
|
2011-11-21 12:51:15 +00:00
|
|
|
QVector<EventDataType> m_data;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Contains the time codes (X-axis) generated for this day
|
2011-11-21 12:51:15 +00:00
|
|
|
QVector<quint64> m_time;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
EventDataType m_miny;
|
|
|
|
EventDataType m_maxy;
|
2011-11-21 12:51:15 +00:00
|
|
|
QColor m_color;
|
|
|
|
GLShortBuffer * lines;
|
|
|
|
};
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \class gLineChart
|
|
|
|
\brief Draws a 2D linechart from all Session data in a day. EVL_Waveforms typed EventLists are accelerated.
|
|
|
|
*/
|
2011-08-25 06:11:44 +00:00
|
|
|
class gLineChart:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \brief Creates a new 2D gLineChart Layer
|
|
|
|
\param code The Channel that gets drawn by this layer
|
|
|
|
\param col Color of the Plot
|
|
|
|
\param square_plot Whether or not to use square plots (only effective for EVL_Event typed EventList data)
|
|
|
|
\param disable_accel Whether or not to disable acceleration for EVL_Waveform typed EventList data
|
|
|
|
*/
|
2011-07-31 20:24:43 +00:00
|
|
|
gLineChart(ChannelID code,const QColor col=QColor("black"), bool square_plot=false,bool disable_accel=false);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gLineChart();
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief The drawing code that fills the vertex buffers
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual void paint(gGraph & w,int left, int top, int width, int height);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Set Use Square plots for non EVL_Waveform data
|
2011-07-27 09:21:53 +00:00
|
|
|
void SetSquarePlot(bool b) { m_square_plot=b; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if using Square plots for non EVL_Waveform data
|
2011-07-27 09:21:53 +00:00
|
|
|
bool GetSquarePlot() { return m_square_plot; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Set this if you want this layer to draw it's empty data message
|
2011-12-19 05:35:05 +00:00
|
|
|
//! They don't show anymore due to the changes in gGraphView. Should modify isEmpty if this still gets to live
|
2011-07-27 09:21:53 +00:00
|
|
|
void ReportEmpty(bool b) { m_report_empty=b; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns whether or not to show the empty text message
|
2011-07-27 09:21:53 +00:00
|
|
|
bool GetReportEmpty() { return m_report_empty; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Sets the ability to Disable waveform plot acceleration (which hides unseen data)
|
2011-07-29 14:58:44 +00:00
|
|
|
void setDisableAccel(bool b) { m_disable_accel=b; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if waveform plot acceleration is disabled
|
2011-07-29 14:58:44 +00:00
|
|
|
bool disableAccel() { return m_disable_accel; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Sets the Day object containing the Sessions this linechart draws from
|
2011-09-23 03:54:48 +00:00
|
|
|
virtual void SetDay(Day *d);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns Minimum Y-axis value for this layer
|
2011-09-23 03:54:48 +00:00
|
|
|
virtual EventDataType Miny();
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns Maximum Y-axis value for this layer
|
2011-09-23 03:54:48 +00:00
|
|
|
virtual EventDataType Maxy();
|
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
protected:
|
2011-06-26 08:30:44 +00:00
|
|
|
bool m_report_empty;
|
|
|
|
bool m_square_plot;
|
2011-07-29 14:58:44 +00:00
|
|
|
bool m_disable_accel;
|
2011-08-01 12:29:17 +00:00
|
|
|
QColor m_line_color;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-09-28 11:46:32 +00:00
|
|
|
GLShortBuffer * lines;
|
|
|
|
GLShortBuffer * outlines;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Used by accelerated waveform plots. Must be >= Screen Resolution (or at least graph width)
|
2011-09-01 03:37:25 +00:00
|
|
|
static const int max_drawlist_size=4096;
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief The list of screen points used for accelerated waveform plots..
|
2011-09-01 03:37:25 +00:00
|
|
|
QPoint m_drawlist[max_drawlist_size];
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2011-09-23 03:54:48 +00:00
|
|
|
int subtract_offset;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GLINECHART_H
|