##// END OF EJS Templates
prune redundant DEPENDPATH entries...
prune redundant DEPENDPATH entries qt5 has depend_includepath enabled by default. Change-Id: I10ffcc9ff83a8b3c2252abe3dbdf7d0d40fcd4f2 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io> Reviewed-by: Tomi Korpipää <tomi.korpipaa@theqtcompany.com>

File last commit:

r2871:cf15f38aab8d
r2885:b0b6ace77823
Show More
qxylegendmarker.h
56 lines | 1.5 KiB | text/x-c | CLexer
/******************************************************************************
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt Charts module.
**
** $QT_BEGIN_LICENSE:COMM$
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** $QT_END_LICENSE$
**
******************************************************************************/
#ifndef QXYLEGENDMARKER_H
#define QXYLEGENDMARKER_H
#include <QtCharts/QChartGlobal>
#include <QtCharts/QLegendMarker>
#include <QtCharts/QXYSeries>
QT_CHARTS_BEGIN_NAMESPACE
class QXYLegendMarkerPrivate;
class QT_CHARTS_EXPORT QXYLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
explicit QXYLegendMarker(QXYSeries *series, QLegend *legend, QObject *parent = Q_NULLPTR);
virtual ~QXYLegendMarker();
virtual LegendMarkerType type() { return LegendMarkerTypeXY; }
// Related series
virtual QXYSeries* series();
protected:
QXYLegendMarker(QXYLegendMarkerPrivate &d, QObject *parent = Q_NULLPTR);
private:
Q_DECLARE_PRIVATE(QXYLegendMarker)
Q_DISABLE_COPY(QXYLegendMarker)
};
QT_CHARTS_END_NAMESPACE
#endif // QXYLEGENDMARKER_H