OSCAR-code/Graphs/gFooBar.h

28 lines
812 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:
gFooBar(int offset=10,QColor handle_color=QColor("orange"),QColor line_color=QColor("dark grey"),bool shadow=false,QColor shadow_color=QColor(40,40,40,40));
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:
int m_offset;
QColor m_line_color;
QColor m_handle_color;
QColor m_shadow_color;
bool m_shadow;
2011-06-26 08:30:44 +00:00
};
#endif // GFOOBAR_H