##// END OF EJS Templates
Donut support simplified. Examples updated
Donut support simplified. Examples updated

File last commit:

r1697:b1c06caff815
r1838:886026b75e22
Show More
widget.h
28 lines | 403 B | text/x-c | CLexer
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693 #ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 #include <QPieSeries>
class QTimer;
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693
QTCOMMERCIALCHART_USE_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void updateRotation();
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 void explodeSlice(bool exploded);
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693
private:
Marek Rosa
Removed QDonutGroup class. Added Donut Drill down example
r1697 QList<QPieSeries *> m_donuts;
QTimer *updateTimer;
Marek Rosa
Added insert, remove and other common methodds to QDonutGroup. Donut example added
r1693 };
#endif // WIDGET_H