OSCAR-code/Graphs/gFooBar.h

25 lines
673 B
C
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
gFooBar Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef GFOOBAR_H
#define GFOOBAR_H
#include "graphlayer.h"
class gFooBar:public gLayer
{
public:
2011-06-27 07:45:59 +00:00
gFooBar(int offset=10,QColor color1=QColor("orange"),QColor color2=QColor("dark grey"),bool funkbar=false);
2011-06-26 08:30:44 +00:00
virtual ~gFooBar();
virtual void Plot(gGraphWindow & w,float scrx,float scry);
static const int Margin=15;
protected:
bool m_funkbar;
int m_offset;
};
#endif // GFOOBAR_H