##// END OF EJS Templates
Fixes and tests to Interval axis
Fixes and tests to Interval axis

File last commit:

r1701:49d19bd1233e
r1708:f5ae73793525
Show More
chartintervalsaxisy_p.h
55 lines | 1.5 KiB | text/x-c | CLexer
/ src / axis / intervalsaxis / chartintervalsaxisy_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.
Marek Rosa
QIntervalsAxis working somewhat
r1701 #ifndef CHARTINTERVALAXISY_H
#define CHARTINTERVALAXISY_H
Michal Klocek
Adds new API classes...
r1540
Marek Rosa
QIntervalsAxis working somewhat
r1701 #include "chartaxis_p.h"
Michal Klocek
Adds new API classes...
r1540
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Marek Rosa
QIntervalsAxis working somewhat
r1701 class QAbstractAxis;
class ChartPresenter;
Michal Klocek
Refactor CategoriesAxis to BarCategoriesAxis part 2 of 2
r1613
Marek Rosa
QIntervalsAxis working somewhat
r1701 class ChartIntervalAxisY : public ChartAxis
Michal Klocek
Adds new API classes...
r1540 {
public:
Marek Rosa
QIntervalsAxis working somewhat
r1701 ChartIntervalAxisY(QAbstractAxis *axis, ChartPresenter *presenter);
~ChartIntervalAxisY();
sauimone
refactoring axises
r1566
Marek Rosa
QIntervalsAxis working somewhat
r1701 AxisType axisType() const { return Y_AXIS;}
Michal Klocek
Adds new API classes...
r1540
Marek Rosa
QIntervalsAxis working somewhat
r1701 protected:
QVector<qreal> calculateLayout() const;
void updateGeometry();
Michal Klocek
Adds new API classes...
r1540 };
QTCOMMERCIALCHART_END_NAMESPACE
Marek Rosa
QIntervalsAxis working somewhat
r1701 #endif /* CHARTINTERVALAXISY_H */