##// END OF EJS Templates
Fix BoxPlotSeries documentation...
Fix BoxPlotSeries documentation Added missing documentation for signals. Removed duplicates. Change-Id: I304321f73e89c71915083dd09ba21bd353329c28 Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com>

File last commit:

r2740:377e4516d036
r2756:82bdb5075bbd
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
Update copyright year...
r2688 ** Copyright (C) 2014 Digia Plc
Michal Klocek
Adds qlegend pimpl...
r950 ** All rights reserved.
Titta Heikkala
Updated license headers...
r2740 ** For any questions to Digia, 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
** agreement between you and Digia.
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
// -------------
//
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 // This file is not part of the Qt Enterprise 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