summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsscenelinearindex_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Compile fix with namepaceshjk2009-07-201-7/+7
| | | | | | Some QT_{BEGIN,END}_HEADER macros had been missing or misplaced. Reviewed-by: thiago
* Fix license header in new files - make testcase pass.Volker Hilsheimer2009-07-151-3/+3
|
* More re-factoring of QGraphicsSceneIndex.Bjørn Erik Nilsen2009-07-021-2/+1
| | | | | | | | | | New method: QGraphicsSceneIndex::estimateTopLevelItems. QGraphicsSceneIndex::estimateItems returns *all* items within the rect, but we are only interested in the top-levels (those that are within the rect themselves or have descendants within the rect) when doing recursive drawing/item-lookup. All auto-tests pass. Demos/examples/manualtests run fine.
* More work on getting autotests to pass.Andreas Aardal Hanssen2009-06-231-7/+0
|
* QGraphicsSceneLinearIndex: touch-ups.Andreas Aardal Hanssen2009-06-221-23/+16
|
* Move QGraphicsSceneLinearIndex into private headers (=> _p.h).Andreas Aardal Hanssen2009-06-181-0/+124
| | | | | | We want to keep this as private API for now. Reviewed-by: Alexis
* Make eveything internal for now but ready to see the light.Alexis Menard2009-06-171-118/+0
|
* Remove old legacy and fix documentation.Alexis Menard2009-06-161-18/+19
|
* Remove the sorting cache from the QGraphicsScene and move it to the BSP.Alexis Menard2009-06-031-1/+1
| | | | | Now the QGraphicsScene has no idea how works the index. So we can improve it separatly, add new ones and benchmarks existing ones.
* First bunch of changes after an very first API reviewAlexis Menard2009-05-291-13/+4
| | | | | | This basically move some logic from the scene to the index base class. Lot of work need to be done in order to benefits from the device transform. The sorting needs to be move in the BSP tree.
* Remove the indexing (BSP) logic from the sceneAlexis Menard2009-04-071-0/+126
We basically add a new index that implement the old BSP logic but in a separate class instead of living into the QGraphicsScene. It will be much more easier to add a new index method or for people to use their own Conflicts: src/gui/graphicsview/qgraphicsitem.cpp src/gui/graphicsview/qgraphicssceneindex.h