##// END OF EJS Templates
Refactored themes; now enabled for line, scatter and pies...
Refactored themes; now enabled for line, scatter and pies Draft themes implemented for most of the series types. The themes are still missing most of the features, only the line color and line width can be defined.

File last commit:

r103:399cbfcd557c
r103:399cbfcd557c
Show More
chartitemcontrol.h
24 lines | 505 B | text/x-c | CLexer
/ src / chartitemcontrol.h
#ifndef CHARTITEMCONTROL_H
#define CHARTITEMCONTROL_H
#include "plotdomain_p.h"
#include <qchartglobal.h>
#include <QSize>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartTheme;
class PlotDomain;
class ChartItemControl
{
public:
virtual void setPos (const QPointF & pos) = 0;
virtual void resize(const QSize &size) = 0;
virtual void setTheme(ChartTheme *theme) = 0;
virtual void setPlotDomain(const PlotDomain& data) = 0;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // CHARTITEMCONTROL_H