##// END OF EJS Templates
missing #ifndef's in themes
missing #ifndef's in themes

File last commit:

r775:02f25710c73d
r795:5d81932a6b14
Show More
declarativebarseries.h
39 lines | 762 B | text/x-c | CLexer
/ qmlplugin / declarativebarseries.h
Tero Ahola
Added QML api for bar series
r646 #ifndef DECLARATIVEBARSERIES_H
#define DECLARATIVEBARSERIES_H
#include "qchartglobal.h"
#include <QDeclarativeItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QChart;
class QBarSeries;
class DeclarativeBarSeries : public QDeclarativeItem
{
Q_OBJECT
Tero Ahola
QML bar series categories
r726 Q_PROPERTY(QStringList barCategories READ barCategories WRITE setBarCategories)
Tero Ahola
Added QML api for bar series
r646
public:
explicit DeclarativeBarSeries(QDeclarativeItem *parent = 0);
Tero Ahola
QML bar series categories
r726 public: // from QDeclarativeParserStatus
void componentComplete();
public:
void setBarCategories(QStringList categories);
QStringList barCategories();
sauimone
Q_SIGNALS and Q_SLOTS
r775 Q_SIGNALS:
Tero Ahola
Added QML api for bar series
r646
sauimone
Q_SIGNALS and Q_SLOTS
r775 public Q_SLOTS:
Tero Ahola
Added QML api for bar series
r646
Tero Ahola
QML bar series categories
r726 public:
Tero Ahola
Added QML api for bar series
r646 QChart *m_chart;
QBarSeries *m_series;
Tero Ahola
QML bar series categories
r726 QStringList m_categories;
Tero Ahola
Added QML api for bar series
r646 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // DECLARATIVEBARSERIES_H