qabstractbarseries_p.h
113 lines
| 3.2 KiB
| text/x-c
|
CLexer
sauimone
|
r1248 | /**************************************************************************** | ||
** | ||||
Miikka Heikkinen
|
r2432 | ** Copyright (C) 2013 Digia Plc | ||
sauimone
|
r1248 | ** 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. | ||||
sauimone
|
r1586 | #ifndef QABSTRACTBARSERIES_P_H | ||
#define QABSTRACTBARSERIES_P_H | ||||
sauimone
|
r934 | |||
sauimone
|
r1586 | #include "qabstractbarseries.h" | ||
Tero Ahola
|
r988 | #include "qabstractseries_p.h" | ||
sauimone
|
r934 | #include <QStringList> | ||
Tero Ahola
|
r988 | #include <QAbstractSeries> | ||
sauimone
|
r934 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Marek Rosa
|
r1170 | class QBarModelMapper; | ||
Marek Rosa
|
r1808 | class QBarCategoryAxis; | ||
sauimone
|
r2163 | class QLegendMarker; | ||
Marek Rosa
|
r1170 | |||
sauimone
|
r1584 | class QAbstractBarSeriesPrivate : public QAbstractSeriesPrivate | ||
sauimone
|
r934 | { | ||
Q_OBJECT | ||||
public: | ||||
sauimone
|
r1584 | QAbstractBarSeriesPrivate(QAbstractBarSeries *parent); | ||
sauimone
|
r1208 | int categoryCount() const; | ||
sauimone
|
r1425 | void setBarWidth(qreal width); | ||
qreal barWidth() const; | ||||
sauimone
|
r1284 | |||
void setVisible(bool visible); | ||||
sauimone
|
r1353 | void setLabelsVisible(bool visible); | ||
sauimone
|
r934 | |||
Michal Klocek
|
r2273 | void initializeDomain(); | ||
void initializeAxes(); | ||||
Marek Rosa
|
r2316 | void initializeAnimations(QChart::AnimationOptions options); | ||
Michal Klocek
|
r2273 | void initializeTheme(int index, ChartTheme* theme, bool forced = false); | ||
QList<QLegendMarker*> createLegendMarkers(QLegend *legend); | ||||
Michal Klocek
|
r943 | |||
sauimone
|
r1709 | virtual QAbstractAxis::AxisType defaultAxisType(Qt::Orientation orientation) const; | ||
Michal Klocek
|
r2273 | QAbstractAxis* createDefaultAxis(Qt::Orientation orientation) const; | ||
sauimone
|
r1545 | |||
sauimone
|
r1263 | bool append(QBarSet *set); | ||
bool remove(QBarSet *set); | ||||
Jani Honkonen
|
r2104 | bool append(QList<QBarSet *> sets); | ||
bool remove(QList<QBarSet *> sets); | ||||
Marek Rosa
|
r1362 | bool insert(int index, QBarSet *set); | ||
sauimone
|
r1263 | |||
Jani Honkonen
|
r2104 | QBarSet *barsetAt(int index); | ||
sauimone
|
r934 | 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(); | ||||
sauimone
|
r1423 | qreal minX(); | ||
qreal maxX(); | ||||
sauimone
|
r1897 | qreal categoryTop(int category); | ||
qreal categoryBottom(int category); | ||||
qreal top(); | ||||
qreal bottom(); | ||||
sauimone
|
r934 | |||
Q_SIGNALS: | ||||
sauimone
|
r1563 | void clicked(int index, QBarSet *barset); | ||
sauimone
|
r934 | void updatedBars(); | ||
sauimone
|
r1917 | void updatedLayout(); | ||
Marek Rosa
|
r1333 | void restructuredBars(); | ||
sauimone
|
r1246 | void labelsVisibleChanged(bool visible); | ||
sauimone
|
r1917 | void visibleChanged(); | ||
sauimone
|
r934 | |||
Michal Klocek
|
r1707 | private: | ||
Jani Honkonen
|
r2104 | void populateCategories(QBarCategoryAxis *axis); | ||
Michal Klocek
|
r1707 | |||
sauimone
|
r934 | protected: | ||
sauimone
|
r1005 | QList<QBarSet *> m_barSets; | ||
sauimone
|
r1425 | qreal m_barWidth; | ||
sauimone
|
r1246 | bool m_labelsVisible; | ||
sauimone
|
r1284 | bool m_visible; | ||
sauimone
|
r1246 | |||
Michal Klocek
|
r938 | private: | ||
sauimone
|
r1584 | Q_DECLARE_PUBLIC(QAbstractBarSeries) | ||
sauimone
|
r1794 | friend class HorizontalBarChartItem; | ||
friend class BarChartItem; | ||||
sauimone
|
r934 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
sauimone
|
r1586 | #endif // QABSTRACTBARSERIES_P_H | ||