##// END OF EJS Templates
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.

File last commit:

r1208:2943560d5819
r1208:2943560d5819
Show More
qbarseries.h
81 lines | 2.2 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
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #ifndef BARSERIES_H
#define BARSERIES_H
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 #include <qabstractseries.h>
sauimone
replaced qbarcategory with qstringlist
r377 #include <QStringList>
sauimone
BarGroup and Bar as ChartItems instead of GraphicItems
r74
Marek Rosa
BarSeries - renamed internal model getter to modelInternal. Some smaller changes to other files to have in headers forward declarations for model related members instead of include
r877 class QModelIndex;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds BarCategories typedef
r703 typedef QStringList QBarCategories;
Michal Klocek
Adds back reimplemnted categories handling
r701
sauimone
removed barchartseriesbase. functionality is now in model
r172 class QBarSet;
sauimone
right click feature for bar series. Enables drilldown
r412 class BarCategory;
sauimone
barchart pimpl part 1
r934 class QBarSeriesPrivate;
Marek Rosa
BarSeries Model mapper added
r1170 class QBarModelMapper;
sauimone
removed barchartseriesbase. functionality is now in model
r172
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 // Container for series
Tero Ahola
Renamed QSeries to QAbstractSeries
r988 class QTCOMMERCIALCHART_EXPORT QBarSeries : public QAbstractSeries
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
Improved bar chart series
r71 Q_OBJECT
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 public:
sauimone
new series: groupedbarseries
r1167 explicit QBarSeries(QObject *parent = 0);
sauimone
barchart: doc update for hover signals
r980 virtual ~QBarSeries();
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
Michal Klocek
Fixes to API , QSeriesType -> SeriesType , add missing getters
r1107 QAbstractSeries::SeriesType type() const;
sauimone
separated categories from barseries constructor
r1112 void setCategories(QBarCategories categories);
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
Fixed category handling of barcharts. Now the categories can be undefined. Updated documentation.
r1208 bool append(QBarSet *set);
bool remove(QBarSet *set);
sauimone
Renamed appendBarSet to append, removeBarSet to remove
r1194 bool append(QList<QBarSet* > sets);
bool remove(QList<QBarSet* > sets);
sauimone
const to getters, renamed addBarset to appendBarset
r776 int barsetCount() const;
int categoryCount() const;
QList<QBarSet*> barSets() const;
Michal Klocek
Adds BarCategories typedef
r703 QBarCategories categories() const;
sauimone
renamed barchart floating values with labels to be consistent with piechart
r820 void setLabelsVisible(bool visible = true);
sauimone
values visibility handling changed in barchart
r813
Marek Rosa
Mapper class added for xyseries and pieseries. Model support commented out for barseries for now.
r1164 void setModel(QAbstractItemModel *model);
Marek Rosa
BarSeries Model mapper added
r1170 void setModelMapper(QBarModelMapper *mapper);
QBarModelMapper* modelMapper() const;
Marek Rosa
QXYSeries: model data orientation added. QBarSeries: some model data function placeholders
r527
Michal Klocek
Refactor to use qseries private for implmentation interface...
r943 protected:
explicit QBarSeries(QBarSeriesPrivate &d,QObject *parent = 0);
sauimone
Q_SIGNALS and Q_SLOTS
r775 Q_SIGNALS:
sauimone
barchart: removed mousebuttons from clicked signal. removed selected signal. unified internal signal naming in barset and barseries private
r1008 void clicked(QBarSet *barset, QString category);
sauimone
barchart: removed tooltip. hoverEntered and hoverLeaved signals combined to hovered(bool) signal
r975 void hovered(QBarSet* barset, bool status);
sauimone
Barset and barcategory implememtation. Updated test application
r171
sauimone
refactoring. QStackedBarSeries and QPercentBarSeries are now derived from QBarSeries.
r281 protected:
sauimone
barchart pimpl part 1
r934 Q_DECLARE_PRIVATE(QBarSeries)
sauimone
barchart PIMPL part 2. Cleaning up leftovers in public api
r962 friend class BarChartItem;
friend class PercentBarChartItem;
friend class StackedBarChartItem;
sauimone
new series: groupedbarseries
r1167 friend class GroupedBarChartItem;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 };
QTCOMMERCIALCHART_END_NAMESPACE
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #endif // BARSERIES_H