##// END OF EJS Templates
Fix vanishing labels for first and last ticks....
Fix vanishing labels for first and last ticks. Extra space must be reserved by layout for the axes that have wide labels for first or last tick. Changed the logic how axis sizeHint is interpreted to make the previously irrelevant height or width (depending on orientation) of the sizeHint to indicate how far the widest label extends past the first/last tick, and adjust the grid size accordingly in layout. Reviewed-by: Mika Salmela

File last commit:

r2432:53927f716a3d
r2443:5b27b7b1d72a RC2_1.2.1
Show More
logxlogydomain_p.h
79 lines | 2.5 KiB | text/x-c | CLexer
/ src / domain / logxlogydomain_p.h
Jani Honkonen
Add license headers
r794 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
Jani Honkonen
Add license headers
r794 ** 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$
**
****************************************************************************/
unknown
Added missing warning about private implementation
r1366 // 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
Domains added
r2275 #ifndef LOGXLOGYDOMAIN_H
#define LOGXLOGYDOMAIN_H
#include "abstractdomain_p.h"
Michal Klocek
Refactor domain model...
r439 #include <QRectF>
#include <QSizeF>
Michal Klocek
Refactors qchart , adds line animation...
r131
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Marek Rosa
Domains added
r2275 class QTCOMMERCIALCHART_AUTOTEST_EXPORT LogXLogYDomain: public AbstractDomain
Jani Honkonen
astyle and manual coding style fixes for src-folder
r2097 {
Michal Klocek
Refactor domain model...
r439 Q_OBJECT
Michal Klocek
Refactors qchart , adds line animation...
r131 public:
Marek Rosa
Domains added
r2275 explicit LogXLogYDomain(QObject *object = 0);
virtual ~LogXLogYDomain();
Michal Klocek
Refactors internals...
r2273
Michal Klocek
Adds logdomains to factory method
r2287 DomainType type(){ return AbstractDomain::LogXLogYDomain;}
Marek Rosa
Added domain->type() implementation for log domains
r2286
Michal Klocek
Refactor domain model...
r439 void setRange(qreal minX, qreal maxX, qreal minY, qreal maxY);
Michal Klocek
Refactors internals...
r2273
Marek Rosa
Domains added
r2275 friend bool QTCOMMERCIALCHART_AUTOTEST_EXPORT operator== (const LogXLogYDomain &domain1, const LogXLogYDomain &domain2);
friend bool QTCOMMERCIALCHART_AUTOTEST_EXPORT operator!= (const LogXLogYDomain &domain1, const LogXLogYDomain &domain2);
friend QDebug QTCOMMERCIALCHART_AUTOTEST_EXPORT operator<<(QDebug dbg, const LogXLogYDomain &domain);
Michal Klocek
Refactor domain model...
r439
Michal Klocek
Refactors internals...
r2273 void zoomIn(const QRectF &rect);
void zoomOut(const QRectF &rect);
void move(qreal dx, qreal dy);
Marek Rosa
Negative values with log axis handled
r2356 QPointF calculateGeometryPoint(const QPointF &point, bool &ok) const;
Michal Klocek
Refactors internals...
r2273 QPointF calculateDomainPoint(const QPointF &point) const;
QVector<QPointF> calculateGeometryPoints(const QList<QPointF>& vector) const;
Marek Rosa
Added attach/dettach axis domain implementations
r2290 bool attachAxis(QAbstractAxis* axis);
bool detachAxis(QAbstractAxis* axis);
public Q_SLOTS:
void handleVerticalAxisBaseChanged(qreal baseY);
void handleHorizontalAxisBaseChanged(qreal baseX);
Michal Klocek
Refactor domain model...
r439 private:
Marek Rosa
QChart mapping functions: return QPoint(0, 0) if series type is Pie...
r2351 qreal m_logLeftX;
qreal m_logRightX;
Marek Rosa
Domains added
r2275 qreal m_logBaseX;
Marek Rosa
QChart mapping functions: return QPoint(0, 0) if series type is Pie...
r2351 qreal m_logLeftY;
qreal m_logRightY;
Marek Rosa
Domains added
r2275 qreal m_logBaseY;
Michal Klocek
Refactors qchart , adds line animation...
r131 };
QTCOMMERCIALCHART_END_NAMESPACE
Marek Rosa
Domains added
r2275 #endif // LOGXLOGYDOMAIN_H