summaryrefslogtreecommitdiffstats
path: root/doc/src/graphicsview.qdoc
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-07-29 01:01:07 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-07-29 01:01:07 (GMT)
commitb3d030df07ba59059e3d6ecf6e1967cbf1f30d49 (patch)
treee0a939a1381c2b983c7fdc79c5f116f87b3a3bc6 /doc/src/graphicsview.qdoc
parent93ad359f93de72ef8c4d5f0073dc20ba22b9023c (diff)
parenta6ea9ce6990003856ecadcca8ce9ddf37949363d (diff)
downloadQt-b3d030df07ba59059e3d6ecf6e1967cbf1f30d49.zip
Qt-b3d030df07ba59059e3d6ecf6e1967cbf1f30d49.tar.gz
Qt-b3d030df07ba59059e3d6ecf6e1967cbf1f30d49.tar.bz2
Merge branch 'master' of ../qt into kinetic-declarativeui
Conflicts: configure.exe src/gui/graphicsview/qgraphicsitem.cpp src/gui/graphicsview/qgraphicsitem.h src/gui/graphicsview/qgraphicsitem_p.h src/gui/graphicsview/qgraphicsscene.cpp src/gui/widgets/qlineedit.cpp
Diffstat (limited to 'doc/src/graphicsview.qdoc')
-rw-r--r--doc/src/graphicsview.qdoc10
1 files changed, 3 insertions, 7 deletions
diff --git a/doc/src/graphicsview.qdoc b/doc/src/graphicsview.qdoc
index f42c0d4..89f9f3d 100644
--- a/doc/src/graphicsview.qdoc
+++ b/doc/src/graphicsview.qdoc
@@ -141,7 +141,7 @@
to scene coordinates where appropriate), before sending the events
to the visualized scene.
- Using its transformation matrix, QGraphicsView::matrix(), the view can
+ Using its transformation matrix, QGraphicsView::transform(), the view can
\e transform the scene's coordinate system. This allows advanced
navigation features such as zooming and rotation. For convenience,
QGraphicsView also provides functions for translating between view and
@@ -174,7 +174,7 @@
also provides many functions for mapping coordinates between the item
and the scene, and from item to item. Also, like QGraphicsView, it can
transform its coordinate system using a matrix:
- QGraphicsItem::matrix(). This is useful for rotating and scaling
+ QGraphicsItem::transform(). This is useful for rotating and scaling
individual items.
Items can contain other items (children). Parent items'
@@ -461,11 +461,7 @@
By making an item a child of another, you can achieve the most
essential feature of item grouping: the items will move together, and
- all transformations are propagated from parent to child. QGraphicsItem
- can also handle all events for its children (see
- QGraphicsItem::setHandlesChildEvents()). This allows the parent item
- to act on behalf of its children, effectively treating all items as
- one.
+ all transformations are propagated from parent to child.
In addition, QGraphicsItemGroup is a special item that combines child
event handling with a useful interface for adding and removing items