/* gBarChart Header Copyright (c)2011 Mark Watkins License: GPL */ #ifndef GBARCHART_H #define GBARCHART_H #include #include "gGraphView.h" #include "gXAxis.h" enum GraphType { GT_BAR, GT_LINE }; class SummaryChart:public Layer { public: SummaryChart(Profile *profile, QString label, GraphType type=GT_BAR); virtual ~SummaryChart(); void setProfile(Profile *profile) { m_profile=profile; } 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) { m_codes.push_back(code); m_colors.push_back(color); m_type.push_back(type); } void deselect() { hl_day=-1; } protected: Qt::Orientation m_orientation; QVector m_colors; QVector m_codes; QVector m_type; QHash > m_values; Profile * m_profile; GLBuffer *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; virtual bool mouseMoveEvent(QMouseEvent * event); virtual bool mousePressEvent(QMouseEvent * event); virtual bool mouseReleaseEvent(QMouseEvent * event); }; /* class AHIChart:public gBarChart { public: AHIChart(Profile *profile); virtual void SetDay(Day * day); }; class UsageChart:public gBarChart { public: UsageChart(Profile *profile); virtual void SetDay(Day * day); }; class AvgChart:public gBarChart { public: AvgChart(Profile *profile); virtual void SetDay(Day * day); };*/ #endif // GBARCHART_H