mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
65 lines
1.7 KiB
C++
65 lines
1.7 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"
|
|
|
|
class gBarChart:public Layer
|
|
{
|
|
public:
|
|
gBarChart(ChannelID code=EmptyChannel,QColor color=QColor("blue"),Qt::Orientation o=Qt::Horizontal);
|
|
virtual ~gBarChart();
|
|
|
|
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);
|
|
virtual bool isEmpty() { return m_empty; }
|
|
void addSlice(ChannelID code, QColor color) { m_codes.push_back(code); m_colors.push_back(color); }
|
|
protected:
|
|
Qt::Orientation m_orientation;
|
|
|
|
QVector<QColor> m_colors;
|
|
QVector<ChannelID> m_codes;
|
|
QHash<int,QHash<short,EventDataType> > m_values;
|
|
Profile * m_profile;
|
|
GLBuffer *quads;
|
|
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;
|
|
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);
|
|
};
|
|
|
|
#endif // GBARCHART_H
|