bar_p.h
42 lines
| 793 B
| text/x-c
|
CLexer
sauimone
|
r56 | #ifndef BAR_H | ||
#define BAR_H | ||||
Tero Ahola
|
r104 | #include "chartitem_p.h" | ||
sauimone
|
r56 | #include "qchartglobal.h" | ||
Tero Ahola
|
r103 | #include <QGraphicsItem> | ||
sauimone
|
r56 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
// Single bar item of chart | ||||
Tero Ahola
|
r104 | class Bar : public ChartItem | ||
sauimone
|
r56 | { | ||
public: | ||||
Tero Ahola
|
r103 | Bar(QGraphicsItem *parent=0); | ||
sauimone
|
r74 | |||
sauimone
|
r113 | public: // from ChartItem | ||
Michal Klocek
|
r115 | void setSize(const QSizeF &size); | ||
sauimone
|
r56 | |||
// Layout Stuff | ||||
sauimone
|
r113 | void resize( qreal w, qreal h ); // Size of bar. | ||
sauimone
|
r56 | void setColor( QColor col ); // Color of bar | ||
void setPos(qreal x, qreal y); | ||||
public: | ||||
// From QGraphicsItem | ||||
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); | ||||
QRectF boundingRect() const; | ||||
private: | ||||
sauimone
|
r113 | qreal mHeight; | ||
qreal mWidth; | ||||
sauimone
|
r56 | qreal mXpos; | ||
qreal mYpos; | ||||
QColor mColor; | ||||
sauimone
|
r74 | |||
sauimone
|
r56 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif // BAR_H | ||||