This function is called to handle this item's changes in
geometry from \a oldGeometry to \a newGeometry. If the two
geometries are the same, it doesn't do anything.
+
+ Derived classes must call the base class method within their implementation.
*/
void QQuickItem::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry)
{
QQuickItemPrivate::transform_clear);
}
+/*!
+ \reimp
+ Derived classes should call the base class method before adding their own action to
+ perform at classBegin.
+*/
void QQuickItem::classBegin()
{
Q_D(QQuickItem);
d->extra->layer->classBegin();
}
+/*!
+ \reimp
+ Derived classes should call the base class method before adding their own actions to
+ perform at componentComplete.
+*/
void QQuickItem::componentComplete()
{
Q_D(QQuickItem);