OSCAR-code/Graphs/gCandleStick.h

32 lines
860 B
C
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
gCandleStick Graph Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef GCANDLESTICK_H
#define GCANDLESTICK_H
#include "graphlayer.h"
class gCandleStick:public gLayer
{
public:
2011-07-28 11:09:53 +00:00
gCandleStick(Qt::Orientation o=Qt::Horizontal);
2011-06-26 08:30:44 +00:00
virtual ~gCandleStick();
2011-07-28 11:09:53 +00:00
virtual void SetDay(Day *d);
2011-06-26 08:30:44 +00:00
virtual void Plot(gGraphWindow & w,float scrx,float scry);
2011-07-28 11:09:53 +00:00
void AddSlice(MachineCode code,QColor color,QString name="");
2011-06-26 08:30:44 +00:00
protected:
Qt::Orientation m_orientation;
2011-07-28 11:09:53 +00:00
map<MachineCode,int> m_counts;
map<MachineCode,QString> m_names;
map<MachineCode,QColor> m_colors;
int m_total;
2011-06-26 08:30:44 +00:00
};
#endif // GCANDLESTICK_H