##// END OF EJS Templates
build fix
build fix

File last commit:

r679:2f2494d0880e
r729:3294d4ff177c
Show More
bar.cpp
37 lines | 829 B | text/x-c | CppLexer
sauimone
renamed bar.h to bar_p.h
r118 #include "bar_p.h"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 #include <QDebug>
Michal Klocek
minor.
r59 #include <QPainter>
sauimone
tooltip for barcharts
r283 #include <QGraphicsSceneEvent>
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 Bar::Bar(QString category, QGraphicsItem *parent)
Michal Klocek
Refactors barchart axis hadnling...
r679 : QGraphicsRectItem(parent),
Jani Honkonen
We have so many stupid warnings that "treat warnings as errors" flag is needed...
r609 mCategory(category)
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
sauimone
right click feature for bar series. Enables drilldown
r412 setAcceptedMouseButtons(Qt::LeftButton|Qt::RightButton);
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 setAcceptHoverEvents(true);
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 }
sauimone
right click feature for bar series. Enables drilldown
r412 void Bar::mousePressEvent(QGraphicsSceneMouseEvent* event)
sauimone
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
r256 {
sauimone
right click feature for bar series. Enables drilldown
r412 if (event->button() == Qt::LeftButton) {
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 emit clicked(mCategory);
sauimone
right click feature for bar series. Enables drilldown
r412 } else if (event->button() == Qt::RightButton) {
sauimone
Better way to enable features to user. Do less, but expose signals to user and allow user to descide what to do.
r425 emit rightClicked(mCategory);
sauimone
right click feature for bar series. Enables drilldown
r412 }
sauimone
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
r256 }
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 void Bar::hoverEnterEvent(QGraphicsSceneHoverEvent* event)
sauimone
updated barchart examples. minor fixes
r276 {
sauimone
tooltip for barcharts
r283 emit hoverEntered(event->lastScreenPos());
sauimone
updated barchart examples. minor fixes
r276 }
sauimone
tooltip for barcharts
r283 void Bar::hoverLeaveEvent(QGraphicsSceneHoverEvent* /*event*/)
sauimone
updated barchart examples. minor fixes
r276 {
sauimone
tooltip for barcharts
r283 emit hoverLeaved();
sauimone
updated barchart examples. minor fixes
r276 }
sauimone
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
r256 #include "moc_bar_p.cpp"
sauimone
signals and slots for bars and sets
r239
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 QTCOMMERCIALCHART_END_NAMESPACE