diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-06-17 12:15:14 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-06-17 12:15:14 (GMT) |
commit | 8a0e002ccc762ef3edbc3c9ad91b4d6017cb91bb (patch) | |
tree | b8a8186c0089cb8843d2cec1802e0064f25822e3 /src/gui/graphicsview/qgraphicsscene.cpp | |
parent | cd43fc3a5fed0b3c45050d1fb286cef39ee1ac52 (diff) | |
download | Qt-8a0e002ccc762ef3edbc3c9ad91b4d6017cb91bb.zip Qt-8a0e002ccc762ef3edbc3c9ad91b4d6017cb91bb.tar.gz Qt-8a0e002ccc762ef3edbc3c9ad91b4d6017cb91bb.tar.bz2 |
Make eveything internal for now but ready to see the light.
Diffstat (limited to 'src/gui/graphicsview/qgraphicsscene.cpp')
-rw-r--r-- | src/gui/graphicsview/qgraphicsscene.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsscene.cpp b/src/gui/graphicsview/qgraphicsscene.cpp index 5a3028c..a33cb3e 100644 --- a/src/gui/graphicsview/qgraphicsscene.cpp +++ b/src/gui/graphicsview/qgraphicsscene.cpp @@ -220,7 +220,8 @@ #include "qgraphicswidget.h" #include "qgraphicswidget_p.h" #include "qgraphicssceneindex.h" -#include "qgraphicsscenebsptreeindex_p_p.h" +#include "qgraphicsscenebsptreeindex.h" +#include "qgraphicsscenelinearindex.h" #include <QtCore/qdebug.h> #include <QtCore/qlist.h> @@ -1574,6 +1575,8 @@ void QGraphicsScene::setItemIndexMethod(ItemIndexMethod method) } /*! + \internal + \brief the item indexing method. This method allow to apply an indexing algorithm \a index to the scene, to speed up item discovery functions like items() and itemAt(). @@ -1595,6 +1598,8 @@ void QGraphicsScene::setSceneIndex(QGraphicsSceneIndex *index) } /*! + \internal + This method return the current indexing algorithm of the scene. \sa setSceneIndex(), QGraphicsSceneIndex |