##// END OF EJS Templates
Fix Charts build with QT_NO_GRAPHICSEFFECT definition...
Fix Charts build with QT_NO_GRAPHICSEFFECT definition QGraphicsDropShadowEffect class can't be used when QT_NO_GRAPHICSEFFECT is defined. Therefore the ChartBackground::setDropShadowEnabled() does nothing with the aforementioned definition. Also the ChartBackground::isDropShadowEnabled() method then always returns false. Task-number: QTRD-2356 Change-Id: I0ef2cec082e8b0dc15756312da61ce773b8d405f Reviewed-by: Karim Pinter <karim.pinter@digia.com> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2574:599370d0561c
r2624:a37605d126b6
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