##// END OF EJS Templates
better brief descriptions for barcharts
better brief descriptions for barcharts

File last commit:

r1500:c68a69b7bb5f
r1502:a8b913a7eae1
Show More
qbarset.h
117 lines | 3.6 KiB | text/x-c | CLexer
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
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
renamed barchart floating values with labels to be consistent with piechart
r820 #include <QFont>
sauimone
proof of concept implementation for barset and barcategory
r169
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
barchart pimpl part 1
r934 class QBarSetPrivate;
sauimone
proof of concept implementation for barset and barcategory
r169
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
changed barset name to label to be consistent with pie series. Series have names, barsets and pieslices have labels
r1429 Q_PROPERTY(QString label READ label WRITE setLabel NOTIFY labelChanged)
Q_PROPERTY(QPen pen READ pen WRITE setPen NOTIFY penChanged)
Q_PROPERTY(QBrush brush READ brush WRITE setBrush NOTIFY brushChanged)
Q_PROPERTY(QBrush labelBrush READ labelBrush WRITE setLabelBrush NOTIFY labelBrushChanged)
Q_PROPERTY(QFont labelFont READ labelFont WRITE setLabelFont NOTIFY labelFontChanged)
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged)
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor NOTIFY borderColorChanged)
Q_PROPERTY(QColor labelColor READ labelColor WRITE setLabelColor NOTIFY labelColorChanged)
Michal Klocek
Adds big fat pimpl to series classes...
r938
sauimone
proof of concept implementation for barset and barcategory
r169 public:
sauimone
changed barset name to label to be consistent with pie series. Series have names, barsets and pieslices have labels
r1429 explicit QBarSet(const QString label, QObject *parent = 0);
sauimone
barchart: doc update for hover signals
r980 virtual ~QBarSet();
sauimone
proof of concept implementation for barset and barcategory
r169
sauimone
changed barset name to label to be consistent with pie series. Series have names, barsets and pieslices have labels
r1429 void setLabel(const QString label);
QString label() const;
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 void append(const QPointF value);
sauimone
barset append list changed to take reference
r1500 void append(const QList<QPointF> &values);
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 void append(const qreal value);
sauimone
barset append list changed to take reference
r1500 void append(const QList<qreal> &values);
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 QBarSet& operator << (const qreal &value);
QBarSet& operator << (const QPointF &value);
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 void insert(const int index, const qreal value);
sauimone
barchart signals for properties and changes
r1353 void insert(const int index, const QPointF value);
bool remove(const int index, const int count = 1);
sauimone
barset: unified insert/set/remove methods
r993 void replace(const int index, const qreal value);
sauimone
barchart signals for properties and changes
r1353 void replace(const int index, const QPointF value);
sauimone
new series: groupedbarseries
r1167 QPointF at(const int index) const;
QPointF operator [] (const int index) const;
sauimone
barset: unified insert/set/remove methods
r993 int count() const;
qreal sum() const;
sauimone
Drilldown example for barcharts continuing. Still some bugs
r430
sauimone
minor code review fixes, part n
r763 void setPen(const QPen &pen);
sauimone
Fixed layout for barcharts
r473 QPen pen() const;
sauimone
Added pen & brush to QBarSet
r214
sauimone
minor code review fixes, part n
r763 void setBrush(const QBrush &brush);
sauimone
Fixed layout for barcharts
r473 QBrush brush() const;
sauimone
Added pen & brush to QBarSet
r214
sauimone
renamed barchart floating values with labels to be consistent with piechart
r820 void setLabelBrush(const QBrush &brush);
QBrush labelBrush() const;
void setLabelFont(const QFont &font);
QFont labelFont() const;
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 QColor color();
void setColor(QColor color);
QColor borderColor();
void setBorderColor(QColor color);
QColor labelColor();
void setLabelColor(QColor color);
sauimone
barchart signals for properties and changes
r1353 Q_SIGNALS:
sauimone
reintroducing clicked and hovered signals to barset. Makes some things easier on QML api
r1490 void clicked(int index);
void hovered(bool status);
sauimone
barchart signals for properties and changes
r1353 void penChanged();
void brushChanged();
void labelChanged();
void labelBrushChanged();
void labelFontChanged();
Tero Ahola
Property notifications: axis minmax, bar properties, xyseries p-visibl and count
r1465 void colorChanged(QColor color);
void borderColorChanged(QColor color);
void labelColorChanged(QColor color);
sauimone
barchart signals for properties and changes
r1353
void valuesAdded(int index, int count);
void valuesRemoved(int index, int count);
void valueChanged(int index);
sauimone
Barset and barcategory implememtation. Updated test application
r171 private:
Michal Klocek
Adds big fat pimpl to series classes...
r938 QScopedPointer<QBarSetPrivate> d_ptr;
sauimone
barchart pimpl part 1
r934 Q_DISABLE_COPY(QBarSet)
Michal Klocek
Adds big fat pimpl to series classes...
r938 friend class QBarSeries;
sauimone
legend signal fix for barchart
r953 friend class BarLegendMarker;
sauimone
barchart PIMPL part 2. Cleaning up leftovers in public api
r962 friend class BarChartItem;
sauimone
fixed barchart signals with pimpl. drilldown works now
r968 friend class QBarSeriesPrivate;
sauimone
proof of concept implementation for barset and barcategory
r169 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARSET_H