##// END OF EJS Templates
Chartdataset fixes + tst update
Chartdataset fixes + tst update

File last commit:

r1566:6a772a66a522
r1567:b9dcdbcfffe6
Show More
qcategoriesaxis_p.h
80 lines | 2.2 KiB | text/x-c | CLexer
/ src / axis / qcategoriesaxis_p.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$
**
****************************************************************************/
// W A R N I N G
// -------------
//
// This file is not part of the QtCommercial Chart API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
#ifndef QCATEGORIESAXIS_P_H
#define QCATEGORIESAXIS_P_H
#include "qcategoriesaxis.h"
#include "qabstractaxis_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QCategoriesAxisPrivate : public QAbstractAxisPrivate
{
Q_OBJECT
public:
QCategoriesAxisPrivate(QCategoriesAxis *q);
~QCategoriesAxisPrivate();
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556 public:
ChartAxis* createGraphics(ChartPresenter* presenter);
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 private:
sauimone
refactoring axises
r1566 void setMinCategory(const QString& minCategory);
void setMaxCategory(const QString& maxCategory);
void setRangeCategory(const QString& minCategory, const QString& maxCategory);
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 //range handling
sauimone
refactoring axises
r1566 void setMin(const qreal min);
void setMax(const qreal max);
void setRange(const qreal min, const qreal max);
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 int ticksCount() const;
sauimone
refactoring axises
r1566 Q_SIGNALS:
void changed(qreal min, qreal max, int tickCount,bool niceNumbers);
public Q_SLOTS:
void handleAxisRangeChanged(qreal min, qreal max,int count);
Michal Klocek
Adds new API classes...
r1540 private:
QStringList m_categories;
QString m_minCategory;
QString m_maxCategory;
sauimone
refactoring axises
r1566 // qreal m_rangeMin;
// qreal m_rangeMax;
Michal Klocek
Adds new API classes...
r1540
private:
Q_DECLARE_PUBLIC(QCategoriesAxis)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QCATEGORIESAXIS_P_H