#include <qwt_symbol.h>#include <Qt>
Go to the source code of this file.
Packages | |
| package | Plot2d |
Defines | |
| #define | PLOT2D_EXPORT |
Enumerations | |
| enum | Plot2d.MarkerType { Plot2d.None, Plot2d.Circle, Plot2d.Rectangle, Plot2d.Diamond, Plot2d.DTriangle, Plot2d.UTriangle, Plot2d.LTriangle, Plot2d.RTriangle, Plot2d.Cross, Plot2d.XCross } |
| enum | Plot2d.LineType { Plot2d.NoPen, Plot2d.Solid, Plot2d.Dash, Plot2d.Dot, Plot2d.DashDot, Plot2d.DashDotDot } |
Functions | |
| QwtSymbol::Style | Plot2d.plot2qwtMarker (MarkerType) |
| Convert Plot2d marker type to Qwt marker type. | |
| MarkerType | Plot2d.qwt2plotMarker (QwtSymbol::Style) |
| Convert Qwt marker type to Plot2d marker type. | |
| Qt::PenStyle | Plot2d.plot2qwtLine (LineType) |
| Convert Plot2d line type to Qt/Qwt line type. | |
| LineType | Plot2d.qwt2plotLine (Qt::PenStyle) |
| Convert Qt/Qwt line type to Plot2d line type. | |
| void | Plot2d.drawLine (QPainter *, const QPoint &, const QPoint &, Qt::PenStyle=Qt::SolidLine, const QColor &=Qt::black, int=0) |
| Draw line. | |
| void | Plot2d.drawLine (QPainter *, const QPoint &, const QPoint &, LineType=Solid, const QColor &=Qt::black, int=0) |
| Draw line. | |
| void | Plot2d.drawLine (QPainter *, int, int, int, int, Qt::PenStyle=Qt::SolidLine, const QColor &=Qt::black, int=0) |
| Draw line. | |
| void | Plot2d.drawLine (QPainter *, int, int, int, int, LineType=Solid, const QColor &=Qt::black, int=0) |
| Draw line. | |
| void | Plot2d.drawMarker (QPainter *, const QPoint &, const QRect &, QwtSymbol::Style=QwtSymbol::Ellipse, const QColor &=Qt::black) |
| Draw marker. | |
| void | Plot2d.drawMarker (QPainter *, const QPoint &, const QRect &, MarkerType=Circle, const QColor &=Qt::black) |
| Draw marker. | |
| void | Plot2d.drawMarker (QPainter *, int, int, int, int, QwtSymbol::Style=QwtSymbol::Ellipse, const QColor &=Qt::black) |
| Draw marker. | |
| void | Plot2d.drawMarker (QPainter *, int, int, int, int, MarkerType=Circle, const QColor &=Qt::black) |
| Draw marker. | |
| #define PLOT2D_EXPORT |