##// END OF EJS Templates
Adaptive layout to legend. Tries to fit all items inside given maximum size
Adaptive layout to legend. Tries to fit all items inside given maximum size

File last commit:

r587:f0e1920224d0
r626:b05202e4f2ef
Show More
qbarset.cpp
193 lines | 3.5 KiB | text/x-c | CppLexer
#include "qbarset.h"
#include <QDebug>
#include <QToolTip>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
/*!
\class QBarSet
\brief part of QtCommercial chart API.
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.
\mainclass
\sa QBarSeries, QStackedBarSeries, QPercentBarSeries
*/
/*!
\fn void QBarSet::clicked(QString category)
\brief signals that set has been clicked
Parameter \a category describes on which category was clicked
*/
/*!
\fn void QBarSet::rightClicked(QString category)
\brief signals that set has been clicked with right mouse button
Parameter \a category describes on which category was clicked
*/
/*!
\fn void QBarSet::hoverEnter(QPoint pos)
\brief signals that mouse has entered over the set at position \a pos.
*/
/*!
\fn void QBarSet::hoverLeave()
\brief signals that mouse has left from the set.
*/
/*!
\fn void QBarSet::toggleFloatingValues()
\brief \internal
*/
/*!
\fn void QBarSet::showToolTip(QPoint pos, QString tip)
\brief \internal \a pos \a tip
*/
/*!
Constructs QBarSet with a name of \a name and with parent of \a parent
*/
QBarSet::QBarSet(QString name, QObject *parent)
: QObject(parent)
,mName(name)
{
}
/*!
Sets new \a name for set.
*/
void QBarSet::setName(QString name)
{
mName = name;
}
/*!
Returns name of the set.
*/
QString QBarSet::name()
{
return mName;
}
/*!
Appends new value \a value to the end of set.
*/
QBarSet& QBarSet::operator << (const qreal &value)
{
mValues.append(value);
return *this;
}
/*!
Returns count of values in set.
*/
int QBarSet::count()
{
return mValues.count();
}
/*!
Returns value of set indexed by \a index
*/
qreal QBarSet::valueAt(int index)
{
return mValues.at(index);
}
/*!
Sets a new value \a value to set, indexed by \a index
*/
void QBarSet::setValue(int index, qreal value)
{
mValues.replace(index,value);
}
/*!
Returns total sum of all values in barset.
*/
qreal QBarSet::total()
{
qreal total(0);
for (int i=0; i<mValues.count(); i++) {
total += mValues.at(i);
}
return total;
}
/*!
Sets pen for set. Bars of this set are drawn using \a pen
*/
void QBarSet::setPen(const QPen pen)
{
mPen = pen;
emit changed();
}
/*!
Returns pen of the set.
*/
QPen QBarSet::pen() const
{
return mPen;
}
/*!
Sets brush for the set. Bars of this set are drawn using \a brush
*/
void QBarSet::setBrush(const QBrush brush)
{
mBrush = brush;
emit changed();
}
/*!
Returns brush of the set.
*/
QBrush QBarSet::brush() const
{
return mBrush;
}
/*!
Sets the pen for floating values that are drawn on top of this set
*/
void QBarSet::setFloatingValuePen(const QPen pen)
{
mFloatingValuePen = pen;
}
/*!
Returns the pen for floating values that are drawn on top of this set
*/
QPen QBarSet::floatingValuePen() const
{
return mFloatingValuePen;
}
/*!
\internal \a pos
*/
void QBarSet::barHoverEnterEvent(QPoint pos)
{
emit showToolTip(pos, mName);
emit hoverEnter(pos);
}
/*!
\internal
*/
void QBarSet::barHoverLeaveEvent()
{
// Emit signal to user of charts
emit hoverLeave();
}
#include "moc_qbarset.cpp"
QTCOMMERCIALCHART_END_NAMESPACE