qbarset.cpp
635 lines
| 14.8 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
|
r169 | #include "qbarset.h" | ||
Michal Klocek
|
r938 | #include "qbarset_p.h" | ||
sauimone
|
r169 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
sauimone
|
r313 | /*! | ||
\class QBarSet | ||||
sauimone
|
r1502 | \brief Building block for different bar charts | ||
sauimone
|
r313 | |||
QBarSet represents one set of bars. Set of bars contains one data value for each category. | ||||
First value of set is assumed to belong to first category, second to second category and so on. | ||||
If set has fewer values than there are categories, then the missing values are assumed to be | ||||
at the end of set. For missing values in middle of a set, numerical value of zero is used. | ||||
sauimone
|
r325 | \mainclass | ||
sauimone
|
r1594 | \sa QAbstractBarSeries, QBarSeries, QStackedBarSeries, QPercentBarSeries | ||
sauimone
|
r313 | */ | ||
Tero Ahola
|
r1489 | /*! | ||
\qmlclass BarSet QBarSet | ||||
BarSet represents one set of bars. Set of bars contains one data value for each category. | ||||
First value of set is assumed to belong to first category, second to second category and so on. | ||||
If set has fewer values than there are categories, then the missing values are assumed to be | ||||
at the end of set. For missing values in middle of a set, numerical value of zero is used. | ||||
sauimone
|
r1594 | \sa AbstractBarSeries, BarSeries, StackedBarSeries, PercentBarSeries | ||
Tero Ahola
|
r1489 | */ | ||
sauimone
|
r313 | |||
Marek Rosa
|
r1361 | /*! | ||
sauimone
|
r1429 | \property QBarSet::label | ||
Tero Ahola
|
r1489 | Defines the label of the barSet. | ||
*/ | ||||
/*! | ||||
\qmlproperty string BarSet::label | ||||
Defines the label of the barSet. | ||||
Marek Rosa
|
r1361 | */ | ||
/*! | ||||
\property QBarSet::pen | ||||
\brief Defines the pen used by the barSet. | ||||
*/ | ||||
/*! | ||||
\property QBarSet::brush | ||||
\brief Defines the brush used by the barSet. | ||||
*/ | ||||
/*! | ||||
\property QBarSet::labelBrush | ||||
\brief Defines the brush used by the barSet's label. | ||||
*/ | ||||
/*! | ||||
\property QBarSet::labelFont | ||||
\brief Defines the font used by the barSet's label. | ||||
*/ | ||||
Jani Honkonen
|
r1517 | /*! | ||
\qmlproperty Font BarSet::labelFont | ||||
Defines the font used by the barSet's label. | ||||
See the \l {Font} {QML Font Element} for detailed documentation. | ||||
*/ | ||||
Tero Ahola
|
r1465 | /*! | ||
\property QBarSet::color | ||||
Tero Ahola
|
r1489 | The fill (brush) color of the bar set. | ||
*/ | ||||
/*! | ||||
\qmlproperty color BarSet::color | ||||
The fill (brush) color of the bar set. | ||||
Tero Ahola
|
r1465 | */ | ||
/*! | ||||
\property QBarSet::borderColor | ||||
Tero Ahola
|
r1489 | The line (pen) color of the bar set. | ||
*/ | ||||
/*! | ||||
\qmlproperty color BarSet::borderColor | ||||
The line (pen) color of the bar set. | ||||
Tero Ahola
|
r1465 | */ | ||
/*! | ||||
\property QBarSet::labelColor | ||||
Tero Ahola
|
r1489 | The text (label) color of the bar set. | ||
*/ | ||||
/*! | ||||
\qmlproperty color BarSet::labelColor | ||||
The text (label) color of the bar set. | ||||
Tero Ahola
|
r1465 | */ | ||
sauimone
|
r1490 | /*! | ||
\fn void QBarSet::clicked(int index) | ||||
The signal is emitted if the user clicks with a mouse on top of barset. | ||||
Clicked bar inside set is indexed by \a index | ||||
*/ | ||||
/*! | ||||
\fn void QBarSet::hovered(bool status) | ||||
The signal is emitted if mouse is hovered on top of barset. | ||||
Parameter \a status is true, if mouse entered on top of barset, false if mouse left from top of barset. | ||||
*/ | ||||
Marek Rosa
|
r1361 | /*! | ||
sauimone
|
r1429 | \fn void QBarSet::labelChanged() | ||
This signal is emitted when the label of the barSet has changed. | ||||
\sa label | ||||
Marek Rosa
|
r1361 | */ | ||
Tero Ahola
|
r1531 | /*! | ||
\qmlsignal BarSet::onLabelChanged() | ||||
This signal is emitted when the label of the barSet has changed. | ||||
*/ | ||||
Marek Rosa
|
r1361 | |||
/*! | ||||
\fn void QBarSet::penChanged() | ||||
This signal is emitted when the pen of the barSet has changed. | ||||
\sa pen | ||||
*/ | ||||
/*! | ||||
\fn void QBarSet::brushChanged() | ||||
This signal is emitted when the brush of the barSet has changed. | ||||
\sa brush | ||||
*/ | ||||
/*! | ||||
\fn void QBarSet::labelBrushChanged() | ||||
This signal is emitted when the brush of the barSet's label has changed. | ||||
\sa labelBrush | ||||
*/ | ||||
/*! | ||||
\fn void QBarSet::labelFontChanged() | ||||
This signal is emitted when the font of the barSet's label has changed. | ||||
\sa labelBrush | ||||
*/ | ||||
Tero Ahola
|
r1465 | /*! | ||
\fn void QBarSet::colorChanged(QColor) | ||||
This signal is emitted when the fill (brush) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onColorChanged(color color) | ||||
This signal is emitted when the fill (brush) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1465 | |||
/*! | ||||
\fn void QBarSet::borderColorChanged(QColor) | ||||
This signal is emitted when the line (pen) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onBorderColorChanged(color color) | ||||
This signal is emitted when the line (pen) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1465 | |||
/*! | ||||
\fn void QBarSet::labelColorChanged(QColor) | ||||
This signal is emitted when the text (label) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onLabelColorChanged(color color) | ||||
This signal is emitted when the text (label) color of the set has changed to \a color. | ||||
*/ | ||||
Tero Ahola
|
r1465 | |||
Marek Rosa
|
r1361 | /*! | ||
\fn void QBarSet::valuesAdded(int index, int count) | ||||
This signal is emitted when new values have been added to the set. | ||||
Parameter \a index indicates the position of the first inserted value. | ||||
Parameter \a count is the number of iserted values. | ||||
\sa append(), insert() | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onValuesAdded(int index, int count) | ||||
This signal is emitted when new values have been added to the set. | ||||
Parameter \a index indicates the position of the first inserted value. | ||||
Parameter \a count is the number of iserted values. | ||||
*/ | ||||
Marek Rosa
|
r1361 | |||
/*! | ||||
\fn void QBarSet::valuesRemoved(int index, int count) | ||||
This signal is emitted values have been removed from the set. | ||||
Parameter \a index indicates the position of the first removed value. | ||||
Parameter \a count is the number of removed values. | ||||
\sa remove() | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onValuesRemoved(int index, int count) | ||||
This signal is emitted values have been removed from the set. | ||||
Parameter \a index indicates the position of the first removed value. | ||||
Parameter \a count is the number of removed values. | ||||
*/ | ||||
Marek Rosa
|
r1361 | |||
/*! | ||||
\fn void QBarSet::valueChanged(int index) | ||||
This signal is emitted values the value in the set has been modified. | ||||
Parameter \a index indicates the position of the modified value. | ||||
\sa at() | ||||
*/ | ||||
Tero Ahola
|
r1489 | /*! | ||
\qmlsignal BarSet::onValueChanged(int index) | ||||
This signal is emitted values the value in the set has been modified. | ||||
Parameter \a index indicates the position of the modified value. | ||||
*/ | ||||
Marek Rosa
|
r1361 | |||
Tero Ahola
|
r1523 | /*! | ||
\qmlproperty int BarSet::count | ||||
The count of values on the barset | ||||
*/ | ||||
/*! | ||||
\qmlproperty QVariantList BarSet::values | ||||
The values of the barset. You can set either a list of reals or a list of points as values. If you set a list of | ||||
reals as values, the values are automatically completed to points by using the index of a value as it's | ||||
x-coordinate. For example: | ||||
\code | ||||
myBarSet1.values = [0, 5, 1, 5]; | ||||
myBarSet2.values = [Qt.point(0, 1), Qt.point(1, 5), Qt.point(2.2, 4.3)]; | ||||
\endcode | ||||
*/ | ||||
sauimone
|
r313 | /*! | ||
sauimone
|
r1429 | Constructs QBarSet with a label of \a label and with parent of \a parent | ||
sauimone
|
r313 | */ | ||
sauimone
|
r1429 | QBarSet::QBarSet(const QString label, QObject *parent) | ||
sauimone
|
r276 | : QObject(parent) | ||
sauimone
|
r1429 | ,d_ptr(new QBarSetPrivate(label,this)) | ||
sauimone
|
r169 | { | ||
} | ||||
sauimone
|
r980 | /*! | ||
Destroys the barset | ||||
*/ | ||||
Jani Honkonen
|
r944 | QBarSet::~QBarSet() | ||
{ | ||||
sauimone
|
r980 | // NOTE: d_ptr destroyed by QObject | ||
Jani Honkonen
|
r944 | } | ||
sauimone
|
r313 | /*! | ||
sauimone
|
r1429 | Sets new \a label for set. | ||
sauimone
|
r313 | */ | ||
sauimone
|
r1429 | void QBarSet::setLabel(const QString label) | ||
sauimone
|
r169 | { | ||
sauimone
|
r1429 | d_ptr->m_label = label; | ||
emit labelChanged(); | ||||
sauimone
|
r169 | } | ||
sauimone
|
r313 | |||
/*! | ||||
sauimone
|
r1429 | Returns label of the set. | ||
sauimone
|
r313 | */ | ||
sauimone
|
r1429 | QString QBarSet::label() const | ||
sauimone
|
r171 | { | ||
sauimone
|
r1429 | return d_ptr->m_label; | ||
sauimone
|
r171 | } | ||
sauimone
|
r169 | |||
sauimone
|
r1208 | /*! | ||
sauimone
|
r1580 | Appends new value \a value to the end of set. | ||
sauimone
|
r313 | */ | ||
sauimone
|
r993 | void QBarSet::append(const qreal value) | ||
sauimone
|
r169 | { | ||
sauimone
|
r1580 | // Convert to QPointF | ||
sauimone
|
r1601 | int index = d_ptr->m_values.count(); | ||
sauimone
|
r1580 | d_ptr->append(QPointF(d_ptr->m_values.count(), value)); | ||
Marek Rosa
|
r1602 | emit valuesAdded(index, 1); | ||
sauimone
|
r1167 | } | ||
sauimone
|
r1208 | /*! | ||
Marek Rosa
|
r1361 | Appends a list of reals to set. Works like append with single real value. The \a values in list | ||
sauimone
|
r1580 | are appended to end of barset | ||
sauimone
|
r1208 | \sa append() | ||
*/ | ||||
sauimone
|
r1500 | void QBarSet::append(const QList<qreal> &values) | ||
sauimone
|
r1167 | { | ||
int index = d_ptr->m_values.count(); | ||||
sauimone
|
r1353 | d_ptr->append(values); | ||
emit valuesAdded(index, values.count()); | ||||
sauimone
|
r993 | } | ||
/*! | ||||
sauimone
|
r1208 | Convinience operator. Same as append, with real \a value. | ||
\sa append() | ||||
sauimone
|
r993 | */ | ||
QBarSet& QBarSet::operator << (const qreal &value) | ||||
{ | ||||
sauimone
|
r1601 | append(value); | ||
sauimone
|
r1167 | return *this; | ||
} | ||||
Marek Rosa
|
r901 | /*! | ||
sauimone
|
r993 | Inserts new \a value on the \a index position. | ||
The value that is currently at this postion is moved to postion index + 1 | ||||
\sa remove() | ||||
Marek Rosa
|
r901 | */ | ||
sauimone
|
r993 | void QBarSet::insert(const int index, const qreal value) | ||
Marek Rosa
|
r662 | { | ||
sauimone
|
r1353 | d_ptr->insert(index, value); | ||
emit valuesAdded(index,1); | ||||
} | ||||
Marek Rosa
|
r901 | /*! | ||
Marek Rosa
|
r1361 | Removes \a count number of values from the set starting at \a index. | ||
sauimone
|
r993 | \sa insert() | ||
Marek Rosa
|
r901 | */ | ||
sauimone
|
r1514 | void QBarSet::remove(const int index, const int count) | ||
Marek Rosa
|
r663 | { | ||
sauimone
|
r1514 | int removedCount = d_ptr->remove(index,count); | ||
if (removedCount > 0) { | ||||
emit valuesRemoved(index,removedCount); | ||||
sauimone
|
r1353 | } | ||
sauimone
|
r1514 | return; | ||
Marek Rosa
|
r663 | } | ||
sauimone
|
r313 | /*! | ||
sauimone
|
r993 | Sets a new value \a value to set, indexed by \a index | ||
sauimone
|
r313 | */ | ||
sauimone
|
r993 | void QBarSet::replace(const int index, const qreal value) | ||
sauimone
|
r171 | { | ||
Tero Ahola
|
r1512 | if (index >= 0 && index < d_ptr->m_values.count()) { | ||
d_ptr->replace(index,value); | ||||
emit valueChanged(index); | ||||
} | ||||
sauimone
|
r1353 | } | ||
sauimone
|
r171 | |||
sauimone
|
r313 | /*! | ||
sauimone
|
r1580 | Returns value of set indexed by \a index. | ||
If the index is out of bounds 0.0 is returned. | ||||
sauimone
|
r313 | */ | ||
sauimone
|
r1580 | qreal QBarSet::at(const int index) const | ||
sauimone
|
r171 | { | ||
sauimone
|
r1168 | if (index < 0 || index >= d_ptr->m_values.count()) { | ||
sauimone
|
r1580 | return 0; | ||
sauimone
|
r1168 | } | ||
Tero Ahola
|
r1162 | |||
sauimone
|
r1580 | return d_ptr->m_values.at(index).y(); | ||
sauimone
|
r171 | } | ||
sauimone
|
r313 | /*! | ||
sauimone
|
r1580 | Returns value of set indexed by \a index. | ||
If the index is out of bounds 0.0 is returned. | ||||
sauimone
|
r313 | */ | ||
sauimone
|
r1580 | qreal QBarSet::operator [](const int index) const | ||
sauimone
|
r183 | { | ||
sauimone
|
r1580 | return at(index); | ||
sauimone
|
r993 | } | ||
/*! | ||||
Returns count of values in set. | ||||
*/ | ||||
int QBarSet::count() const | ||||
{ | ||||
return d_ptr->m_values.count(); | ||||
sauimone
|
r183 | } | ||
sauimone
|
r492 | /*! | ||
sauimone
|
r1580 | Returns sum of all values in barset. | ||
sauimone
|
r492 | */ | ||
sauimone
|
r934 | qreal QBarSet::sum() const | ||
sauimone
|
r438 | { | ||
qreal total(0); | ||||
Michal Klocek
|
r938 | for (int i=0; i < d_ptr->m_values.count(); i++) { | ||
sauimone
|
r1167 | total += d_ptr->m_values.at(i).y(); | ||
sauimone
|
r438 | } | ||
return total; | ||||
} | ||||
sauimone
|
r313 | /*! | ||
Sets pen for set. Bars of this set are drawn using \a pen | ||||
*/ | ||||
sauimone
|
r763 | void QBarSet::setPen(const QPen &pen) | ||
sauimone
|
r214 | { | ||
Michal Klocek
|
r938 | if(d_ptr->m_pen!=pen){ | ||
d_ptr->m_pen = pen; | ||||
sauimone
|
r1008 | emit d_ptr->updatedBars(); | ||
sauimone
|
r1353 | emit penChanged(); | ||
Michal Klocek
|
r938 | } | ||
sauimone
|
r214 | } | ||
sauimone
|
r313 | /*! | ||
Returns pen of the set. | ||||
*/ | ||||
sauimone
|
r473 | QPen QBarSet::pen() const | ||
sauimone
|
r214 | { | ||
Michal Klocek
|
r938 | return d_ptr->m_pen; | ||
sauimone
|
r214 | } | ||
sauimone
|
r313 | /*! | ||
Sets brush for the set. Bars of this set are drawn using \a brush | ||||
*/ | ||||
sauimone
|
r763 | void QBarSet::setBrush(const QBrush &brush) | ||
sauimone
|
r214 | { | ||
Michal Klocek
|
r938 | if(d_ptr->m_brush!=brush){ | ||
d_ptr->m_brush = brush; | ||||
sauimone
|
r1008 | emit d_ptr->updatedBars(); | ||
sauimone
|
r1353 | emit brushChanged(); | ||
Michal Klocek
|
r938 | } | ||
sauimone
|
r214 | } | ||
sauimone
|
r313 | /*! | ||
Returns brush of the set. | ||||
*/ | ||||
sauimone
|
r473 | QBrush QBarSet::brush() const | ||
sauimone
|
r214 | { | ||
Michal Klocek
|
r938 | return d_ptr->m_brush; | ||
sauimone
|
r214 | } | ||
sauimone
|
r820 | /*! | ||
sauimone
|
r839 | Sets \a brush of the values that are drawn on top of this barset | ||
sauimone
|
r820 | */ | ||
void QBarSet::setLabelBrush(const QBrush &brush) | ||||
{ | ||||
Michal Klocek
|
r938 | if(d_ptr->m_labelBrush!=brush){ | ||
d_ptr->m_labelBrush = brush; | ||||
sauimone
|
r1008 | emit d_ptr->updatedBars(); | ||
sauimone
|
r1353 | emit labelBrushChanged(); | ||
Michal Klocek
|
r938 | } | ||
sauimone
|
r820 | } | ||
/*! | ||||
Returns brush of the values that are drawn on top of this barset | ||||
*/ | ||||
QBrush QBarSet::labelBrush() const | ||||
{ | ||||
Michal Klocek
|
r938 | return d_ptr->m_labelBrush; | ||
sauimone
|
r820 | } | ||
/*! | ||||
sauimone
|
r839 | Sets the \a font for values that are drawn on top of this barset | ||
sauimone
|
r820 | */ | ||
void QBarSet::setLabelFont(const QFont &font) | ||||
{ | ||||
Michal Klocek
|
r938 | if(d_ptr->m_labelFont!=font) { | ||
d_ptr->m_labelFont = font; | ||||
sauimone
|
r1008 | emit d_ptr->updatedBars(); | ||
sauimone
|
r1353 | emit labelFontChanged(); | ||
Michal Klocek
|
r938 | } | ||
sauimone
|
r512 | } | ||
/*! | ||||
sauimone
|
r1493 | Returns the pen for values that are drawn on top of this barset | ||
sauimone
|
r512 | */ | ||
sauimone
|
r820 | QFont QBarSet::labelFont() const | ||
sauimone
|
r512 | { | ||
Michal Klocek
|
r938 | return d_ptr->m_labelFont; | ||
sauimone
|
r512 | } | ||
sauimone
|
r1493 | /*! | ||
Returns the color of the brush of barset. | ||||
*/ | ||||
Tero Ahola
|
r1465 | QColor QBarSet::color() | ||
{ | ||||
return brush().color(); | ||||
} | ||||
sauimone
|
r1493 | /*! | ||
Sets the \a color of brush for this barset | ||||
*/ | ||||
Tero Ahola
|
r1465 | void QBarSet::setColor(QColor color) | ||
{ | ||||
QBrush b = brush(); | ||||
if (b.color() != color) { | ||||
b.setColor(color); | ||||
setBrush(b); | ||||
emit colorChanged(color); | ||||
} | ||||
} | ||||
sauimone
|
r1493 | /*! | ||
Returns the color of pen of this barset | ||||
*/ | ||||
Tero Ahola
|
r1465 | QColor QBarSet::borderColor() | ||
{ | ||||
return pen().color(); | ||||
} | ||||
sauimone
|
r1493 | /*! | ||
Sets the color of pen for this barset | ||||
*/ | ||||
Tero Ahola
|
r1465 | void QBarSet::setBorderColor(QColor color) | ||
{ | ||||
QPen p = pen(); | ||||
if (p.color() != color) { | ||||
p.setColor(color); | ||||
setPen(p); | ||||
emit borderColorChanged(color); | ||||
} | ||||
} | ||||
sauimone
|
r1493 | /*! | ||
Returns the color of labels of this barset | ||||
*/ | ||||
Tero Ahola
|
r1465 | QColor QBarSet::labelColor() | ||
{ | ||||
return labelBrush().color(); | ||||
} | ||||
sauimone
|
r1493 | /*! | ||
Sets the color of labels for this barset | ||||
*/ | ||||
Tero Ahola
|
r1465 | void QBarSet::setLabelColor(QColor color) | ||
{ | ||||
QBrush b = labelBrush(); | ||||
if (b.color() != color) { | ||||
b.setColor(color); | ||||
setLabelBrush(b); | ||||
emit labelColorChanged(color); | ||||
} | ||||
} | ||||
Michal Klocek
|
r938 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
sauimone
|
r1429 | QBarSetPrivate::QBarSetPrivate(const QString label, QBarSet *parent) : QObject(parent), | ||
Michal Klocek
|
r938 | q_ptr(parent), | ||
sauimone
|
r1429 | m_label(label) | ||
Michal Klocek
|
r938 | { | ||
} | ||||
QBarSetPrivate::~QBarSetPrivate() | ||||
{ | ||||
} | ||||
sauimone
|
r1017 | |||
sauimone
|
r1353 | void QBarSetPrivate::append(QPointF value) | ||
{ | ||||
m_values.append(value); | ||||
emit restructuredBars(); | ||||
} | ||||
void QBarSetPrivate::append(QList<QPointF> values) | ||||
{ | ||||
for (int i=0; i<values.count(); i++) { | ||||
m_values.append(values.at(i)); | ||||
} | ||||
emit restructuredBars(); | ||||
} | ||||
void QBarSetPrivate::append(QList<qreal> values) | ||||
{ | ||||
int index = m_values.count(); | ||||
for (int i=0; i<values.count(); i++) { | ||||
m_values.append(QPointF(index,values.at(i))); | ||||
index++; | ||||
} | ||||
emit restructuredBars(); | ||||
} | ||||
void QBarSetPrivate::insert(const int index, const qreal value) | ||||
{ | ||||
m_values.insert(index, QPointF(index, value)); | ||||
emit restructuredBars(); | ||||
} | ||||
void QBarSetPrivate::insert(const int index, const QPointF value) | ||||
{ | ||||
m_values.insert(index, value); | ||||
emit restructuredBars(); | ||||
} | ||||
sauimone
|
r1514 | int QBarSetPrivate::remove(const int index, const int count) | ||
sauimone
|
r1353 | { | ||
sauimone
|
r1514 | int removeCount = count; | ||
if ((index <0) || (m_values.count() == 0)) { | ||||
// Invalid index or not values in list, remove nothing. | ||||
return 0; | ||||
} else if ((index + count) > m_values.count()) { | ||||
// Trying to remove more items than list has. Limit amount to be removed. | ||||
removeCount = m_values.count() - index; | ||||
sauimone
|
r1353 | } | ||
sauimone
|
r1514 | |||
int c = 0; | ||||
while (c < removeCount) { | ||||
sauimone
|
r1353 | m_values.removeAt(index); | ||
sauimone
|
r1514 | c++; | ||
sauimone
|
r1353 | } | ||
emit restructuredBars(); | ||||
sauimone
|
r1514 | return removeCount; | ||
sauimone
|
r1353 | } | ||
void QBarSetPrivate::replace(const int index, const qreal value) | ||||
{ | ||||
m_values.replace(index,QPointF(index,value)); | ||||
emit updatedBars(); | ||||
} | ||||
void QBarSetPrivate::replace(const int index, const QPointF value) | ||||
{ | ||||
m_values.replace(index,value); | ||||
emit updatedBars(); | ||||
} | ||||
sauimone
|
r1681 | qreal QBarSetPrivate::pos(const int index) | ||
sauimone
|
r1603 | { | ||
sauimone
|
r1681 | if (index < 0 || index >= m_values.count()) { | ||
return 0; | ||||
} | ||||
sauimone
|
r1603 | |||
sauimone
|
r1681 | return m_values.at(index).x(); | ||
sauimone
|
r1603 | } | ||
sauimone
|
r1681 | qreal QBarSetPrivate::value(const int index) | ||
{ | ||||
if (index < 0 || index >= m_values.count()) { | ||||
return 0; | ||||
} | ||||
return m_values.at(index).y(); | ||||
} | ||||
sauimone
|
r1603 | |||
sauimone
|
r239 | #include "moc_qbarset.cpp" | ||
Michal Klocek
|
r938 | #include "moc_qbarset_p.cpp" | ||
Tero Ahola
|
r737 | |||
sauimone
|
r169 | QTCOMMERCIALCHART_END_NAMESPACE | ||