OSCAR-code/Graphs/gLineChart.h

40 lines
1.1 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; }
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;
GLBuffer * lines;
2011-08-31 12:24:45 +00:00
GLBuffer * outlines;
2011-06-26 08:30:44 +00:00
};
#endif // GLINECHART_H