OSCAR-code/Graphs/gpiechart.h

25 lines
531 B
C
Raw Normal View History

2011-06-28 15:25:20 +00:00
#ifndef GPIECHART_H
#define GPIECHART_H
#include "graphlayer.h"
class gPieChart : public gLayer
{
public:
gPieChart(QColor color=Qt::black);
2011-06-28 15:25:20 +00:00
virtual ~gPieChart();
virtual void Plot(gGraphWindow & w,float scrx,float scry);
virtual void SetDay(Day *d);
2011-06-28 15:25:20 +00:00
void AddSlice(MachineCode code,QColor col,QString name="");
2011-06-28 15:25:20 +00:00
protected:
map <MachineCode,QString> m_names;
map <MachineCode,int> m_counts;
map <MachineCode,QColor> m_colors;
int m_total;
QColor m_outline_color;
2011-06-28 15:25:20 +00:00
};
#endif // GPIECHART_H