##// 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
qbarlegendmarker.h
57 lines | 1.6 KiB | text/x-c | CLexer
/ src / legend / qbarlegendmarker.h
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 /****************************************************************************
**
Miikka Heikkinen
Fixed the copyright year 2012 -> 2013
r2432 ** Copyright (C) 2013 Digia Plc
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 ** 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.
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 **
** $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
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 ** 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 QBARLEGENDMARKER_H
#define QBARLEGENDMARKER_H
#include <QChartGlobal>
#include <QLegendMarker>
#include <QAbstractBarSeries>
#include <QBarSet>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QLegend;
class QBarLegendMarkerPrivate;
class QTCOMMERCIALCHART_EXPORT QBarLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
sauimone
optional series parameter to markers function. code style fixes
r2193 explicit QBarLegendMarker(QAbstractBarSeries *series, QBarSet *barset, QLegend *legend, QObject *parent = 0);
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174 virtual ~QBarLegendMarker();
sauimone
removed peer object solution. Introduced marker type solution
r2179 virtual LegendMarkerType type() { return LegendMarkerTypeBar; }
// Related series and barset
sauimone
pure virtual getter for series to QLegendMarker. In some cases user don't need the derived pointer. This removes the need to cast to derived marker type
r2181 virtual QAbstractBarSeries* series();
sauimone
removed peer object solution. Introduced marker type solution
r2179 QBarSet* barset();
sauimone
tidying up legend marker code. Added QBarLegendMarker
r2174
protected:
QBarLegendMarker(QBarLegendMarkerPrivate &d, QObject *parent = 0);
private:
Q_DECLARE_PRIVATE(QBarLegendMarker)
Q_DISABLE_COPY(QBarLegendMarker)
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARLEGENDMARKER_H