2014-08-17 12:56:05 +00:00
|
|
|
/* gStatsLine
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-04-09 21:01:57 +00:00
|
|
|
|
2011-08-30 08:46:24 +00:00
|
|
|
#ifndef GSTATSLINE_H
|
|
|
|
#define GSTATSLINE_H
|
|
|
|
|
|
|
|
#include "SleepLib/machine.h"
|
|
|
|
#include "gGraphView.h"
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class gStatsLine
|
|
|
|
\brief Show a rendered stats area in place of a graph. This is currently unused
|
|
|
|
*/
|
2011-08-30 08:46:24 +00:00
|
|
|
class gStatsLine : public Layer
|
|
|
|
{
|
2014-04-17 05:55:38 +00:00
|
|
|
public:
|
|
|
|
gStatsLine(ChannelID code, QString label = "", QColor textcolor = Qt::black);
|
2014-05-13 17:47:33 +00:00
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
2011-08-30 08:46:24 +00:00
|
|
|
void SetDay(Day *d);
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
protected:
|
2011-08-31 05:24:48 +00:00
|
|
|
QString m_label;
|
2011-08-30 08:46:24 +00:00
|
|
|
QColor m_textcolor;
|
2014-04-17 05:55:38 +00:00
|
|
|
EventDataType m_min, m_max, m_avg, m_p90;
|
|
|
|
QString st_min, st_max, st_avg, st_p90;
|
|
|
|
float m_tx, m_ty;
|
2011-08-30 08:46:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GSTATSLINE_H
|