mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
25 lines
677 B
C
25 lines
677 B
C
|
/********************************************************************
|
||
|
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:
|
||
|
gFooBar(int offset=10,QColor color1=QColor("lime green"),QColor color2=QColor("dark grey"),bool funkbar=false);
|
||
|
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
|