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
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "gGraphView.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gLineOverlayBar
|
|
|
|
\brief Shows a flag line, a dot, or a span over the top of a 2D line chart.
|
|
|
|
*/
|
2011-08-25 06:11:44 +00:00
|
|
|
class gLineOverlayBar:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Constructs a gLineOverlayBar object of type code, setting the flag/span color, the label to show when zoomed
|
|
|
|
//! in, and the display method requested, of either FT_Bar, FT_Span, or FT_Dot
|
2011-08-02 04:20:26 +00:00
|
|
|
gLineOverlayBar(ChannelID code,QColor col,QString _label="",FlagType _flt=FT_Bar);
|
2011-06-26 08:30:44 +00:00
|
|
|
virtual ~gLineOverlayBar();
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief The drawing code that fills the OpenGL vertex GLBuffers
|
2011-08-25 06:11:44 +00:00
|
|
|
virtual void paint(gGraph & w,int left, int top, int width, int height);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual EventDataType Miny() { return 0; }
|
|
|
|
virtual EventDataType Maxy() { return 0; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if no Channel data available for this code
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual bool isEmpty() { return true; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief returns a count of all flags drawn during render. (for gLineOverlaySummary)
|
2011-11-12 13:58:58 +00:00
|
|
|
int count() { return m_count; }
|
2011-12-23 10:52:31 +00:00
|
|
|
double sum() { return m_sum; }
|
|
|
|
FlagType flagtype() { return m_flt; }
|
2011-06-26 08:30:44 +00:00
|
|
|
protected:
|
2011-08-02 04:20:26 +00:00
|
|
|
QColor m_flag_color;
|
2011-07-27 15:28:46 +00:00
|
|
|
QString m_label;
|
|
|
|
FlagType m_flt;
|
2011-11-12 13:58:58 +00:00
|
|
|
int m_count;
|
2011-12-23 10:52:31 +00:00
|
|
|
double m_sum;
|
2011-08-30 17:22:54 +00:00
|
|
|
|
2012-01-02 15:34:17 +00:00
|
|
|
gVertexBuffer *quads;
|
|
|
|
gVertexBuffer *points;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gLineOverlaySummary
|
|
|
|
\brief A container class to hold a group of gLineOverlayBar's, and shows the "Section AHI" over the Flow Rate waveform.
|
|
|
|
*/
|
2011-11-12 13:58:58 +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; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns true if no Channel data available for this code
|
2011-11-12 13:58:58 +00:00
|
|
|
virtual bool isEmpty() { return true; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Adds a gLineOverlayBar to this list
|
2011-11-12 13:58:58 +00:00
|
|
|
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
|