domain_p.h
93 lines
| 3.1 KiB
| text/x-c
|
CLexer
/ src / domain_p.h
Jani Honkonen
|
r794 | /**************************************************************************** | ||
** | ||||
** 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$ | ||||
** | ||||
****************************************************************************/ | ||||
Michal Klocek
|
r969 | #ifndef DOMAIN_H | ||
#define DOMAIN_H | ||||
Michal Klocek
|
r131 | #include "qchartglobal.h" | ||
Michal Klocek
|
r439 | #include <QRectF> | ||
#include <QSizeF> | ||||
Michal Klocek
|
r996 | #include <QDebug> | ||
Michal Klocek
|
r131 | |||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
Michal Klocek
|
r1050 | class QTCOMMERCIALCHART_AUTOTEST_EXPORT Domain: public QObject { | ||
Michal Klocek
|
r439 | Q_OBJECT | ||
Michal Klocek
|
r131 | public: | ||
Michal Klocek
|
r439 | explicit Domain(QObject* object=0); | ||
virtual ~Domain(); | ||||
void setRange(qreal minX, qreal maxX, qreal minY, qreal maxY); | ||||
Michal Klocek
|
r678 | void setRange(qreal minX, qreal maxX, qreal minY, qreal maxY, int tickXCount, int tickYCount); | ||
Michal Klocek
|
r439 | void setRangeX(qreal min, qreal max); | ||
Michal Klocek
|
r679 | void setRangeX(qreal min, qreal max, int tickCount); | ||
Michal Klocek
|
r439 | void setRangeY(qreal min, qreal max); | ||
Michal Klocek
|
r679 | void setRangeY(qreal min, qreal max, int tickCount); | ||
Michal Klocek
|
r439 | void setMinX(qreal min); | ||
void setMaxX(qreal max); | ||||
void setMinY(qreal min); | ||||
void setMaxY(qreal max); | ||||
Tero Ahola
|
r760 | qreal minX() const { return m_minX; } | ||
qreal maxX() const { return m_maxX; } | ||||
qreal minY() const { return m_minY; } | ||||
qreal maxY() const { return m_maxY; } | ||||
Michal Klocek
|
r439 | |||
qreal spanX() const; | ||||
qreal spanY() const; | ||||
bool isEmpty() const; | ||||
Michal Klocek
|
r531 | int tickXCount() const {return m_tickXCount;} | ||
int tickYCount() const {return m_tickYCount;} | ||||
Michal Klocek
|
r1067 | friend bool QTCOMMERCIALCHART_AUTOTEST_EXPORT operator== (const Domain &domain1, const Domain &domain2); | ||
friend bool QTCOMMERCIALCHART_AUTOTEST_EXPORT operator!= (const Domain &domain1, const Domain &domain2); | ||||
friend QDebug QTCOMMERCIALCHART_AUTOTEST_EXPORT operator<<(QDebug dbg, const Domain &domain); | ||||
Michal Klocek
|
r439 | |||
void zoomIn(const QRectF& rect, const QSizeF& size); | ||||
void zoomOut(const QRectF& rect, const QSizeF& size); | ||||
Michal Klocek
|
r1267 | void move(qreal dx,qreal dy,const QSizeF& size); | ||
Michal Klocek
|
r439 | |||
sauimone
|
r775 | Q_SIGNALS: | ||
Michal Klocek
|
r439 | void domainChanged(qreal minX, qreal maxX, qreal minY, qreal maxY); | ||
Michal Klocek
|
r531 | void rangeXChanged(qreal min, qreal max, int tickXCount); | ||
void rangeYChanged(qreal min, qreal max, int tickYCount); | ||||
sauimone
|
r775 | public Q_SLOTS: | ||
Michal Klocek
|
r687 | void handleAxisXChanged(qreal min,qreal max,int tickXCount = 5,bool niceNumbers = false); | ||
void handleAxisYChanged(qreal min,qreal max,int tickYCount = 5,bool niceNumbers = false); | ||||
Michal Klocek
|
r678 | |||
private: | ||||
Michal Klocek
|
r1078 | void looseNiceNumbers(qreal &min, qreal &max, int &ticksCount) const; | ||
qreal niceNumber(qreal x,bool celing) const; | ||||
Michal Klocek
|
r439 | |||
private: | ||||
qreal m_minX; | ||||
qreal m_maxX; | ||||
qreal m_minY; | ||||
qreal m_maxY; | ||||
Michal Klocek
|
r531 | int m_tickXCount; | ||
int m_tickYCount; | ||||
Michal Klocek
|
r1078 | bool m_niceXNumbers; | ||
bool m_niceYNumbers; | ||||
Michal Klocek
|
r131 | }; | ||
QTCOMMERCIALCHART_END_NAMESPACE | ||||
#endif | ||||