qt_demoe/third/3rd_qwt/qwt_plot_barchart.h

119 lines
3.5 KiB
C
Raw Normal View History

2019-11-07 02:55:57 +00:00
/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
* Qwt Widget Library
* Copyright (C) 1997 Josef Wilgen
* Copyright (C) 2002 Uwe Rathmann
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the Qwt License, Version 1.0
*****************************************************************************/
#ifndef QWT_PLOT_BAR_CHART_H
#define QWT_PLOT_BAR_CHART_H
#include "qwt_global.h"
#include "qwt_plot_abstract_barchart.h"
#include "qwt_series_data.h"
class QwtColumnRect;
class QwtColumnSymbol;
/*!
\brief QwtPlotBarChart displays a series of a values as bars.
Each bar might be customized individually by implementing
a specialSymbol(). Otherwise it is rendered using a default symbol.
2021-10-08 02:51:37 +00:00
Depending on its orientation() the bars are displayed horizontally
or vertically. The bars cover the interval between the baseline()
2019-11-07 02:55:57 +00:00
and the value.
By activating the LegendBarTitles mode each sample will have
its own entry on the legend.
The most common use case of a bar chart is to display a
list of y coordinates, where the x coordinate is simply the index
in the list. But for other situations ( f.e. when values are related
to dates ) it is also possible to set x coordinates explicitly.
\sa QwtPlotMultiBarChart, QwtPlotHistogram, QwtPlotCurve::Sticks,
QwtPlotSeriesItem::orientation(), QwtPlotAbstractBarChart::baseline()
*/
class QWT_EXPORT QwtPlotBarChart:
public QwtPlotAbstractBarChart, public QwtSeriesStore<QPointF>
{
public:
/*!
\brief Legend modes.
The default setting is QwtPlotBarChart::LegendChartTitle.
\sa setLegendMode(), legendMode()
*/
enum LegendMode
{
2021-10-08 02:51:37 +00:00
/*!
2019-11-07 02:55:57 +00:00
One entry on the legend showing the default symbol
and the title() of the chart
\sa QwtPlotItem::title()
*/
LegendChartTitle,
/*!
One entry for each value showing the individual symbol
of the corresponding bar and the bar title.
\sa specialSymbol(), barTitle()
*/
LegendBarTitles
};
2021-10-08 02:51:37 +00:00
explicit QwtPlotBarChart( const QString &title = QString() );
2019-11-07 02:55:57 +00:00
explicit QwtPlotBarChart( const QwtText &title );
virtual ~QwtPlotBarChart();
virtual int rtti() const;
void setSamples( const QVector<QPointF> & );
void setSamples( const QVector<double> & );
2021-10-08 02:51:37 +00:00
void setSamples( QwtSeriesData<QPointF> * );
2019-11-07 02:55:57 +00:00
void setSymbol( QwtColumnSymbol * );
const QwtColumnSymbol *symbol() const;
void setLegendMode( LegendMode );
LegendMode legendMode() const;
virtual void drawSeries( QPainter *painter,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QRectF &canvasRect, int from, int to ) const;
virtual QRectF boundingRect() const;
2021-10-08 02:51:37 +00:00
virtual QwtColumnSymbol *specialSymbol(
2019-11-07 02:55:57 +00:00
int sampleIndex, const QPointF& ) const;
virtual QwtText barTitle( int sampleIndex ) const;
protected:
virtual void drawSample( QPainter *painter,
const QwtScaleMap &xMap, const QwtScaleMap &yMap,
const QRectF &canvasRect, const QwtInterval &boundingInterval,
int index, const QPointF& sample ) const;
virtual void drawBar( QPainter *,
2021-10-08 02:51:37 +00:00
int sampleIndex, const QPointF& sample,
2019-11-07 02:55:57 +00:00
const QwtColumnRect & ) const;
QList<QwtLegendData> legendData() const;
QwtGraphic legendIcon( int index, const QSizeF & ) const;
private:
void init();
class PrivateData;
PrivateData *d_data;
};
#endif