2018-05-07 12:13:07 +00:00
|
|
|
|
/* gFlagsLine Header
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-05-07 12:13:07 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code 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
|
|
|
|
}
|
2014-08-29 05:32:49 +00:00
|
|
|
|
virtual int minimumWidth();
|
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);
|
2014-08-28 08:01:25 +00:00
|
|
|
|
|
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
|
gLabelArea * layer = new gLabelArea(nullptr); //ouchie..
|
|
|
|
|
Layer::CloneInto(layer);
|
|
|
|
|
CloneInto(layer);
|
|
|
|
|
return layer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CloneInto(gLabelArea * ) {
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
2014-08-28 08:01:25 +00:00
|
|
|
|
virtual Layer * Clone() {
|
2014-10-02 10:02:33 +00:00
|
|
|
|
gFlagsLine * layer = new gFlagsLine(NoChannel); //ouchie..
|
2014-08-28 08:01:25 +00:00
|
|
|
|
Layer::CloneInto(layer);
|
|
|
|
|
CloneInto(layer);
|
|
|
|
|
return layer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CloneInto(gFlagsLine * layer ) {
|
|
|
|
|
layer->m_always_visible = m_always_visible;
|
|
|
|
|
layer->m_lx = m_lx;
|
|
|
|
|
layer->m_ly = m_ly;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
virtual bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
|
|
bool m_always_visible;
|
|
|
|
|
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 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-08-28 08:01:25 +00:00
|
|
|
|
virtual Layer * Clone() {
|
|
|
|
|
gFlagsGroup * layer = new gFlagsGroup(); //ouchie..
|
|
|
|
|
Layer::CloneInto(layer);
|
|
|
|
|
CloneInto(layer);
|
|
|
|
|
return layer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CloneInto(gFlagsGroup * layer) {
|
|
|
|
|
layer->m_alwaysvisible = m_alwaysvisible;
|
|
|
|
|
layer->availableChans = availableChans;
|
|
|
|
|
|
|
|
|
|
for (int i=0; i<lvisible.size(); i++) {
|
|
|
|
|
layer->lvisible.append(dynamic_cast<gFlagsLine *>(lvisible.at(i)->Clone()));
|
|
|
|
|
}
|
|
|
|
|
layer->m_barh = m_barh;
|
|
|
|
|
layer->m_empty = m_empty;
|
|
|
|
|
layer->m_rebuild_cpap = m_rebuild_cpap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|