##// END OF EJS Templates
Fix Charts documentation...
Fix Charts documentation The documentation structure is changed so that it can be generated with both Qt5 and Qt4. Also the erroneous VBarModelMapper is removed from VBoxPlotModelMapper documentation. Task-number: QTRD-2492, QTRD-2495 Change-Id: I45028915ca55f6ff1170db58518a8f08ac4158fb Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2574:599370d0561c
r2639:2ce3423968b5
Show More
legendscroller_p.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ src / legend / legendscroller_p.h
Michal Klocek
Adds qlegend pimpl...
r950 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
Michal Klocek
Adds qlegend pimpl...
r950 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Michal Klocek
Adds qlegend pimpl...
r950 **
** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Michal Klocek
Adds qlegend pimpl...
r950 ** 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$
**
****************************************************************************/
// 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
#include "qlegend.h"
sauimone
moved legend offset to private side
r1458 #include "qlegend_p.h"
sauimone
better implementation of mouse event handling in legend
r2197 #include "scroller_p.h"
Michal Klocek
Adds qlegend pimpl...
r950
QTCOMMERCIALCHART_BEGIN_NAMESPACE
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 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif