OSCAR-code/Graphs/gSummaryChart.h

107 lines
3.5 KiB
C
Raw Normal View History

2011-07-12 07:10:34 +00:00
/*
2011-06-26 08:30:44 +00:00
gBarChart Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-07-12 07:10:34 +00:00
*/
2011-06-26 08:30:44 +00:00
#ifndef GBARCHART_H
#define GBARCHART_H
2011-09-02 02:00:04 +00:00
#include <SleepLib/profiles.h>
2011-08-30 08:46:24 +00:00
#include "gGraphView.h"
2011-06-26 08:30:44 +00:00
#include "gXAxis.h"
2011-08-30 08:46:24 +00:00
/*! \enum GraphType
\value GT_BAR Display as a BarGraph
\value GT_LINE Display as a line plot
\value GT_SESSIONS Display type for session times chart
*/
enum GraphType { GT_BAR, GT_LINE, GT_SESSIONS };
/*! \class SummaryChart
\brief The main overall chart type layer used in Overview page
*/
class SummaryChart:public Layer
2011-06-26 08:30:44 +00:00
{
public:
//! \brief Constructs a SummaryChart with QString label, of GraphType type
SummaryChart(QString label, GraphType type=GT_BAR);
virtual ~SummaryChart();
2011-06-26 08:30:44 +00:00
//! \brief Drawing code that fills the Vertex buffers
virtual void paint(gGraph & w,int left, int top, int width, int height);
//! \brief Precalculation code prior to drawing. Day object is not needed here, it's just here for Layer compatability.
virtual void SetDay(Day * day=NULL);
//! \brief Returns true if no data was found for this day during SetDay
2011-09-02 05:13:07 +00:00
virtual bool isEmpty() { return m_empty; }
//! \brief Adds a layer to the summaryChart (When in Bar mode, it becomes culminative, eg, the AHI chart)
void addSlice(ChannelID code, QColor color, SummaryType type, bool ignore_zeros=false, EventDataType tval=0.00f)
{
m_codes.push_back(code);
m_colors.push_back(color);
m_type.push_back(type);
m_zeros.push_back(ignore_zeros);
m_typeval.push_back(tval);
}
//! \brief Deselect highlighting (the gold bar)
virtual void deselect() {
hl_day=-1;
}
//! \brief Sets the MachineType this SummaryChart is interested in
void setMachineType(MachineType type) { m_machinetype=type; }
//! \brief Returns the MachineType this SummaryChart is interested in
MachineType machineType() { return m_machinetype; }
2011-06-26 08:30:44 +00:00
protected:
Qt::Orientation m_orientation;
2011-09-02 05:13:07 +00:00
QVector<QColor> m_colors;
QVector<ChannelID> m_codes;
2011-12-05 11:17:28 +00:00
QVector<bool> m_goodcodes;
2011-12-04 14:26:32 +00:00
QVector<bool> m_zeros;
QVector<SummaryType> m_type;
QVector<EventDataType> m_typeval;
2011-09-03 04:38:12 +00:00
QHash<int,QHash<short,EventDataType> > m_values;
QHash<int,QHash<short,EventDataType> > m_times;
QHash<int,EventDataType> m_hours;
2011-09-12 05:09:53 +00:00
QHash<int,Day *> m_days;
GLShortBuffer *quads,*lines;
2011-09-02 05:13:07 +00:00
bool m_empty;
int m_fday;
2011-09-03 04:38:12 +00:00
QString m_label;
float barw; // bar width from last draw
qint64 l_offset; // last offset
float offset; // in pixels;
int l_left,l_top,l_width,l_height;
2011-09-03 12:59:08 +00:00
int rtop;
qint64 l_minx,l_maxx;
int hl_day;
gGraph * graph;
GraphType m_graphtype;
MachineType m_machinetype;
int tz_offset;
float tz_hours;
//! \brief Key was pressed that effects this layer
virtual bool keyPressEvent(QKeyEvent * event);
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)
virtual bool mouseMoveEvent(QMouseEvent * event);
//! \brief Mouse Button was pressed over this area
virtual bool mousePressEvent(QMouseEvent * event);
//! \brief Mouse Button was released over this area. (jumps to daily view here)
virtual bool mouseReleaseEvent(QMouseEvent * event);
2011-06-26 08:30:44 +00:00
};
2011-06-26 08:30:44 +00:00
#endif // GBARCHART_H