##// END OF EJS Templates
minor typo
minor typo

File last commit:

r1550:a73a407edc1b
r1559:e0a34be28be0
Show More
qcategoriesaxis.h
70 lines | 2.0 KiB | text/x-c | CLexer
/****************************************************************************
**
** 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
Q_PROPERTY(QStringList categories READ categories WRITE setCategories NOTIFY categoriesChanged)
public:
explicit QCategoriesAxis(QObject *parent = 0);
~QCategoriesAxis();
protected:
QCategoriesAxis(QCategoriesAxisPrivate &d,QObject *parent = 0);
public:
AxisType type() const;
void append(const QStringList &categories);
void append(const QString &category);
void remove(const QString &category);
void insert(int index, const QString &category);
void clear();
void setCategories(const QStringList &categories);
QStringList categories();
int count() const;
QString at(int index) const;
//range handling convenience functions
void setMin(const QString& minCategory);
void setMax(const QString& maxCategory);
void setRange(const QString& minCategory, const QString& maxCategory);
Q_SIGNALS:
void categoriesChanged();
private:
Q_DECLARE_PRIVATE(QCategoriesAxis)
Q_DISABLE_COPY(QCategoriesAxis)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QCATEGORIESAXIS_H