OSCAR-code/Graphs/gFlagsLine.h

42 lines
1.1 KiB
C
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
gFlagsLine Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef GFLAGSLINE_H
#define GFLAGSLINE_H
#include "graphlayer.h"
class gFlagsGroup;
2011-06-26 08:30:44 +00:00
class gFlagsLine:public gLayer
{
friend class gFlagsGroup;
2011-06-26 08:30:44 +00:00
public:
2011-07-20 16:01:31 +00:00
gFlagsLine(gPointData *d=NULL,QColor col=Qt::black,QString _label="",bool always_visible=false, int _line_num=0,int _total_lines=0);
2011-06-26 08:30:44 +00:00
virtual ~gFlagsLine();
virtual void Plot(gGraphWindow & w,float scrx,float scry);
2011-07-20 16:01:31 +00:00
bool isAlwaysVisible() { return m_always_visible; }
void setAlwaysVisible(bool b) { m_always_visible=b; }
QString Label() { return label; }
void Label(QString s) { label=s; }
2011-06-26 08:30:44 +00:00
protected:
QString label;
2011-07-20 16:01:31 +00:00
bool m_always_visible;
2011-06-26 08:30:44 +00:00
int line_num,total_lines;
};
class gFlagsGroup:public gLayerGroup
{
public:
gFlagsGroup();
virtual ~gFlagsGroup();
virtual void Plot(gGraphWindow &w, float scrx, float scry);
};
2011-06-26 08:30:44 +00:00
#endif // GFLAGSLINE_H