##// END OF EJS Templates
Remove createAxis from subclassess, if it is not nessery
Remove createAxis from subclassess, if it is not nessery

File last commit:

r1550:a73a407edc1b
r1560:e99e16c1c580
Show More
qcategoriesaxis.h
70 lines | 2.0 KiB | text/x-c | CLexer
/ src / axis / qcategoriesaxis.h
Michal Klocek
Adds new API classes...
r1540 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QCATEGORIESAXIS_H
#define QCATEGORIESAXIS_H
#include "qabstractaxis.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QCategoriesAxisPrivate;
class QTCOMMERCIALCHART_EXPORT QCategoriesAxis : public QAbstractAxis
{
Q_OBJECT
Tero Ahola
Added value and category axis to QML api
r1550 Q_PROPERTY(QStringList categories READ categories WRITE setCategories NOTIFY categoriesChanged)
Michal Klocek
Adds new API classes...
r1540
public:
explicit QCategoriesAxis(QObject *parent = 0);
~QCategoriesAxis();
protected:
QCategoriesAxis(QCategoriesAxisPrivate &d,QObject *parent = 0);
public:
AxisType type() const;
Michal Klocek
Refactors QAxis to QAbstractAxis...
r1541 void append(const QStringList &categories);
Michal Klocek
Adds new API classes...
r1540 void append(const QString &category);
void remove(const QString &category);
void insert(int index, const QString &category);
void clear();
Tero Ahola
Added value and category axis to QML api
r1550 void setCategories(const QStringList &categories);
QStringList categories();
Michal Klocek
Refactors QAxis to QAbstractAxis...
r1541 int count() const;
Michal Klocek
Adds new API classes...
r1540
QString at(int index) const;
//range handling convenience functions
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 void setMin(const QString& minCategory);
void setMax(const QString& maxCategory);
void setRange(const QString& minCategory, const QString& maxCategory);
Michal Klocek
Refactors QAxis to QAbstractAxis...
r1541
Michal Klocek
Adds new API classes...
r1540 Q_SIGNALS:
void categoriesChanged();
private:
Q_DECLARE_PRIVATE(QCategoriesAxis)
Q_DISABLE_COPY(QCategoriesAxis)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QCATEGORIESAXIS_H