##// END OF EJS Templates
Add dialog of chartwidgettest now remembers selections
Add dialog of chartwidgettest now remembers selections

File last commit:

r173:5bd6f6e4373b
r376:173abb78cc61
Show More
qbarcategory.h
28 lines | 466 B | text/x-c | CLexer
#ifndef QBARCATEGORY_H
#define QBARCATEGORY_H
#include "qchartglobal.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QTCOMMERCIALCHART_EXPORT QBarCategory // TODO?: : public QObject
{
// Q_OBJECT;
public:
QBarCategory();
QBarCategory& operator << (const QString &label);
// Number of items in category
int count();
QString label(int category);
public:
QList<QString> mList;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARCATEGORY_H