mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
35 lines
917 B
C++
35 lines
917 B
C++
/* gStatsLine
|
|
*
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
|
*
|
|
* 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 source code
|
|
* for more details. */
|
|
|
|
#ifndef GSTATSLINE_H
|
|
#define GSTATSLINE_H
|
|
|
|
#include "SleepLib/machine.h"
|
|
#include "gGraphView.h"
|
|
|
|
/*! \class gStatsLine
|
|
\brief Show a rendered stats area in place of a graph. This is currently unused
|
|
*/
|
|
class gStatsLine : public Layer
|
|
{
|
|
public:
|
|
gStatsLine(ChannelID code, QString label = "", QColor textcolor = Qt::black);
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
|
void SetDay(Day *d);
|
|
|
|
protected:
|
|
QString m_label;
|
|
QColor m_textcolor;
|
|
EventDataType m_min, m_max, m_avg, m_p90;
|
|
QString st_min, st_max, st_avg, st_p90;
|
|
float m_tx, m_ty;
|
|
};
|
|
|
|
#endif // GSTATSLINE_H
|