OSCAR-code/Graphs/gLineOverlay.h

51 lines
1.4 KiB
C
Raw Normal View History

2011-07-27 09:21:53 +00:00
/*
2011-06-26 08:30:44 +00:00
gLineOverlayBar Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-07-27 09:21:53 +00:00
*/
2011-06-26 08:30:44 +00:00
#ifndef GLINEOVERLAY_H
#define GLINEOVERLAY_H
#include "gGraphView.h"
2011-06-26 08:30:44 +00:00
class gLineOverlayBar:public Layer
2011-06-26 08:30:44 +00:00
{
public:
gLineOverlayBar(ChannelID code,QColor col,QString _label="",FlagType _flt=FT_Bar);
2011-06-26 08:30:44 +00:00
virtual ~gLineOverlayBar();
virtual void paint(gGraph & w,int left, int top, int width, int height);
2011-07-27 09:21:53 +00:00
virtual EventDataType Miny() { return 0; }
virtual EventDataType Maxy() { return 0; }
virtual bool isEmpty() { return true; }
int count() { return m_count; }
2011-06-26 08:30:44 +00:00
protected:
QColor m_flag_color;
QString m_label;
FlagType m_flt;
int m_count;
GLShortBuffer *points,*quads, *lines;
2011-06-26 08:30:44 +00:00
};
class gLineOverlaySummary:public Layer
{
public:
gLineOverlaySummary(QString text, int x, int y);
virtual ~gLineOverlaySummary();
virtual void paint(gGraph & w,int left, int top, int width, int height);
virtual EventDataType Miny() { return 0; }
virtual EventDataType Maxy() { return 0; }
virtual bool isEmpty() { return true; }
gLineOverlayBar *add(gLineOverlayBar *bar) { m_overlays.push_back(bar); return bar; }
protected:
QVector<gLineOverlayBar *> m_overlays;
QString m_text;
int m_x,m_y;
};
2011-06-26 08:30:44 +00:00
#endif // GLINEOVERLAY_H