OSCAR-code/Graphs/gLineOverlay.h
Mark Watkins e6fe771adf QT Commit
2011-06-26 18:30:44 +10:00

28 lines
733 B
C++

/********************************************************************
gLineOverlayBar Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef GLINEOVERLAY_H
#define GLINEOVERLAY_H
#include "graphlayer.h"
#include "graphdata.h"
enum LO_Type { LOT_Bar, LOT_Dot };
class gLineOverlayBar:public gLayer
{
public:
gLineOverlayBar(gPointData *d=NULL,QColor col=QColor("black"),QString _label="",LO_Type _lot=LOT_Bar);
virtual ~gLineOverlayBar();
virtual void Plot(gGraphWindow & w,float scrx,float scry);
protected:
QString label;
LO_Type lo_type;
};
#endif // GLINEOVERLAY_H