[4271] | 1 | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
---|
| 2 | * Qwt Widget Library
|
---|
| 3 | * Copyright (C) 1997 Josef Wilgen
|
---|
| 4 | * Copyright (C) 2002 Uwe Rathmann
|
---|
| 5 | *
|
---|
| 6 | * This library is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the Qwt License, Version 1.0
|
---|
| 8 | *****************************************************************************/
|
---|
| 9 |
|
---|
| 10 | #ifndef QWT_PLOT_SERIES_ITEM_H
|
---|
| 11 | #define QWT_PLOT_SERIES_ITEM_H
|
---|
| 12 |
|
---|
| 13 | #include "qwt_global.h"
|
---|
| 14 | #include "qwt_plot_item.h"
|
---|
| 15 | #include "qwt_scale_div.h"
|
---|
| 16 | #include "qwt_series_data.h"
|
---|
[8127] | 17 | #include "qwt_series_store.h"
|
---|
[4271] | 18 |
|
---|
| 19 | /*!
|
---|
| 20 | \brief Base class for plot items representing a series of samples
|
---|
| 21 | */
|
---|
[8127] | 22 | class QWT_EXPORT QwtPlotSeriesItem: public QwtPlotItem,
|
---|
| 23 | public virtual QwtAbstractSeriesStore
|
---|
[4271] | 24 | {
|
---|
| 25 | public:
|
---|
[9383] | 26 | explicit QwtPlotSeriesItem( const QString &title = QString() );
|
---|
[8127] | 27 | explicit QwtPlotSeriesItem( const QwtText &title );
|
---|
[4271] | 28 |
|
---|
[8127] | 29 | virtual ~QwtPlotSeriesItem();
|
---|
[4271] | 30 |
|
---|
| 31 | void setOrientation( Qt::Orientation );
|
---|
| 32 | Qt::Orientation orientation() const;
|
---|
| 33 |
|
---|
[9383] | 34 | virtual void draw( QPainter *,
|
---|
[4271] | 35 | const QwtScaleMap &xMap, const QwtScaleMap &yMap,
|
---|
| 36 | const QRectF & ) const;
|
---|
| 37 |
|
---|
| 38 | /*!
|
---|
| 39 | Draw a subset of the samples
|
---|
| 40 |
|
---|
| 41 | \param painter Painter
|
---|
| 42 | \param xMap Maps x-values into pixel coordinates.
|
---|
| 43 | \param yMap Maps y-values into pixel coordinates.
|
---|
[8127] | 44 | \param canvasRect Contents rectangle of the canvas
|
---|
[4271] | 45 | \param from Index of the first point to be painted
|
---|
| 46 | \param to Index of the last point to be painted. If to < 0 the
|
---|
| 47 | curve will be painted to its last point.
|
---|
| 48 | */
|
---|
| 49 | virtual void drawSeries( QPainter *painter,
|
---|
| 50 | const QwtScaleMap &xMap, const QwtScaleMap &yMap,
|
---|
| 51 | const QRectF &canvasRect, int from, int to ) const = 0;
|
---|
| 52 |
|
---|
[8127] | 53 | virtual QRectF boundingRect() const;
|
---|
| 54 |
|
---|
[9383] | 55 | virtual void updateScaleDiv(
|
---|
[8127] | 56 | const QwtScaleDiv &, const QwtScaleDiv & );
|
---|
| 57 |
|
---|
| 58 | protected:
|
---|
| 59 | virtual void dataChanged();
|
---|
| 60 |
|
---|
[4271] | 61 | private:
|
---|
| 62 | class PrivateData;
|
---|
| 63 | PrivateData *d_data;
|
---|
| 64 | };
|
---|
| 65 |
|
---|
| 66 | #endif
|
---|