summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicstransform.h
Commit message (Collapse)AuthorAgeFilesLines
* Compile with Q_DECLARE_SCOPED_PRIVATE.Jason Barron2009-08-041-4/+4
| | | | | These classes were moved so they were not updated correctly when I did the merge.
* Docs: Improve QGraphicsTransform and subclassesAndreas Aardal Hanssen2009-07-311-0/+1
| | | | | | | | Fix a few typos and add more descriptive documentation to the class itself and its subclasses. Reviewed-by: Volker Hilsheimer Reviewed-by: Martin Smith
* Use correct license header.Volker Hilsheimer2009-07-291-2/+2
|
* Make autotests compile: s/slots/Q_SLOTSVolker Hilsheimer2009-07-291-1/+1
| | | | Reviewed-by: Trustme
* Implement new transformation handling for graphics items.Lars Knoll2009-07-291-0/+168
The idea of having separate rotationX/Y/Z, shearX/Y, etc. methods in QGraphicsItem turned out to be not giving us the flexibility we need and wanted. The new code now implements a different scheme, where we keep simple rotate (around z-axis), scale and transformOriginPoint methods, but remove the other ones. Instead we now have an additional list of QGraphicsTransform object. QGraphicsTransform is an abstract class that inherits QObject. Several specializations are provided and can be used to transform (and through property bindings animate) the item. Reviewed-By: Andreas