##// END OF EJS Templates
test parallel
test parallel

File last commit:

r0:5db0360e1259 default
r6:1b9b32d0fd2e default
Show More
qcolormaplegendmarker.h
34 lines | 837 B | text/x-c | CLexer
/ src / charts / legend / qcolormaplegendmarker.h
#ifndef QCOLORMAPLEGENDMARKER_H
#define QCOLORMAPLEGENDMARKER_H
#include <QtCharts/QChartGlobal>
#include <QtCharts/QLegendMarker>
#include <QtCharts/QColorMapSeries>
QT_CHARTS_BEGIN_NAMESPACE
class QColorMapLegendMarkerPrivate;
class QColorMapLegendMarker : public QLegendMarker
{
Q_OBJECT
public:
explicit QColorMapLegendMarker(QColorMapSeries *series, QLegend *legend, QObject *parent = 0);
virtual ~QColorMapLegendMarker();
virtual LegendMarkerType type() { return LegendMarkerTypeColorMap; }
// Related series
virtual QColorMapSeries* series();
protected:
QColorMapLegendMarker(QColorMapLegendMarkerPrivate &d, QObject *parent = 0);
private:
Q_DECLARE_PRIVATE(QColorMapLegendMarker)
Q_DISABLE_COPY(QColorMapLegendMarker)
};
QT_CHARTS_END_NAMESPACE
#endif // QCOLORMAPLEGENDMARKER_H