summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsscenelinearindex_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Inverts the SortOrder in graphics scene to reflect the stacking orderLeonardo Sobral Cunha2009-09-221-1/+1
| | | | | | | | Inverted all references of Qt::AscendingiOrder <-> Qt::DescendingOrder to make the order parameter consistent with the stacking order, as stated in the docs. The graphics scene index was using the wrong ordering convention. Reviewed-by: andreas
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Update contact URL in license headers.Jason McDonald2009-08-121-1/+1
| | | | Reviewed-by: Trust Me
* 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