##// END OF EJS Templates
improved legend layout
improved legend layout

File last commit:

r776:2e4d7bdf36a4
r783:d2e48e985993
Show More
barvalue_p.h
50 lines | 953 B | text/x-c | CLexer
sauimone
Floating values to bar charts
r263 #ifndef BARVALUE_P_H
#define BARVALUE_P_H
#include "qchartglobal.h"
sauimone
floating values working now. bounding rect bug fixed
r273 #include <QGraphicsObject>
sauimone
Floating values to bar charts
r263 #include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
toggling of floating values. still bit buggy
r267 class QBarSet;
sauimone
Floating values to bar charts
r263
// Visual class for floating bar values
// By default these are not visible.
sauimone
floating values working now. bounding rect bug fixed
r273 class BarValue : public QGraphicsObject
sauimone
Floating values to bar charts
r263 {
sauimone
floating values working now. bounding rect bug fixed
r273 Q_OBJECT
sauimone
Floating values to bar charts
r263 public:
sauimone
toggling of floating values. still bit buggy
r267 BarValue(QBarSet &set, QGraphicsItem *parent = 0);
sauimone
Floating values to bar charts
r263
sauimone
const to getters, renamed addBarset to appendBarset
r776 void setText(QString str);
QString text() const;
sauimone
Floating values to bar charts
r263
sauimone
const to getters, renamed addBarset to appendBarset
r776 void setPen(const QPen &pen);
sauimone
Fixed layout for barcharts
r473 QPen pen() const;
sauimone
Floating values to bar charts
r263
void resize(qreal w, qreal h);
void setPos(qreal x, qreal y);
// From QGraphicsItem
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QRectF boundingRect() const;
sauimone
floating values working now. bounding rect bug fixed
r273 public Q_SLOTS:
void toggleVisible();
sauimone
Floating values to bar charts
r263 private:
sauimone
minor code review fixes, part n
r763 QBarSet &m_barSet;
QPen m_pen;
QString m_valueString;
qreal m_xPos;
qreal m_yPos;
qreal m_width;
qreal m_height;
sauimone
Floating values to bar charts
r263 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARVALUE_P_H