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-08-02 04:20:26 +00:00
|
|
|
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;
|
2011-08-02 04:20:26 +00:00
|
|
|
QColor m_handle_color;
|
2011-08-02 10:28:29 +00:00
|
|
|
QColor m_line_color;
|
2011-08-02 04:20:26 +00:00
|
|
|
bool m_shadow;
|
2011-08-02 10:28:29 +00:00
|
|
|
QColor m_shadow_color;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GFOOBAR_H
|