##// END OF EJS Templates
Added isZoomed method to ChartView...
Added isZoomed method to ChartView isZoomed() method added also the the QML side. Change-Id: Ic0e878bb383316f37a4136d4b920849f1f1853ef Task-number: QTRD-3667 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>

File last commit:

r2807:a9a78a1d08bc
r2813:643291cd617f
Show More
legendscroller_p.h
55 lines | 1.5 KiB | text/x-c | CLexer
/ src / charts / legend / legendscroller_p.h
Michal Klocek
Adds qlegend pimpl...
r950 /****************************************************************************
**
Titta Heikkala
Copyright header changes...
r2776 ** Copyright (C) 2015 The Qt Company Ltd
Michal Klocek
Adds qlegend pimpl...
r950 ** All rights reserved.
Titta Heikkala
Copyright header changes...
r2776 ** For any questions to The Qt Company, please use contact form at http://qt.io
Michal Klocek
Adds qlegend pimpl...
r950 **
Titta Heikkala
Updated license headers...
r2740 ** This file is part of the Qt Charts module.
Michal Klocek
Adds qlegend pimpl...
r950 **
Titta Heikkala
Updated license headers...
r2740 ** Licensees holding valid commercial license for Qt may use this file in
** accordance with the Qt License Agreement provided with the Software
** or, alternatively, in accordance with the terms contained in a written
Titta Heikkala
Copyright header changes...
r2776 ** agreement between you and The Qt Company.
Michal Klocek
Adds qlegend pimpl...
r950 **
** If you have questions regarding the use of this file, please use
Titta Heikkala
Updated license headers...
r2740 ** contact form at http://qt.io
Michal Klocek
Adds qlegend pimpl...
r950 **
****************************************************************************/
// 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
Michal Klocek
Adds qlegend pimpl...
r950 // implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
Michal Klocek
Fixes header guard style issues
r969 #ifndef LEGENDSCROLLER_P_H
#define LEGENDSCROLLER_P_H
Michal Klocek
Adds qlegend pimpl...
r950
Titta Heikkala
Qt Charts project file structure change...
r2712 #include <QtCharts/qlegend.h>
Titta Heikkala
Fix include syntax...
r2714 #include <private/qlegend_p.h>
#include <private/scroller_p.h>
Michal Klocek
Adds qlegend pimpl...
r950
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_BEGIN_NAMESPACE
Michal Klocek
Adds qlegend pimpl...
r950
sauimone
better implementation of mouse event handling in legend
r2197 class LegendScroller: public QLegend, public Scroller
Michal Klocek
Adds qlegend pimpl...
r950 {
sauimone
better implementation of mouse event handling in legend
r2197 Q_OBJECT
Michal Klocek
Adds qlegend pimpl...
r950
public:
sauimone
better implementation of mouse event handling in legend
r2197 LegendScroller(QChart *chart);
Michal Klocek
Adds qlegend pimpl...
r950
sauimone
better implementation of mouse event handling in legend
r2197 void setOffset(const QPointF &point);
QPointF offset() const;
Michal Klocek
Adds qlegend pimpl...
r950
sauimone
better implementation of mouse event handling in legend
r2197 void mousePressEvent(QGraphicsSceneMouseEvent *event);
void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
Michal Klocek
Adds qlegend pimpl...
r950 };
Titta Heikkala
Qt Charts project file structure change...
r2712 QT_CHARTS_END_NAMESPACE
Michal Klocek
Adds qlegend pimpl...
r950
#endif