![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
\inmodule QtGui More...
#include <qpainterpath.h>
Public Member Functions | |
bool | isMoveTo () const |
Returns true if the element is moving the current position, otherwise returns false . | |
bool | isLineTo () const |
Returns true if the element is a line, otherwise returns false . | |
bool | isCurveTo () const |
Returns true if the element is a curve, otherwise returns false . | |
operator QPointF () const | |
Returns the element's position. | |
bool | operator== (const Element &e) const |
\variable QPainterPath::Element::x | |
bool | operator!= (const Element &e) const |
Public Attributes | |
qreal | x |
qreal | y |
ElementType | type |
\inmodule QtGui
The QPainterPath::Element class specifies the position and type of a subpath.
Once a QPainterPath object is constructed, subpaths like lines and curves can be added to the path (creating QPainterPath::LineToElement and QPainterPath::CurveToElement components).
The lines and curves stretch from the currentPosition() to the position passed as argument. The currentPosition() of the QPainterPath object is always the end position of the last subpath that was added (or the initial start point). The moveTo() function can be used to move the currentPosition() without adding a line or curve, creating a QPainterPath::MoveToElement component.
Definition at line 38 of file qpainterpath.h.
|
inline |
Returns true
if the element is a curve, otherwise returns false
.
Definition at line 46 of file qpainterpath.h.
|
inline |
Returns true
if the element is a line, otherwise returns false
.
Definition at line 45 of file qpainterpath.h.
|
inline |
Returns true
if the element is moving the current position, otherwise returns false
.
Definition at line 44 of file qpainterpath.h.
|
inline |
|
inline |
Returns true
if this element is not equal to other; otherwise returns false
.
Definition at line 52 of file qpainterpath.h.
|
inline |
\variable QPainterPath::Element::x
the x coordinate of the element's position.
\variable QPainterPath::Element::y
the y coordinate of the element's position.
\variable QPainterPath::Element::type
the type of element
Returns true
if this element is equal to other; otherwise returns false
.
Definition at line 50 of file qpainterpath.h.
ElementType QPainterPath::Element::type |
Definition at line 42 of file qpainterpath.h.
qreal QPainterPath::Element::x |
Definition at line 40 of file qpainterpath.h.
qreal QPainterPath::Element::y |
Definition at line 41 of file qpainterpath.h.