mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
29 lines
699 B
C++
29 lines
699 B
C++
/*
|
|
gLineOverlayBar Header
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef GLINEOVERLAY_H
|
|
#define GLINEOVERLAY_H
|
|
|
|
#include "graphlayer.h"
|
|
|
|
class gLineOverlayBar:public gLayer
|
|
{
|
|
public:
|
|
gLineOverlayBar(ChannelID code,QColor col,QString _label="",FlagType _flt=FT_Bar);
|
|
virtual ~gLineOverlayBar();
|
|
|
|
virtual void Plot(gGraphWindow & w,float scrx,float scry);
|
|
virtual EventDataType Miny() { return 0; }
|
|
virtual EventDataType Maxy() { return 0; }
|
|
virtual bool isEmpty() { return true; }
|
|
protected:
|
|
QColor m_flag_color;
|
|
QString m_label;
|
|
FlagType m_flt;
|
|
};
|
|
|
|
#endif // GLINEOVERLAY_H
|