qpercentbarseries.cpp
108 lines
| 3.2 KiB
| text/x-c
|
CppLexer
Jani Honkonen
|
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
|
r338 | #include "qpercentbarseries.h" | ||
Michal Klocek
|
r943 | #include "qpercentbarseries_p.h" | ||
#include "percentbarchartitem_p.h" | ||||
#include "chartdataset_p.h" | ||||
#include "charttheme_p.h" | ||||
#include "chartanimator_p.h" | ||||
sauimone
|
r338 | QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||
/*! | ||||
\class QPercentBarSeries | ||||
\brief part of QtCommercial chart API. | ||||
Tero Ahola
|
r995 | \mainclass | ||
sauimone
|
r338 | |||
sauimone
|
r1208 | QPercentBarSeries represents a series of data shown as bars. The purpose of this class is to draw bars | ||
as stacks, where each bar is shown as percentage of all bars in that category. | ||||
QPercentBarSeries groups the data from sets to categories, which are defined by a QStringList. | ||||
sauimone
|
r338 | |||
Tero Ahola
|
r995 | See the \l {PercentbarChart Example} {percent bar chart example} to learn how to create a percent bar chart. | ||
\image examples_percentbarchart.png | ||||
sauimone
|
r338 | |||
sauimone
|
r377 | \sa QBarSet, QStackedBarSeries, QBarSeries | ||
sauimone
|
r338 | */ | ||
/*! | ||||
Michal Klocek
|
r360 | \fn virtual QSeriesType QPercentBarSeries::type() const | ||
sauimone
|
r338 | \brief Returns type of series. | ||
Tero Ahola
|
r988 | \sa QAbstractSeries, QSeriesType | ||
sauimone
|
r338 | */ | ||
/*! | ||||
sauimone
|
r1208 | Constructs empty QPercentBarSeries. | ||
sauimone
|
r338 | QPercentBarSeries is QObject which is a child of a \a parent. | ||
*/ | ||||
sauimone
|
r1208 | QPercentBarSeries::QPercentBarSeries(QObject *parent) | ||
: QBarSeries(*new QPercentBarSeriesPrivate(this), parent) | ||||
sauimone
|
r338 | { | ||
} | ||||
Michal Klocek
|
r1107 | QAbstractSeries::SeriesType QPercentBarSeries::type() const | ||
Michal Klocek
|
r938 | { | ||
Tero Ahola
|
r988 | return QAbstractSeries::SeriesTypePercentBar; | ||
Michal Klocek
|
r938 | } | ||
Michal Klocek
|
r943 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
sauimone
|
r1208 | QPercentBarSeriesPrivate::QPercentBarSeriesPrivate(QPercentBarSeries *q) : QBarSeriesPrivate(q) | ||
Michal Klocek
|
r943 | { | ||
} | ||||
void QPercentBarSeriesPrivate::scaleDomain(Domain& domain) | ||||
{ | ||||
Q_Q(QPercentBarSeries); | ||||
qreal minX(domain.minX()); | ||||
qreal minY(domain.minY()); | ||||
qreal maxX(domain.maxX()); | ||||
qreal maxY(domain.maxY()); | ||||
int tickXCount(domain.tickXCount()); | ||||
int tickYCount(domain.tickYCount()); | ||||
qreal x = q->categoryCount(); | ||||
minX = qMin(minX, x); | ||||
maxX = qMax(maxX, x); | ||||
minY = 0; | ||||
maxY = 100; | ||||
tickXCount = x+1; | ||||
Michal Klocek
|
r1078 | domain.setRange(minX,maxX,minY,maxY,tickXCount,tickYCount); | ||
Michal Klocek
|
r943 | } | ||
Chart* QPercentBarSeriesPrivate::createGraphics(ChartPresenter* presenter) | ||||
{ | ||||
Q_Q(QPercentBarSeries); | ||||
PercentBarChartItem* bar = new PercentBarChartItem(q,presenter); | ||||
if(presenter->animationOptions().testFlag(QChart::SeriesAnimations)) { | ||||
presenter->animator()->addAnimation(bar); | ||||
} | ||||
presenter->chartTheme()->decorate(q, presenter->dataSet()->seriesIndex(q)); | ||||
return bar; | ||||
} | ||||
sauimone
|
r338 | #include "moc_qpercentbarseries.cpp" | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||