##// END OF EJS Templates
fixed crash in barseries with empty sets
fixed crash in barseries with empty sets

File last commit:

r1339:495016ed1794
r1339:495016ed1794
Show More
qbarseries_p.h
99 lines | 2.7 KiB | text/x-c | CLexer
sauimone
cleaned crap from barseries private headers. Added missing license texts
r1248 /****************************************************************************
**
** 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$
**
****************************************************************************/
// W A R N I N G
// -------------
//
// This file is not part of the QtCommercial Chart API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
Michal Klocek
Adds big fat pimpl to series classes...
r938 #ifndef QBARSERIES_P_H
#define QBARSERIES_P_H
sauimone
barchart pimpl part 1
r934
#include "qbarseries.h"
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include "qabstractseries_p.h"
sauimone
barchart pimpl part 1
r934 #include <QStringList>
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include <QAbstractSeries>
sauimone
barchart pimpl part 1
r934
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Marek Rosa
BarSeries Model mapper added
r1170 class QBarModelMapper;
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 class QBarSeriesPrivate : public QAbstractSeriesPrivate
sauimone
barchart pimpl part 1
r934 {
Q_OBJECT
public:
sauimone
new series: groupedbarseries
r1167 QBarSeriesPrivate(QBarSeries *parent);
sauimone
removed categories from barseries. categories are now only on axis
r1321 // TODO: refactor/remove private category stuff
Marek Rosa
Revert barseries thought to be only model related
r1333 void setCategories(QStringList categories);
void insertCategory(int index, const QString category);
void removeCategory(int index);
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 int categoryCount() const;
sauimone
removed categories from barseries. categories are now only on axis
r1321 QStringList categories() const;
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208
sauimone
new series: groupedbarseries
r1167 void setBarMargin(qreal margin);
sauimone
visible property to barseries
r1284 qreal barMargin() const;
void setVisible(bool visible);
bool isVisible() const;
sauimone
barchart pimpl part 1
r934
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 void scaleDomain(Domain& domain);
Chart* createGraphics(ChartPresenter* presenter);
Michal Klocek
Adds qlegend pimpl...
r950 QList<LegendMarker*> createLegendMarker(QLegend* legend);
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943
sauimone
legend detach example. Bug fixes to legend.
r1263 bool append(QBarSet *set);
bool remove(QBarSet *set);
bool append(QList<QBarSet* > sets);
bool remove(QList<QBarSet* > sets);
sauimone
barchart pimpl part 1
r934 QBarSet* barsetAt(int index);
QString categoryName(int category);
qreal min();
qreal max();
qreal valueAt(int set, int category);
qreal percentageAt(int set, int category);
qreal categorySum(int category);
qreal absoluteCategorySum(int category);
qreal maxCategorySum();
Q_SIGNALS:
sauimone
removed categories from barseries. categories are now only on axis
r1321 void clicked(QBarSet *barset, int index);
sauimone
barchart pimpl part 1
r934 void updatedBars();
Marek Rosa
Revert barseries thought to be only model related
r1333 void restructuredBars();
void categoriesUpdated();
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 void labelsVisibleChanged(bool visible);
sauimone
barchart pimpl part 1
r934
protected:
sauimone
barchart: removed old model
r1005 QList<QBarSet *> m_barSets;
sauimone
removed categories from barseries. categories are now only on axis
r1321 QStringList m_categories;
Marek Rosa
Minor fix and example update
r1171 qreal m_barMargin;
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246 bool m_labelsVisible;
sauimone
visible property to barseries
r1284 bool m_visible;
sauimone
removed barlabel. label visibility control is now per series instead of per set
r1246
Michal Klocek
Adds big fat pimpl to series classes...
r938 private:
Q_DECLARE_PUBLIC(QBarSeries)
sauimone
barchart pimpl part 1
r934 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARSERIESPRIVATE_P_H