##// END OF EJS Templates
Refactor CategoriesAxis to BarCategoriesAxis part 1 of 2
Refactor CategoriesAxis to BarCategoriesAxis part 1 of 2

File last commit:

r1612:859a2158b75a
r1612:859a2158b75a
Show More
qcategoriesaxis_p.h
74 lines | 2.0 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
Michal Klocek
Refactor CategoriesAxis to BarCategoriesAxis part 1 of 2
r1612 class QBarCategoriesAxisPrivate : public QAbstractAxisPrivate
Michal Klocek
Adds new API classes...
r1540 {
Q_OBJECT
public:
Michal Klocek
Refactor CategoriesAxis to BarCategoriesAxis part 1 of 2
r1612 QBarCategoriesAxisPrivate(QBarCategoriesAxis *q);
~QBarCategoriesAxisPrivate();
Michal Klocek
Adds new API classes...
r1540
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556 public:
ChartAxis* createGraphics(ChartPresenter* presenter);
Michal Klocek
Refactor categories implementation...
r1611 void emitRange();
Michal Klocek
Refactors core to support mulitpile axis and domains...
r1556
Michal Klocek
Refactors setMin setMax setRange to be pure viritual on private implementation
r1544 private:
//range handling
sauimone
QAbstractAxis: variants strike back.
r1578 void setMin(const QVariant &min);
void setMax(const QVariant &max);
Michal Klocek
Refactor categories implementation...
r1611 void setRange(const QVariant &min, const QVariant &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;
private:
Michal Klocek
Refactor CategoriesAxis to BarCategoriesAxis part 1 of 2
r1612 Q_DECLARE_PUBLIC(QBarCategoriesAxis)
Michal Klocek
Adds new API classes...
r1540 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QCATEGORIESAXIS_P_H