##// END OF EJS Templates
updated barchart examples. minor fixes
updated barchart examples. minor fixes

File last commit:

r276:d062a7f38647
r276:d062a7f38647
Show More
qbarset.h
55 lines | 1.1 KiB | text/x-c | CLexer
sauimone
proof of concept implementation for barset and barcategory
r169 #ifndef QBARSET_H
#define QBARSET_H
sauimone
updated barchart examples. minor fixes
r276 #include <qchartglobal.h>
sauimone
brush support for bargroups
r183 #include <QPen>
#include <QBrush>
sauimone
proof of concept implementation for barset and barcategory
r169
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
signals and slots for bars and sets
r239 class QTCOMMERCIALCHART_EXPORT QBarSet : public QObject
sauimone
proof of concept implementation for barset and barcategory
r169 {
sauimone
minor fix
r240 Q_OBJECT
sauimone
proof of concept implementation for barset and barcategory
r169 public:
sauimone
updated barchart examples. minor fixes
r276 QBarSet(QObject *parent = 0);
sauimone
proof of concept implementation for barset and barcategory
r169
void setName(QString name);
sauimone
Barset and barcategory implememtation. Updated test application
r171 QString name();
sauimone
brush support for bargroups
r183 QBarSet& operator << (const qreal &value); // appends new value to set
sauimone
proof of concept implementation for barset and barcategory
r169
sauimone
brush support for bargroups
r183 int count(); // count of values in set
qreal valueAt(int index); // for modifying individual values
void setValue(int index, qreal value); //
sauimone
Barset and barcategory implememtation. Updated test application
r171
sauimone
Added pen & brush to QBarSet
r214 void setPen(const QPen& pen);
const QPen& pen() const;
void setBrush(const QBrush& brush);
const QBrush& brush() const;
sauimone
toggling of floating values. still bit buggy
r267 bool isFloatingValuesVisible();
sauimone
Floating values to bar charts
r263 Q_SIGNALS:
void clicked();
sauimone
signals and slots for bars and sets
r239 void hoverEnter();
void hoverLeave();
sauimone
updated barchart examples. minor fixes
r276 void toggleFloatingValues();
sauimone
signals and slots for bars and sets
r239
public Q_SLOTS:
void barClicked();
sauimone
updated barchart examples. minor fixes
r276 void barHoverEntered();
void barHoverLeaved();
sauimone
signals and slots for bars and sets
r239
sauimone
Barset and barcategory implememtation. Updated test application
r171 private:
sauimone
proof of concept implementation for barset and barcategory
r169
QString mName;
QList<qreal> mValues;
sauimone
Added pen & brush to QBarSet
r214 QPen mPen;
QBrush mBrush;
sauimone
signals and slots for bars and sets
r239
sauimone
toggling of floating values. still bit buggy
r267 bool mFloatingValuesVisible;
sauimone
proof of concept implementation for barset and barcategory
r169 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARSET_H