##// END OF EJS Templates
functionnal colorbar
functionnal colorbar

File last commit:

r0:5db0360e1259 default
r4:6986421aea60 default
Show More
qcolormaplegendmarker_p.h
35 lines | 825 B | text/x-c | CLexer
/ src / charts / legend / qcolormaplegendmarker_p.h
#ifndef QCOLORMAPLEGENDMARKER_P_H
#define QCOLORMAPLEGENDMARKER_P_H
#include <QtCharts/QChartGlobal>
#include <private/qlegendmarker_p.h>
#include <private/legendmarkeritem_p.h>
#include <QtCharts/QColorMapSeries>
QT_CHARTS_BEGIN_NAMESPACE
class QColorMapLegendMarker;
class QColorMapLegendMarkerPrivate : public QLegendMarkerPrivate
{
Q_OBJECT
public:
explicit QColorMapLegendMarkerPrivate(QColorMapLegendMarker *q, QColorMapSeries *series, QLegend *legend);
virtual ~QColorMapLegendMarkerPrivate();
virtual QAbstractSeries* series();
virtual QObject* relatedObject();
public Q_SLOTS:
virtual void updated();
private:
QColorMapLegendMarker *q_ptr;
QColorMapSeries *m_series;
Q_DECLARE_PUBLIC(QColorMapLegendMarker)
};
QT_CHARTS_END_NAMESPACE
#endif // QCOLORMAPLEGENDMARKER_P_H