##// END OF EJS Templates
Added missing example files
Added missing example files

File last commit:

r430:ec0910b997a4
r435:0d574f2c3ab8
Show More
qbarset.cpp
163 lines | 2.9 KiB | text/x-c | CppLexer
sauimone
proof of concept implementation for barset and barcategory
r169 #include "qbarset.h"
sauimone
signals and slots for bars and sets
r239 #include <QDebug>
sauimone
tooltip for barcharts
r283 #include <QToolTip>
sauimone
proof of concept implementation for barset and barcategory
r169
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
Documentation for bar charts
r313 /*!
\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.
sauimone
updated documentation and examples for barcharts
r325 \mainclass
sauimone
replaced qbarcategory with qstringlist
r377 \sa QBarSeries, QStackedBarSeries, QPercentBarSeries
sauimone
Documentation for bar charts
r313 */
/*!
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 \fn void QBarSet::clicked(QString category)
sauimone
Documentation for bar charts
r313 \brief signals that set has been clicked
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 Parameter \a category describes on which category was clicked
sauimone
Documentation for bar charts
r313 */
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
/*!
\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
*/
sauimone
Documentation for bar charts
r313 /*!
\fn void QBarSet::hoverEnter(QPoint pos)
\brief signals that mouse has entered over the set at position \a pos.
*/
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
sauimone
Documentation for bar charts
r313 /*!
\fn void QBarSet::hoverLeave()
\brief signals that mouse has left from the set.
*/
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
sauimone
Documentation for bar charts
r313 /*!
\fn void QBarSet::toggleFloatingValues()
sauimone
Updated barchart documentation
r319 \brief \internal
sauimone
Documentation for bar charts
r313 */
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425
sauimone
Documentation for bar charts
r313 /*!
\fn void QBarSet::showToolTip(QPoint pos, QString tip)
sauimone
Updated barchart documentation
r319 \brief \internal \a pos \a tip
sauimone
Documentation for bar charts
r313 */
/*!
Constructs QBarSet with a name of \a name and with parent of \a parent
*/
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 QBarSet::QBarSet(QString name, QObject *parent)
sauimone
updated barchart examples. minor fixes
r276 : QObject(parent)
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 ,mName(name)
sauimone
proof of concept implementation for barset and barcategory
r169 {
}
sauimone
Documentation for bar charts
r313 /*!
Sets new \a name for set.
*/
sauimone
proof of concept implementation for barset and barcategory
r169 void QBarSet::setName(QString name)
{
mName = name;
}
sauimone
Documentation for bar charts
r313
/*!
Returns name of the set.
*/
sauimone
Barset and barcategory implememtation. Updated test application
r171 QString QBarSet::name()
{
return mName;
}
sauimone
proof of concept implementation for barset and barcategory
r169
sauimone
Documentation for bar charts
r313 /*!
Appends new value \a value to the end of set.
*/
sauimone
proof of concept implementation for barset and barcategory
r169 QBarSet& QBarSet::operator << (const qreal &value)
{
mValues.append(value);
return *this;
}
sauimone
Documentation for bar charts
r313 /*!
Returns count of values in set.
*/
sauimone
Barset and barcategory implememtation. Updated test application
r171 int QBarSet::count()
{
return mValues.count();
}
sauimone
Documentation for bar charts
r313 /*!
Returns value of set indexed by \a index
*/
sauimone
Barset and barcategory implememtation. Updated test application
r171 qreal QBarSet::valueAt(int index)
{
return mValues.at(index);
}
sauimone
Documentation for bar charts
r313 /*!
Sets a new value \a value to set, indexed by \a index
*/
sauimone
brush support for bargroups
r183 void QBarSet::setValue(int index, qreal value)
{
mValues.replace(index,value);
}
sauimone
Documentation for bar charts
r313 /*!
Sets pen for set. Bars of this set are drawn using \a pen
*/
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 void QBarSet::setPen(QPen pen)
sauimone
Added pen & brush to QBarSet
r214 {
mPen = pen;
}
sauimone
Documentation for bar charts
r313 /*!
Returns pen of the set.
*/
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 QPen QBarSet::pen()
sauimone
Added pen & brush to QBarSet
r214 {
return mPen;
}
sauimone
Documentation for bar charts
r313 /*!
Sets brush for the set. Bars of this set are drawn using \a brush
*/
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 void QBarSet::setBrush(QBrush brush)
sauimone
Added pen & brush to QBarSet
r214 {
mBrush = brush;
}
sauimone
Documentation for bar charts
r313 /*!
Returns brush of the set.
*/
sauimone
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
r357 QBrush QBarSet::brush()
sauimone
Added pen & brush to QBarSet
r214 {
return mBrush;
}
sauimone
Documentation for bar charts
r313 /*!
sauimone
Updated barchart documentation
r319 \internal \a pos
sauimone
Documentation for bar charts
r313 */
sauimone
right click feature for bar series. Enables drilldown
r412 void QBarSet::barHoverEnterEvent(QPoint pos)
sauimone
updated barchart examples. minor fixes
r276 {
sauimone
enablers for tooltip and floating values, bug fixing, updated examples. tidying up the code
r296 emit showToolTip(pos, mName);
sauimone
moved tooltip to presenter
r288 emit hoverEnter(pos);
sauimone
updated barchart examples. minor fixes
r276 }
sauimone
Documentation for bar charts
r313 /*!
sauimone
Updated barchart documentation
r319 \internal
sauimone
Documentation for bar charts
r313 */
sauimone
right click feature for bar series. Enables drilldown
r412 void QBarSet::barHoverLeaveEvent()
sauimone
updated barchart examples. minor fixes
r276 {
sauimone
moved tooltip to presenter
r288 // Emit signal to user of charts
emit hoverLeave();
sauimone
updated barchart examples. minor fixes
r276 }
sauimone
signals and slots for bars and sets
r239 #include "moc_qbarset.cpp"
sauimone
proof of concept implementation for barset and barcategory
r169 QTCOMMERCIALCHART_END_NAMESPACE