2014-08-17 12:56:05 +00:00
|
|
|
/* gFlagsLine Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GFLAGSLINE_H
|
|
|
|
#define GFLAGSLINE_H
|
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
#include "gGraphView.h"
|
2013-10-25 10:39:30 +00:00
|
|
|
#include "gspacer.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-11 04:54:53 +00:00
|
|
|
class gFlagsGroup;
|
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
/*! \class gYSpacer
|
|
|
|
\brief A dummy vertical spacer object
|
|
|
|
*/
|
2014-08-12 10:44:05 +00:00
|
|
|
class gLabelArea: public gSpacer
|
2013-10-25 10:39:30 +00:00
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
2014-08-12 10:44:05 +00:00
|
|
|
gLabelArea(Layer * layer);
|
2014-05-13 17:47:33 +00:00
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion) {
|
|
|
|
Q_UNUSED(w);
|
|
|
|
Q_UNUSED(painter);
|
|
|
|
Q_UNUSED(region);
|
2014-04-17 05:55:38 +00:00
|
|
|
}
|
|
|
|
protected:
|
2014-08-12 10:44:05 +00:00
|
|
|
Layer *m_mainlayer;
|
2014-04-17 05:55:38 +00:00
|
|
|
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
2013-10-25 10:39:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gFlagsLine
|
|
|
|
\brief One single line of event flags in the Event Flags chart
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
class gFlagsLine: public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-07-11 04:54:53 +00:00
|
|
|
friend class gFlagsGroup;
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
/*! \brief Constructs an individual gFlagsLine object
|
|
|
|
\param code The Channel the data is sourced from
|
|
|
|
\param col The colour to draw this flag
|
|
|
|
\param label The label to show to the left of the Flags line.
|
|
|
|
\param always_visible Whether to always show this line, even if empty
|
|
|
|
\param Type of Flag, either FT_Bar, or FT_Span
|
|
|
|
*/
|
2014-08-06 19:49:05 +00:00
|
|
|
gFlagsLine(ChannelID code);
|
2014-04-17 05:55:38 +00:00
|
|
|
virtual ~gFlagsLine();
|
|
|
|
|
|
|
|
//! \brief Drawing code to add the flags and span markers to the Vertex buffers.
|
2014-05-13 17:47:33 +00:00
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
2014-04-17 05:55:38 +00:00
|
|
|
|
|
|
|
void setTotalLines(int i) { total_lines = i; }
|
|
|
|
void setLineNum(int i) { line_num = i; }
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
bool m_always_visible;
|
|
|
|
int total_lines, line_num;
|
|
|
|
int m_lx, m_ly;
|
2014-08-07 13:58:13 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gFlagsGroup
|
|
|
|
\brief Contains multiple gFlagsLine entries for the Events Flag graph
|
|
|
|
*/
|
2014-04-17 05:55:38 +00:00
|
|
|
class gFlagsGroup: public LayerGroup
|
2011-07-11 04:54:53 +00:00
|
|
|
{
|
2013-10-25 10:39:30 +00:00
|
|
|
friend class gFlagsLabelArea;
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
2011-07-11 04:54:53 +00:00
|
|
|
gFlagsGroup();
|
|
|
|
virtual ~gFlagsGroup();
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! Draw filled rectangles behind Event Flag's, and an outlines around them all, Calls the individual paint for each gFlagLine
|
2014-05-13 17:47:33 +00:00
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Returns the first time represented by all gFlagLine layers, in milliseconds since epoch
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual qint64 Minx();
|
2011-12-19 05:35:05 +00:00
|
|
|
//! Returns the last time represented by all gFlagLine layers, in milliseconds since epoch.
|
2011-07-27 09:21:53 +00:00
|
|
|
virtual qint64 Maxx();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Checks if each flag has data, and adds valid gFlagLines to the visible layers list
|
2011-09-01 03:37:25 +00:00
|
|
|
virtual void SetDay(Day *);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Returns true if none of the gFlagLine objects contain any data for this day
|
2014-08-17 12:56:05 +00:00
|
|
|
virtual bool isEmpty();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Returns the count of visible flag line entries
|
2011-12-05 10:50:58 +00:00
|
|
|
int count() { return lvisible.size(); }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Returns the height in pixels of each bar
|
2011-12-05 10:50:58 +00:00
|
|
|
int barHeight() { return m_barh; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! Returns a list of Visible gFlagsLine layers to draw
|
2014-04-17 05:55:38 +00:00
|
|
|
QVector<gFlagsLine *> &visibleLayers() { return lvisible; }
|
2011-12-05 10:50:58 +00:00
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
void alwaysVisible(ChannelID code) { m_alwaysvisible.push_back(code); }
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
|
|
|
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
2013-10-25 10:39:30 +00:00
|
|
|
|
2014-08-06 19:49:05 +00:00
|
|
|
QList<ChannelID> m_alwaysvisible;
|
|
|
|
|
2014-08-07 13:58:13 +00:00
|
|
|
QList<ChannelID> availableChans;
|
|
|
|
|
2011-09-01 03:37:25 +00:00
|
|
|
QVector<gFlagsLine *> lvisible;
|
2011-12-05 10:50:58 +00:00
|
|
|
float m_barh;
|
2011-12-10 12:14:48 +00:00
|
|
|
bool m_empty;
|
2014-08-07 13:58:13 +00:00
|
|
|
bool m_rebuild_cpap;
|
2011-07-11 04:54:53 +00:00
|
|
|
};
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#endif // GFLAGSLINE_H
|