QML中是否有Win32 GetUpdateRect function的等效项?例如,如果从QQuickPaintedItem派生的控件位于Flickable内部,则有一种方法可以获取应在
中重绘的最小矩形。QQuickPaintedItem::paint(QPainter *painter)
?
答案 0 :(得分:0)
调用QQuickPaintedItem::update()
时,给定的QRect
参数将被设置为QPainter
中QQuickPaintedItem::paint
的 clip bounding rect 。 >
因此,如果要重绘项目的特定区域,只需使用要重绘的矩形调用QQuickPaintedItem::update()
。
item->update(QRect(10, 20, 30, 20));
void CharacterItem::paint(QPainter *painter)
{
qDebug() << painter->clipBoundingRect() << painter->clipPath();
}
它将显示:
QRectF(10,20 30x20)
QPainterPath: Element count=5
-> MoveTo(x=10, y=20)
-> LineTo(x=40, y=20)
-> LineTo(x=40, y=40)
-> LineTo(x=10, y=40)
-> LineTo(x=10, y=20)