mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 19:50:45 +00:00
28 lines
733 B
C
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
|