2011-07-27 09:21:53 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gLineOverlayBar Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-07-27 09:21:53 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GLINEOVERLAY_H
|
|
|
|
#define GLINEOVERLAY_H
|
|
|
|
|
|
|
|
#include "graphlayer.h"
|
|
|
|
|
|
|
|
class gLineOverlayBar:public gLayer
|
|
|
|
{
|
|
|
|
public:
|
2011-07-27 15:28:46 +00:00
|
|
|
gLineOverlayBar(MachineCode code,QColor col=QColor("black"),QString _label="",FlagType _flt=FT_Bar);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gLineOverlayBar();
|
|
|
|
|
|
|
|
virtual void Plot(gGraphWindow & w,float scrx,float scry);
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual EventDataType Miny() { return 0; }
|
|
|
|
virtual EventDataType Maxy() { return 0; }
|
|
|
|
virtual bool isEmpty() { return true; }
|
2011-06-26 08:30:44 +00:00
|
|
|
protected:
|
2011-07-27 15:28:46 +00:00
|
|
|
QString m_label;
|
|
|
|
FlagType m_flt;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GLINEOVERLAY_H
|