##// END OF EJS Templates
Drafting the new mapper api on QML
Drafting the new mapper api on QML

File last commit:

r1167:494db513d752
r1221:d772c9d3a6aa
Show More
qbarset.h
93 lines | 2.9 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
Tero Ahola
Added declarative model for bar series
r1162 Q_PROPERTY(QString name READ name WRITE setName)
Michal Klocek
Adds big fat pimpl to series classes...
r938
sauimone
proof of concept implementation for barset and barcategory
r169 public:
sauimone
barset: unified insert/set/remove methods
r993 explicit QBarSet(const QString name, QObject *parent = 0);
sauimone
barchart: doc update for hover signals
r980 virtual ~QBarSet();
sauimone
proof of concept implementation for barset and barcategory
r169
sauimone
barset: unified insert/set/remove methods
r993 void setName(const QString name);
sauimone
const to getters, renamed addBarset to appendBarset
r776 QString name() const;
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
sauimone
new series: groupedbarseries
r1167 void append(const QPointF value); // Appends bar with x-value
void append(const QList<QPointF> values); // Same with list
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159 void append(const qreal value); // TODO: change so, that count becomes x-value
sauimone
new series: groupedbarseries
r1167 void append(const QList<qreal> values); // Append list of values. Using index as x-value
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
sauimone
new series: groupedbarseries
r1167 QBarSet& operator << (const qreal &value); // TODO: change implementations so, that count becomes x-value
QBarSet& operator << (const QPointF &value); // Appends bar with x-value
sauimone
barseries api change proposal (as TODOs). Support for positioning of bars to x-axis.
r1159
void insert(const int index, const qreal value); // TODO: internal reindexing (what happens, if there are points with real x values?)
void remove(const int index); // TODO: internal reindexing (what happens, if there are points with real x values?)
sauimone
barset: unified insert/set/remove methods
r993 void replace(const int index, const qreal 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 setLabelPen(const QPen &pen);
QPen labelPen() const;
sauimone
better use of gradients in barcharts
r512
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;
void setLabelsVisible(bool visible = true);
bool labelsVisible() const;
sauimone
values visibility handling changed in barchart
r813
sauimone
Floating values to bar charts
r263 Q_SIGNALS:
sauimone
barchart: removed mousebuttons from clicked signal. removed selected signal. unified internal signal naming in barset and barseries private
r1008 void clicked(QString category);
sauimone
barchart: removed tooltip. hoverEntered and hoverLeaved signals combined to hovered(bool) signal
r975 void hovered(bool status);
sauimone
signals and slots for bars and sets
r239
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