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-08-25 06:11:44 +00:00
|
|
|
class gLineChart:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
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-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-07-27 09:21:53 +00:00
|
|
|
void SetSquarePlot(bool b) { m_square_plot=b; }
|
|
|
|
bool GetSquarePlot() { return m_square_plot; }
|
|
|
|
void ReportEmpty(bool b) { m_report_empty=b; }
|
|
|
|
bool GetReportEmpty() { return m_report_empty; }
|
2011-07-29 14:58:44 +00:00
|
|
|
void setDisableAccel(bool b) { m_disable_accel=b; }
|
|
|
|
bool disableAccel() { return m_disable_accel; }
|
2011-09-23 03:54:48 +00:00
|
|
|
virtual void SetDay(Day *d);
|
|
|
|
virtual EventDataType Miny();
|
|
|
|
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-09-28 11:46:32 +00:00
|
|
|
GLShortBuffer * lines;
|
|
|
|
GLShortBuffer * outlines;
|
2011-09-01 03:37:25 +00:00
|
|
|
static const int max_drawlist_size=4096;
|
|
|
|
QPoint m_drawlist[max_drawlist_size];
|
2011-09-23 03:54:48 +00:00
|
|
|
int subtract_offset;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GLINECHART_H
|