mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
/********************************************************************
|
|
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:
|
|
gCandleStick(Qt::Orientation o=Qt::Horizontal);
|
|
virtual ~gCandleStick();
|
|
virtual void SetDay(Day *d);
|
|
|
|
virtual void Plot(gGraphWindow & w,float scrx,float scry);
|
|
void AddSlice(MachineCode code,QColor color,QString name="");
|
|
|
|
void setGradientColor(QColor & color) { m_gradient_color=color; }
|
|
void setOutlineColor(QColor & color) { m_outline_color=color; }
|
|
protected:
|
|
Qt::Orientation m_orientation;
|
|
map<MachineCode,int> m_counts;
|
|
map<MachineCode,QString> m_names;
|
|
map<MachineCode,QColor> m_colors;
|
|
QColor m_gradient_color;
|
|
QColor m_outline_color;
|
|
int m_total;
|
|
};
|
|
|
|
|
|
#endif // GCANDLESTICK_H
|