axis_p.h
29 lines
| 584 B
| text/x-c
|
CLexer
/ src / axis_p.h
Michal Klocek
|
r12 | #ifndef AXIS_H_ | ||
#define AXIS_H_ | ||||
Tero Ahola
|
r30 | #include <qchartglobal.h> | ||
Michal Klocek
|
r12 | #include <QGraphicsItem> | ||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
Michal Klocek
|
r12 | |||
class Axis: public QGraphicsItem | ||||
{ | ||||
public: | ||||
Axis(QGraphicsItem* parent = 0); | ||||
virtual ~Axis(); | ||||
//from QGraphicsItem | ||||
virtual QPainterPath shape() const; | ||||
virtual QRectF boundingRect() const; | ||||
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); | ||||
void setLength(int length); | ||||
void setWidth(int width); | ||||
private: | ||||
QPainterPath m_path; | ||||
}; | ||||
Tero Ahola
|
r30 | QTCOMMERCIALCHART_END_NAMESPACE | ||
Michal Klocek
|
r12 | |||
#endif /* AXIS_H_ */ | ||||