OSCAR-code/Graphs/gLineChart.h

100 lines
3.4 KiB
C
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
gLineChart Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
2011-06-26 08:30:44 +00:00
#ifndef GLINECHART_H
#define GLINECHART_H
#include <QVector>
2011-07-27 09:21:53 +00:00
#include "SleepLib/event.h"
#include "SleepLib/day.h"
#include "gGraphView.h"
//#include "graphlayer.h"
2011-06-26 08:30:44 +00:00
class AHIChart:public Layer
{
public:
AHIChart(const QColor col=QColor("black"));
~AHIChart();
virtual void paint(gGraph & w,int left, int top, int width, int height);
virtual void SetDay(Day *d);
virtual EventDataType Miny() { return m_miny; }
virtual EventDataType Maxy() { return m_maxy; }
virtual bool isEmpty() { return m_data.size()==0; }
protected:
QVector<EventDataType> m_data;
QVector<quint64> m_time;
EventDataType m_miny,m_maxy;
QColor m_color;
GLShortBuffer * lines;
};
/*! \class gLineChart
\brief Draws a 2D linechart from all Session data in a day. EVL_Waveforms typed EventLists are accelerated.
*/
class gLineChart:public Layer
2011-06-26 08:30:44 +00:00
{
public:
/*! \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
*/
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();
//! \brief The drawing code that fills the vertex buffers
virtual void paint(gGraph & w,int left, int top, int width, int height);
2011-06-26 08:30:44 +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; }
//! \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; }
//! \brief Set this if you want this layer to draw it's empty data message
//! \note 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; }
//! \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; }
//! \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; }
//! \brief Returns true if waveform plot acceleration is disabled
2011-07-29 14:58:44 +00:00
bool disableAccel() { return m_disable_accel; }
//! \brief Sets the Day object containing the Sessions this linechart draws from
virtual void SetDay(Day *d);
//! \brief Returns Minimum Y-axis value for this layer
virtual EventDataType Miny();
//! \brief Returns Maximum Y-axis value for this layer
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;
QColor m_line_color;
GLShortBuffer * lines;
GLShortBuffer * outlines;
//! \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;
//! \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];
int subtract_offset;
2011-06-26 08:30:44 +00:00
};
#endif // GLINECHART_H