QGraphicsEllipseItem |
QGraphicsScene.addEllipse(double x,
double y,
double w,
double h,
QPen pen) |
Equivalent to addEllipse(x, y, w, h, pen, null)
|
QGraphicsEllipseItem |
QGraphicsScene.addEllipse(double x,
double y,
double w,
double h,
QPen pen,
QBrush brush) |
Creates and adds an ellipse item to the scene, and returns the item
reference.
|
QGraphicsEllipseItem |
QGraphicsScene.addEllipse(QRectF rect,
QPen pen) |
Equivalent to addEllipse(rect, pen, null)
|
QGraphicsEllipseItem |
QGraphicsScene.addEllipse(QRectF rect,
QPen pen,
QBrush brush) |
Creates and adds an ellipse item to the scene, and returns the item
reference.
|
QGraphicsLineItem |
QGraphicsScene.addLine(double x1,
double y1,
double x2,
double y2,
QPen pen) |
Creates and adds a line item to the scene, and returns the item
reference.
|
QGraphicsLineItem |
QGraphicsScene.addLine(QLineF line,
QPen pen) |
Creates and adds a line item to the scene, and returns the item
reference.
|
QGraphicsPathItem |
QGraphicsScene.addPath(QPainterPath path,
QPen pen) |
Equivalent to addPath(path, pen, null)
|
QGraphicsPathItem |
QGraphicsScene.addPath(QPainterPath path,
QPen pen,
QBrush brush) |
Creates and adds a path item to the scene, and returns the item
reference.
|
QGraphicsPolygonItem |
QGraphicsScene.addPolygon(QPolygonF polygon,
QPen pen) |
Equivalent to addPolygon(polygon, pen, null)
|
QGraphicsPolygonItem |
QGraphicsScene.addPolygon(QPolygonF polygon,
QPen pen,
QBrush brush) |
Creates and adds a polygon item to the scene, and returns the item
reference.
|
QGraphicsRectItem |
QGraphicsScene.addRect(double x,
double y,
double w,
double h,
QPen pen) |
Equivalent to addRect(x, y, w, h, pen, null)
|
QGraphicsRectItem |
QGraphicsScene.addRect(double x,
double y,
double w,
double h,
QPen pen,
QBrush brush) |
Creates and adds a rectangle item to the scene, and returns the item
reference.
|
QGraphicsRectItem |
QGraphicsScene.addRect(QRectF rect,
QPen pen) |
Equivalent to addRect(rect, pen, null)
|
QGraphicsRectItem |
QGraphicsScene.addRect(QRectF rect,
QPen pen,
QBrush brush) |
Creates and adds a rectangle item to the scene, and returns the item
reference.
|
void |
QAbstractGraphicsShapeItem.setPen(QPen pen) |
|
void |
QGraphicsLineItem.setPen(QPen pen) |
|