Classes | Public Types | Public Member Functions | Protected Member Functions | Private Attributes | List of all members
QwtPolarCurve Class Reference

An item, that represents a series of points. More...

#include <qwt_polar_curve.h>

Inheritance diagram for QwtPolarCurve:
Inheritance graph
[legend]

Classes

class  PrivateData
 

Public Types

enum  CurveStyle { NoCurve, Lines, UserCurve = 100 }
 
enum  LegendAttribute { LegendShowLine = 0x01, LegendShowSymbol = 0x02 }
 Attributes how to represent the curve on the legend. More...
 
typedef QFlags< LegendAttributeLegendAttributes
 Legend attributes. More...
 
- Public Types inherited from QwtPolarItem
enum  ItemAttribute { Legend = 0x01, AutoScale = 0x02 }
 Plot Item Attributes. More...
 
typedef QFlags< ItemAttributeItemAttributes
 Item attributes. More...
 
enum  RenderHint { RenderAntialiased = 0x01 }
 Render hints. More...
 
typedef QFlags< RenderHintRenderHints
 Item attributes. More...
 
enum  RttiValues {
  Rtti_PolarItem = 0, Rtti_PolarGrid, Rtti_PolarMarker, Rtti_PolarCurve,
  Rtti_PolarSpectrogram, Rtti_PolarUserItem = 1000
}
 Runtime type information. More...
 

Public Member Functions

virtual QwtInterval boundingInterval (int scaleId) const QWT_OVERRIDE
 
QwtCurveFittercurveFitter () const
 
const QwtSeriesData< QwtPointPolar > * data () const
 
size_t dataSize () const
 
virtual void draw (QPainter *p, const QwtScaleMap &azimuthMap, const QwtScaleMap &radialMap, const QPointF &pole, double radius, const QRectF &canvasRect) const QWT_OVERRIDE
 
virtual void draw (QPainter *p, const QwtScaleMap &azimuthMap, const QwtScaleMap &radialMap, const QPointF &pole, int from, int to) const
 Draw an interval of the curve. More...
 
virtual QwtGraphic legendIcon (int index, const QSizeF &) const QWT_OVERRIDE
 
const QPen & pen () const
 
 QwtPolarCurve ()
 Constructor. More...
 
 QwtPolarCurve (const QwtText &title)
 
 QwtPolarCurve (const QString &title)
 
virtual int rtti () const QWT_OVERRIDE
 
QwtPointPolar sample (int i) const
 
void setCurveFitter (QwtCurveFitter *)
 Insert a curve fitter. More...
 
void setData (QwtSeriesData< QwtPointPolar > *data)
 
void setLegendAttribute (LegendAttribute, bool on=true)
 
void setPen (const QPen &)
 Assign a pen. More...
 
void setStyle (CurveStyle style)
 
void setSymbol (QwtSymbol *)
 Assign a symbol. More...
 
CurveStyle style () const
 
const QwtSymbolsymbol () const
 
bool testLegendAttribute (LegendAttribute) const
 Test if a lefend attribute is enables. More...
 
virtual ~QwtPolarCurve ()
 Destructor. More...
 
- Public Member Functions inherited from QwtPolarItem
void attach (QwtPolarPlot *plot)
 Attach the item to a plot. More...
 
void detach ()
 This method detaches a QwtPolarItem from the QwtPolarPlot it has been associated with. More...
 
void hide ()
 Hide the item. More...
 
bool isVisible () const
 
virtual void itemChanged ()
 
virtual void legendChanged ()
 
virtual QList< QwtLegendDatalegendData () const
 Return all information, that is needed to represent the item on the legend. More...
 
QSize legendIconSize () const
 
virtual int marginHint () const
 
QwtPolarPlotplot () const
 
 QwtPolarItem (const QwtText &title=QwtText())
 
uint renderThreadCount () const
 
void setItemAttribute (ItemAttribute, bool on=true)
 
void setLegendIconSize (const QSize &)
 
void setRenderHint (RenderHint, bool on=true)
 
void setRenderThreadCount (uint numThreads)
 
void setTitle (const QString &title)
 
void setTitle (const QwtText &title)
 
virtual void setVisible (bool)
 
void setZ (double z)
 Set the z value. More...
 
void show ()
 Show the item. More...
 
bool testItemAttribute (ItemAttribute) const
 
bool testRenderHint (RenderHint) const
 
const QwtTexttitle () const
 
virtual void updateScaleDiv (const QwtScaleDiv &, const QwtScaleDiv &, const QwtInterval &)
 Update the item to changes of the axes scale division. More...
 
double z () const
 
virtual ~QwtPolarItem ()
 Destroy the QwtPolarItem. More...
 

Protected Member Functions

virtual void drawCurve (QPainter *, int style, const QwtScaleMap &azimuthMap, const QwtScaleMap &radialMap, const QPointF &pole, int from, int to) const
 
void drawLines (QPainter *, const QwtScaleMap &azimuthMap, const QwtScaleMap &radialMap, const QPointF &pole, int from, int to) const
 
virtual void drawSymbols (QPainter *, const QwtSymbol &, const QwtScaleMap &azimuthMap, const QwtScaleMap &radialMap, const QPointF &pole, int from, int to) const
 
void init ()
 Initialize data members. More...
 

Private Attributes

PrivateDatad_data
 
QwtSeriesData< QwtPointPolar > * d_series
 

Detailed Description

An item, that represents a series of points.

A curve is the representation of a series of points in polar coordinates. The points are connected to the curve using the abstract QwtData interface.

See also
QwtPolarPlot, QwtSymbol, QwtScaleMap

Definition at line 30 of file qwt_polar_curve.h.

Member Typedef Documentation

Legend attributes.

Definition at line 76 of file qwt_polar_curve.h.

Member Enumeration Documentation

Curve styles.

See also
setStyle(), style()
Enumerator
NoCurve 

Don't draw a curve. Note: This doesn't affect the symbols.

Lines 

Connect the points with straight lines. The lines might be interpolated depending on the 'Fitted' attribute. Curve fitting can be configured using setCurveFitter().

UserCurve 

Values > 100 are reserved for user specific curve styles.

Definition at line 37 of file qwt_polar_curve.h.

Attributes how to represent the curve on the legend.

If none of the flags is activated QwtPlotCurve tries to find a color representing the curve and paints a rectangle with it. In the default setting all attributes are off.

See also
setLegendAttribute(), testLegendAttribute()
Enumerator
LegendShowLine 

If the curveStyle() is not NoCurve a line is painted with the curvePen().

LegendShowSymbol 

If the curve has a valid symbol it is painted.

Definition at line 63 of file qwt_polar_curve.h.

Constructor & Destructor Documentation

QwtPolarCurve::QwtPolarCurve ( )
explicit

Constructor.

Definition at line 66 of file qwt_polar_curve.cpp.

QwtPolarCurve::QwtPolarCurve ( const QwtText title)
explicit

Constructor

Parameters
titletitle of the curve

Definition at line 76 of file qwt_polar_curve.cpp.

QwtPolarCurve::QwtPolarCurve ( const QString &  title)
explicit

Constructor

Parameters
titletitle of the curve

Definition at line 86 of file qwt_polar_curve.cpp.

QwtPolarCurve::~QwtPolarCurve ( )
virtual

Destructor.

Definition at line 93 of file qwt_polar_curve.cpp.

Member Function Documentation

QwtInterval QwtPolarCurve::boundingInterval ( int  scaleId) const
virtual

Interval, that is necessary to display the item This interval can be useful for operations like clipping or autoscaling

Parameters
scaleIdScale index
Returns
bounding interval
See also
QwtData::boundingRect()

Reimplemented from QwtPolarItem.

Definition at line 585 of file qwt_polar_curve.cpp.

QwtCurveFitter * QwtPolarCurve::curveFitter ( ) const
Returns
The curve fitter
See also
setCurveFitter()

Definition at line 261 of file qwt_polar_curve.cpp.

const QwtSeriesData< QwtPointPolar > * QwtPolarCurve::data ( ) const
inline
Returns
the the curve data

Definition at line 145 of file qwt_polar_curve.h.

size_t QwtPolarCurve::dataSize ( ) const
Returns
Number of points
See also
setData()

Definition at line 499 of file qwt_polar_curve.cpp.

void QwtPolarCurve::draw ( QPainter *  painter,
const QwtScaleMap azimuthMap,
const QwtScaleMap radialMap,
const QPointF &  pole,
double  radius,
const QRectF &  canvasRect 
) const
virtual

Draw the curve

Parameters
painterPainter
azimuthMapMaps azimuth values to values related to 0.0, M_2PI
radialMapMaps radius values into painter coordinates.
polePosition of the pole in painter coordinates
radiusRadius of the complete plot area in painter coordinates
canvasRectContents rect of the canvas in painter coordinates

Implements QwtPolarItem.

Definition at line 276 of file qwt_polar_curve.cpp.

void QwtPolarCurve::draw ( QPainter *  painter,
const QwtScaleMap azimuthMap,
const QwtScaleMap radialMap,
const QPointF &  pole,
int  from,
int  to 
) const
virtual

Draw an interval of the curve.

Parameters
painterPainter
azimuthMapMaps azimuth values to values related to 0.0, M_2PI
radialMapMaps radius values into painter coordinates.
polePosition of the pole in painter coordinates
fromindex of the first point to be painted
toindex of the last point to be painted. If to < 0 the curve will be painted to its last point.
See also
drawCurve(), drawSymbols(),

Definition at line 299 of file qwt_polar_curve.cpp.

void QwtPolarCurve::drawCurve ( QPainter *  painter,
int  style,
const QwtScaleMap azimuthMap,
const QwtScaleMap radialMap,
const QPointF &  pole,
int  from,
int  to 
) const
protectedvirtual

Draw the line part (without symbols) of a curve interval.

Parameters
painterPainter
styleCurve style, see QwtPolarCurve::CurveStyle
azimuthMapMaps azimuth values to values related to 0.0, M_2PI
radialMapMaps radius values into painter coordinates.
polePosition of the pole in painter coordinates
fromindex of the first point to be painted
toindex of the last point to be painted.
See also
draw(), drawLines()

Definition at line 341 of file qwt_polar_curve.cpp.

void QwtPolarCurve::drawLines ( QPainter *  painter,
const QwtScaleMap azimuthMap,
const QwtScaleMap radialMap,
const QPointF &  pole,
int  from,
int  to 
) const
protected

Draw lines

Parameters
painterPainter
azimuthMapMaps azimuth values to values related to 0.0, M_2PI
radialMapMaps radius values into painter coordinates.
polePosition of the pole in painter coordinates
fromindex of the first point to be painted
toindex of the last point to be painted.
See also
draw(), drawLines(), setCurveFitter()

Definition at line 367 of file qwt_polar_curve.cpp.

void QwtPolarCurve::drawSymbols ( QPainter *  painter,
const QwtSymbol symbol,
const QwtScaleMap azimuthMap,
const QwtScaleMap radialMap,
const QPointF &  pole,
int  from,
int  to 
) const
protectedvirtual

Draw symbols

Parameters
painterPainter
symbolCurve symbol
azimuthMapMaps azimuth values to values related to 0.0, M_2PI
radialMapMaps radius values into painter coordinates.
polePosition of the pole in painter coordinates
fromindex of the first point to be painted
toindex of the last point to be painted.
See also
setSymbol(), draw(), drawCurve()

Definition at line 459 of file qwt_polar_curve.cpp.

void QwtPolarCurve::init ( )
protected

Initialize data members.

Definition at line 100 of file qwt_polar_curve.cpp.

QwtGraphic QwtPolarCurve::legendIcon ( int  index,
const QSizeF &  size 
) const
virtual
Returns
Icon representing the curve on the legend
Parameters
indexIndex of the legend entry ( ignored as there is only one )
sizeIcon size
See also
QwtPolarItem::setLegendIconSize(), QwtPolarItem::legendData()

Reimplemented from QwtPolarItem.

Definition at line 513 of file qwt_polar_curve.cpp.

const QPen & QwtPolarCurve::pen ( ) const
Returns
Pen used to draw the lines
See also
setPen()

Definition at line 212 of file qwt_polar_curve.cpp.

int QwtPolarCurve::rtti ( ) const
virtual
Returns
QwtPolarCurve::Rtti_PolarCurve

Reimplemented from QwtPolarItem.

Definition at line 113 of file qwt_polar_curve.cpp.

QwtPointPolar QwtPolarCurve::sample ( int  i) const
inline
Parameters
iindex
Returns
point at position i

Definition at line 154 of file qwt_polar_curve.h.

void QwtPolarCurve::setCurveFitter ( QwtCurveFitter curveFitter)

Insert a curve fitter.

Parameters
curveFitterCurve fitter

A curve fitter interpolates the curve points. F.e QwtPolarFitter adds equidistant points so that the connection gets rounded instead of having straight lines. If curveFitter is NULL fitting is disabled.

See also
curveFitter()

Definition at line 246 of file qwt_polar_curve.cpp.

void QwtPolarCurve::setData ( QwtSeriesData< QwtPointPolar > *  data)

Initialize data with a pointer to QwtSeriesData<QwtPointPolar>.

The x-values of the data object represent the azimuth, the y-value respresent the radius.

Parameters
dataData

Definition at line 225 of file qwt_polar_curve.cpp.

void QwtPolarCurve::setLegendAttribute ( LegendAttribute  attribute,
bool  on = true 
)

Specify an attribute how to draw the legend identifier

Parameters
attributeAttribute
onOn/Off /sa LegendAttribute, testLegendAttribute()

Definition at line 125 of file qwt_polar_curve.cpp.

void QwtPolarCurve::setPen ( const QPen &  pen)

Assign a pen.

Parameters
penNew pen
See also
pen()

Definition at line 199 of file qwt_polar_curve.cpp.

void QwtPolarCurve::setStyle ( CurveStyle  style)

Set the curve's drawing style

Parameters
styleCurve style
See also
CurveStyle, style()

Definition at line 152 of file qwt_polar_curve.cpp.

void QwtPolarCurve::setSymbol ( QwtSymbol symbol)

Assign a symbol.

Parameters
symbolSymbol
See also
symbol()

Definition at line 175 of file qwt_polar_curve.cpp.

QwtPolarCurve::CurveStyle QwtPolarCurve::style ( ) const
Returns
Current style
See also
CurveStyle, setStyle()

Definition at line 165 of file qwt_polar_curve.cpp.

const QwtSymbol * QwtPolarCurve::symbol ( ) const
Returns
The current symbol
See also
setSymbol()

Definition at line 189 of file qwt_polar_curve.cpp.

bool QwtPolarCurve::testLegendAttribute ( LegendAttribute  attribute) const

Test if a lefend attribute is enables.

Parameters
attributeLegend attribute
Returns
True if attribute is enabled
See also
LegendAttribute, setLegendAttribute()

Definition at line 141 of file qwt_polar_curve.cpp.

Member Data Documentation

PrivateData* QwtPolarCurve::d_data
private

Definition at line 140 of file qwt_polar_curve.h.

QwtSeriesData<QwtPointPolar>* QwtPolarCurve::d_series
private

Definition at line 138 of file qwt_polar_curve.h.


The documentation for this class was generated from the following files:


plotjuggler
Author(s): Davide Faconti
autogenerated on Sun Dec 6 2020 04:02:50