The QSGSimpleRectNode class is a convenience class for drawing solid filled rectangles using scenegraph. More...
Header: | #include <QSGSimpleRectNode> |
CMake: | find_package(Qt6 COMPONENTS Quick REQUIRED) target_link_libraries(mytarget PRIVATE Qt6::Quick) |
qmake: | QT += quick |
Inherits: | QSGGeometryNode |
QSGSimpleRectNode() | |
QSGSimpleRectNode(const QRectF &rect, const QColor &color) | |
QColor | color() const |
QRectF | rect() const |
void | setColor(const QColor &color) |
void | setRect(const QRectF &rect) |
void | setRect(qreal x, qreal y, qreal w, qreal h) |
Warning: This utility class is only functional when running with the default or software backends of the Qt Quick scenegraph. As an alternative, prefer using QSGRectangleNode via QQuickWindow::createRectangleNode(). However, this standalone class is still useful when used via subclassing and the application knows that no special scenegraph backends will be involved.
Constructs a QSGSimpleRectNode instance with an empty rectangle and white color.
Constructs a QSGSimpleRectNode instance which is spanning rect with the color color.
Returns the color of this rectangle.
See also setColor().
Returns the rectangle that this rect node covers.
See also setRect().
Sets the color of this rectangle to color. The default color will be white.
See also color().
Sets the rectangle of this rect node to rect.
See also rect().
This is an overloaded function.
Sets the rectangle of this rect node to begin at (x, y) and have width w and height h.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.2/qsgsimplerectnode.html