QGraphicsTransform 类

QGraphicsTransform 类是抽象基类用于在 QGraphicsItems 构建高级变换。 更多...

头: #include <QGraphicsTransform>
qmake: QT += widgets
Since: Qt 4.6
继承: QObject
继承者:

QGraphicsRotation and QGraphicsScale

该类在 Qt 4.6 引入。

公共函数

QGraphicsTransform (QObject * parent = nullptr)
virtual ~QGraphicsTransform ()
virtual void applyTo (QMatrix4x4 * matrix ) const = 0

保护槽

void update ()

详细描述

As an alternative to QGraphicsItem::transform , QGraphicsTransform lets you create and control advanced transformations that can be configured independently using specialized properties.

QGraphicsItem allows you to assign any number of QGraphicsTransform instances to one QGraphicsItem . Each QGraphicsTransform is applied in order, one at a time, to the QGraphicsItem it's assigned to.

QGraphicsTransform is particularly useful for animations. Whereas QGraphicsItem::setTransform () lets you assign any transform directly to an item, there is no direct way to interpolate between two different transformations (e.g., when transitioning between two states, each for which the item has a different arbitrary transform assigned). Using QGraphicsTransform you can interpolate the property values of each independent transformation. The resulting operation is then combined into a single transform which is applied to QGraphicsItem .

Transformations are computed in true 3D space using QMatrix4x4 . When the transformation is applied to a QGraphicsItem , it will be projected back to a 2D QTransform . When multiple QGraphicsTransform objects are applied to a QGraphicsItem , all of the transformations are computed in true 3D space, with the projection back to 2D only occurring after the last QGraphicsTransform is applied. The exception to this is QGraphicsRotation , which projects back to 2D after each rotation to preserve the perspective effect around the X and Y axes.

If you want to create your own configurable transformation, you can create a subclass of QGraphicsTransform (or any or the existing subclasses), and reimplement the pure virtual applyTo () function, which takes a pointer to a QMatrix4x4 . Each operation you would like to apply should be exposed as properties (e.g., customTransform->setVerticalShear(2.5)). Inside you reimplementation of applyTo (), you can modify the provided transform respectively.

QGraphicsTransform can be used together with QGraphicsItem::setTransform (), QGraphicsItem::setRotation (),和 QGraphicsItem::setScale ().

另请参阅 QGraphicsItem::transform (), QGraphicsScale ,和 QGraphicsRotation .

成员函数文档编制

QGraphicsTransform:: QGraphicsTransform ( QObject * parent = nullptr)

Constructs a new QGraphicsTransform with the given parent .

[protected slot] void QGraphicsTransform:: update ()

Notifies that this transform operation has changed its parameters in such a way that applyTo () will return a different result than before.

When implementing you own custom graphics transform, you must call this function every time you change a parameter, to let QGraphicsItem know that its transformation needs to be updated.

另请参阅 applyTo ().

[virtual] QGraphicsTransform:: ~QGraphicsTransform ()

销毁图形变换。

[pure virtual] void QGraphicsTransform:: applyTo ( QMatrix4x4 * matrix ) const

This pure virtual method has to be reimplemented in derived classes.

It applies this transformation to matrix .

另请参阅 QGraphicsItem::transform () 和 QMatrix4x4::toTransform ().