##// END OF EJS Templates
Adds owvership to domain
Adds owvership to domain

File last commit:

r740:344f31f1bb27
r787:e08865d3185f
Show More
chartbackground_p.h
35 lines | 592 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;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* CHARTBACKGROUND_H_ */