OSCAR-code/Graphs/gLineChart.h

37 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
*********************************************************************/
#ifndef GLINECHART_H
#define GLINECHART_H
2011-07-27 09:21:53 +00:00
#include <vector>
#include "SleepLib/event.h"
#include "SleepLib/day.h"
2011-06-26 08:30:44 +00:00
#include "graphwindow.h"
#include "graphlayer.h"
class gLineChart:public gLayer
{
public:
2011-07-29 14:58:44 +00:00
gLineChart(MachineCode 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 Plot(gGraphWindow & w,float scrx,float scry);
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;
2011-06-26 08:30:44 +00:00
};
#endif // GLINECHART_H