##// END OF EJS Templates
charts: Follow Qt's already-existent -developer-build option....
charts: Follow Qt's already-existent -developer-build option. This means that rebuilding the entirety of Qt with -developer-build will get us all autotests. Furthermore, it fixes the situation on OS X where a debug_and_release build wouldn't actually fully link. In addition, we clean up the tests that were stubbed when internals aren't available to just not build/run them at all by checking private_tests. Change-Id: I5701559cd91df842f78346d7d6ad9295bee587d0 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2855:aa5aba329d30
r2855:aa5aba329d30
Show More
xlogydomain_p.h
84 lines | 2.9 KiB | text/x-c | CLexer
Miikka Heikkinen
Updated license...
r2854 /****************************************************************************
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** This file is part of the Qt Charts module of the Qt Toolkit.
Jani Honkonen
Add license headers
r794 **
Miikka Heikkinen
Updated license...
r2854 ** $QT_BEGIN_LICENSE:GPL$
Titta Heikkala
Updated license headers...
r2845 ** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
Miikka Heikkinen
Updated license...
r2854 ** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
Jani Honkonen
Add license headers
r794 **
Titta Heikkala
Updated license headers...
r2845 ** $QT_END_LICENSE$
**
Miikka Heikkinen
Updated license...
r2854 ****************************************************************************/
Jani Honkonen
Add license headers
r794
unknown
Added missing warning about private implementation
r1366 // W A R N I N G
// -------------
//
Titta Heikkala
Updated private header warning...
r2807 // This file is not part of the Qt Chart API. It exists purely as an
unknown
Added missing warning about private implementation
r1366 // 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 XLOGYDOMAIN_H
#define XLOGYDOMAIN_H
Titta Heikkala
Fix include syntax...
r2714 #include <private/abstractdomain_p.h>
#include <QtCore/QRectF>
#include <QtCore/QSizeF>
Michal Klocek
Refactors qchart , adds line animation...
r131
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Michal Klocek
Refactors qchart , adds line animation...
r131
Robin Burchell
charts: Follow Qt's already-existent -developer-build option....
r2855 class Q_AUTOTEST_EXPORT XLogYDomain: 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 XLogYDomain(QObject *object = 0);
virtual ~XLogYDomain();
Michal Klocek
Refactors internals...
r2273
Michal Klocek
Adds logdomains to factory method
r2287 DomainType type(){ return AbstractDomain::XLogYDomain;};
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
Robin Burchell
charts: Follow Qt's already-existent -developer-build option....
r2855 friend bool Q_AUTOTEST_EXPORT operator== (const XLogYDomain &domain1, const XLogYDomain &domain2);
friend bool Q_AUTOTEST_EXPORT operator!= (const XLogYDomain &domain1, const XLogYDomain &domain2);
friend QDebug Q_AUTOTEST_EXPORT operator<<(QDebug dbg, const XLogYDomain &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;
Miikka Heikkinen
Accelerating lineseries with OpenGL...
r2820 QVector<QPointF> calculateGeometryPoints(const QVector<QPointF> &vector) const;
Michal Klocek
Refactors internals...
r2273
Miikka Heikkinen
Add Polar chart support...
r2483 bool attachAxis(QAbstractAxis *axis);
bool detachAxis(QAbstractAxis *axis);
Marek Rosa
Added attach/dettach axis domain implementations
r2290
public Q_SLOTS:
void handleVerticalAxisBaseChanged(qreal baseY);
Michal Klocek
Refactor domain model...
r439 private:
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 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Michal Klocek
Refactors qchart , adds line animation...
r131
Marek Rosa
Domains added
r2275 #endif // XLOGYDOMAIN_H