mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
/*
|
|
gLineChart Header
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef GLINECHART_H
|
|
#define GLINECHART_H
|
|
|
|
#include <QVector>
|
|
#include "SleepLib/event.h"
|
|
#include "SleepLib/day.h"
|
|
#include "gGraphView.h"
|
|
//#include "graphlayer.h"
|
|
|
|
class gLineChart:public Layer
|
|
{
|
|
public:
|
|
gLineChart(ChannelID code,const QColor col=QColor("black"), bool square_plot=false,bool disable_accel=false);
|
|
virtual ~gLineChart();
|
|
|
|
virtual void paint(gGraph & w,int left, int top, int width, int height);
|
|
|
|
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; }
|
|
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();
|
|
|
|
protected:
|
|
bool m_report_empty;
|
|
bool m_square_plot;
|
|
bool m_disable_accel;
|
|
QColor m_line_color;
|
|
GLBuffer * lines;
|
|
GLBuffer * outlines;
|
|
static const int max_drawlist_size=4096;
|
|
QPoint m_drawlist[max_drawlist_size];
|
|
int subtract_offset;
|
|
};
|
|
|
|
#endif // GLINECHART_H
|