##// END OF EJS Templates
Fix zooming when presenter dimensions are not integers...
Fix zooming when presenter dimensions are not integers If presenter width (or height) is not an integer, zooming using vertical (or horizontal) rubberband will cause the fixed dimension to change, because rubberband uses QRect instead of QRectF. Fixed by forcing the corresponding plotArea dimension for the fixed rubberband dimension when calling zoomIn() in mouseReleaseEvent. Task-number: QTRD-1905 Reviewed-by: Mika Salmela

File last commit:

r2249:707325ca7e43
r2416:25b2e1c316cb
Show More
qbarcategoryaxis.h
81 lines | 2.5 KiB | text/x-c | CLexer
/****************************************************************************
**
** 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$
**
****************************************************************************/
#ifndef QBARCATEGORYAXIS_H
#define QBARCATEGORYAXIS_H
#include "qabstractaxis.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QBarCategoryAxisPrivate;
class QTCOMMERCIALCHART_EXPORT QBarCategoryAxis : public QAbstractAxis
{
Q_OBJECT
Q_PROPERTY(QStringList categories READ categories WRITE setCategories NOTIFY categoriesChanged)
Q_PROPERTY(QString min READ min WRITE setMin NOTIFY minChanged)
Q_PROPERTY(QString max READ max WRITE setMax NOTIFY maxChanged)
Q_PROPERTY(int count READ count NOTIFY countChanged)
public:
explicit QBarCategoryAxis(QObject *parent = 0);
~QBarCategoryAxis();
protected:
QBarCategoryAxis(QBarCategoryAxisPrivate &d, QObject *parent = 0);
public:
AxisType type() const;
void append(const QStringList &categories);
void append(const QString &category);
void remove(const QString &category);
void insert(int index, const QString &category);
void replace(const QString &oldCategory, const QString &newCategory);
void clear();
void setCategories(const QStringList &categories);
QStringList categories();
int count() const;
QString at(int index) const;
//range handling
void setMin(const QString &minCategory);
QString min() const;
void setMax(const QString &maxCategory);
QString max() const;
void setRange(const QString &minCategory, const QString &maxCategory);
Q_SIGNALS:
void categoriesChanged();
void minChanged(const QString &min);
void maxChanged(const QString &max);
void rangeChanged(const QString &min, const QString &max);
void countChanged();
private:
Q_DECLARE_PRIVATE(QBarCategoryAxis)
Q_DISABLE_COPY(QBarCategoryAxis)
friend class ChartBarCategoryAxisX;
friend class ChartBarCategoryAxisY;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARCATEGORYAXIS_H