OSCAR-code/Graphs/gLineChart.h

47 lines
1.3 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 gLineChart:public Layer
2011-06-26 08:30:44 +00:00
{
public:
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();
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; }
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;
QColor m_line_color;
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];
int subtract_offset;
2011-06-26 08:30:44 +00:00
};
#endif // GLINECHART_H