OSCAR-code/Graphs/gSummaryChart.h
2011-12-05 21:17:28 +10:00

70 lines
2.1 KiB
C++

/*
gBarChart Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
#ifndef GBARCHART_H
#define GBARCHART_H
#include <SleepLib/profiles.h>
#include "gGraphView.h"
#include "gXAxis.h"
enum GraphType { GT_BAR, GT_LINE, GT_SESSIONS };
class SummaryChart:public Layer
{
public:
SummaryChart(QString label, GraphType type=GT_BAR);
virtual ~SummaryChart();
virtual void paint(gGraph & w,int left, int top, int width, int height);
virtual void SetDay(Day * day=NULL);
virtual bool isEmpty() { return m_empty; }
void addSlice(ChannelID code, QColor color, SummaryType type, bool ignore_zeros) { m_codes.push_back(code); m_colors.push_back(color); m_type.push_back(type); m_zeros.push_back(ignore_zeros); }
virtual void deselect() {
hl_day=-1;
}
void setMachineType(MachineType type) { m_machinetype=type; }
MachineType machineType() { return m_machinetype; }
protected:
Qt::Orientation m_orientation;
QVector<QColor> m_colors;
QVector<ChannelID> m_codes;
QVector<bool> m_goodcodes;
QVector<bool> m_zeros;
QVector<SummaryType> m_type;
QHash<int,QHash<short,EventDataType> > m_values;
QHash<int,QHash<short,EventDataType> > m_times;
QHash<int,EventDataType> m_hours;
QHash<int,Day *> m_days;
GLShortBuffer *quads,*lines;
bool m_empty;
int m_fday;
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;
int rtop;
qint64 l_minx,l_maxx;
int hl_day;
gGraph * graph;
GraphType m_graphtype;
MachineType m_machinetype;
int tz_offset;
float tz_hours;
virtual bool keyPressEvent(QKeyEvent * event);
virtual bool mouseMoveEvent(QMouseEvent * event);
virtual bool mousePressEvent(QMouseEvent * event);
virtual bool mouseReleaseEvent(QMouseEvent * event);
};
#endif // GBARCHART_H