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
|
|
|
|
2011-12-19 02:20: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
|
|
|
|
*/
|
2013-11-09 00:26:44 +00:00
|
|
|
enum GraphType { GT_BAR, GT_LINE, GT_POINTS, GT_SESSIONS };
|
2011-09-10 04:20:45 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
/*! \class SummaryChart
|
|
|
|
\brief The main overall chart type layer used in Overview page
|
|
|
|
*/
|
2011-09-10 04:20:45 +00:00
|
|
|
class SummaryChart:public Layer
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Constructs a SummaryChart with QString label, of GraphType type
|
2011-10-05 07:41:56 +00:00
|
|
|
SummaryChart(QString label, GraphType type=GT_BAR);
|
2011-09-10 04:20:45 +00:00
|
|
|
virtual ~SummaryChart();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Drawing code that fills the Vertex buffers
|
2011-08-30 17:22:54 +00:00
|
|
|
virtual void paint(gGraph & w,int left, int top, int width, int height);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Precalculation code prior to drawing. Day object is not needed here, it's just here for Layer compatability.
|
2011-09-10 04:20:45 +00:00
|
|
|
virtual void SetDay(Day * day=NULL);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \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; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Adds a layer to the summaryChart (When in Bar mode, it becomes culminative, eg, the AHI chart)
|
2012-01-03 05:40:35 +00:00
|
|
|
void addSlice(ChannelID code, QColor color, SummaryType type, EventDataType tval=0.00f)
|
2011-12-24 06:20:07 +00:00
|
|
|
{
|
|
|
|
m_codes.push_back(code);
|
|
|
|
m_colors.push_back(color);
|
|
|
|
m_type.push_back(type);
|
2012-01-03 05:40:35 +00:00
|
|
|
//m_zeros.push_back(ignore_zeros);
|
2011-12-24 06:20:07 +00:00
|
|
|
m_typeval.push_back(tval);
|
|
|
|
}
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Deselect highlighting (the gold bar)
|
2011-10-28 05:12:19 +00:00
|
|
|
virtual void deselect() {
|
|
|
|
hl_day=-1;
|
|
|
|
}
|
2011-12-19 02:20:24 +00:00
|
|
|
|
2012-01-03 07:15:02 +00:00
|
|
|
//! \brief Returns true if currently selected..
|
|
|
|
virtual bool isSelected() { return hl_day>=0; }
|
|
|
|
|
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Sets the MachineType this SummaryChart is interested in
|
2011-10-02 05:06:58 +00:00
|
|
|
void setMachineType(MachineType type) { m_machinetype=type; }
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Returns the MachineType this SummaryChart is interested in
|
2011-10-02 05:06:58 +00:00
|
|
|
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;
|
2012-01-03 05:40:35 +00:00
|
|
|
//QVector<bool> m_zeros;
|
2011-09-10 04:20:45 +00:00
|
|
|
QVector<SummaryType> m_type;
|
2011-12-24 06:20:07 +00:00
|
|
|
QVector<EventDataType> m_typeval;
|
2011-09-03 04:38:12 +00:00
|
|
|
QHash<int,QHash<short,EventDataType> > m_values;
|
2011-11-30 06:01:38 +00:00
|
|
|
QHash<int,QHash<short,EventDataType> > m_times;
|
2011-10-07 05:28:35 +00:00
|
|
|
QHash<int,EventDataType> m_hours;
|
2011-09-12 05:09:53 +00:00
|
|
|
QHash<int,Day *> m_days;
|
|
|
|
|
2012-01-02 15:34:17 +00:00
|
|
|
gVertexBuffer *quads;
|
|
|
|
gVertexBuffer *lines;
|
2013-11-09 04:03:29 +00:00
|
|
|
gVertexBuffer *outlines;
|
2013-11-09 00:26:44 +00:00
|
|
|
gVertexBuffer *points;
|
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;
|
2011-09-03 10:09:22 +00:00
|
|
|
|
|
|
|
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;
|
2011-09-03 10:09:22 +00:00
|
|
|
qint64 l_minx,l_maxx;
|
|
|
|
int hl_day;
|
|
|
|
gGraph * graph;
|
2011-09-10 04:20:45 +00:00
|
|
|
GraphType m_graphtype;
|
2011-10-02 05:06:58 +00:00
|
|
|
MachineType m_machinetype;
|
2011-11-30 06:01:38 +00:00
|
|
|
int tz_offset;
|
|
|
|
float tz_hours;
|
2011-10-28 03:45:31 +00:00
|
|
|
|
2011-12-19 02:20:24 +00:00
|
|
|
//! \brief Key was pressed that effects this layer
|
2013-10-25 11:33:28 +00:00
|
|
|
virtual bool keyPressEvent(QKeyEvent * event,gGraph * graph);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)
|
2013-10-25 11:33:28 +00:00
|
|
|
virtual bool mouseMoveEvent(QMouseEvent * event,gGraph * graph);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Mouse Button was pressed over this area
|
2013-10-25 11:33:28 +00:00
|
|
|
virtual bool mousePressEvent(QMouseEvent * event,gGraph * graph);
|
2011-12-19 02:20:24 +00:00
|
|
|
|
|
|
|
//! \brief Mouse Button was released over this area. (jumps to daily view here)
|
2013-10-25 11:33:28 +00:00
|
|
|
virtual bool mouseReleaseEvent(QMouseEvent * event,gGraph * graph);
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // GBARCHART_H
|