##// END OF EJS Templates
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems

File last commit:

r640:9742bfe3f470
r666:6018938e3db4
Show More
chartbackground_p.h
33 lines | 590 B | text/x-c | CLexer
/ src / chartbackground_p.h
#ifndef CHARTBACKGROUND_H_
#define CHARTBACKGROUND_H_
#include "qchartglobal.h"
#include <QGraphicsRectItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartBackground: public QGraphicsRectItem
{
public:
ChartBackground(QGraphicsItem *parent =0);
~ChartBackground();
void setDimeter(int dimater);
int diameter() const;
protected:
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
private:
int roundness(qreal size) const;
private:
int m_diameter;
};
#endif /* CHARTBACKGROUND_H_ */
QTCOMMERCIALCHART_END_NAMESPACE