2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* gStatsLine
|
|
|
|
*
|
|
|
|
* 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-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
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gStatsLine(ChannelID code,QString label="",QColor textcolor=Qt::black);
|
|
|
|
virtual void paint(gGraph & w, int left, int top, int width, int height);
|
|
|
|
void SetDay(Day *d);
|
|
|
|
|
|
|
|
protected:
|
2011-08-31 05:24:48 +00:00
|
|
|
QString m_label;
|
2011-08-30 08:46:24 +00:00
|
|
|
QColor m_textcolor;
|
|
|
|
EventDataType m_min,m_max,m_avg,m_p90;
|
2011-09-01 13:07:26 +00:00
|
|
|
QString st_min,st_max,st_avg,st_p90;
|
2011-08-30 08:46:24 +00:00
|
|
|
float m_tx,m_ty;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GSTATSLINE_H
|