summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativepositioners.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix flow layout not taking into account whether it's width and height are ↵Joona Petrell2010-06-291-2/+2
| | | | | | | implicit or not. Task-number: QTBUG-11778 Reviewed-by: Martin Jones
* doc: add note that items with width or height of 0 are not positioned.Martin Jones2010-06-171-0/+8
|
* Doc improvements, including snippet fixes, linking to examples, makingBea Lam2010-06-111-0/+6
| | | | docs more consistent
* Don't layout multiple times when an ancestor becomes (in)visible.Martin Jones2010-06-081-7/+11
| | | | | | | It is also only necessary to omit positioning an item if it is explicitly not visible. Task-number: QTBUG-11236
* Doc fixes and improvements - fix some example code, link toBea Lam2010-06-021-48/+53
| | | | examples from class docs and improve assorted docs
* Don't crash due to recursive positioning.Martin Jones2010-05-171-24/+36
| | | | | | Also extend positioner anchor check to include fill and centerIn. Task-number: QTBUG-10731
* Use enum rather than string for easing type.Yann Bodson2010-05-051-1/+1
|
* docWarwick Allison2010-05-051-7/+7
| | | | Task-number: QTBUG-10386
* Remove obsolete doc groupings.Michael Brasser2010-05-041-5/+0
|
* Don't create an anchors element so that we can check that there aren't anyMartin Jones2010-04-301-18/+30
|
* Mark some properties in QDeclarativeItem as private properties.Alexis Menard2010-04-291-4/+4
| | | | | | | QDeclarativeItem will be public, all properties that are relaying on private types must be private too. Reviewed-by:akennedy
* Doc - micro fix.Martin Jones2010-04-281-1/+0
|
* Setting conflicting anchors to items inside positioners should print a warningJoona Petrell2010-04-281-0/+69
| | | | | Task-number: QTBUG-9025 Reviewed-by: Martin Jones
* Add flow property to Grid, adding TopToBottom mode.Martin Jones2010-04-151-39/+99
| | | | Task-number: QTBUG-9183
* Don't crash when columns == 0Martin Jones2010-04-141-4/+5
| | | | Task-number: QTBUG-9805
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Set positioner size to final size, rather than some random size mid animationMartin Jones2010-04-011-16/+23
| | | | Task-number: QTBUG-9559
* Relayout items when Flow size changes.Martin Jones2010-03-291-0/+3
| | | | | | Also add Flow tests. Task-number: QTBUG-9421
* Doc AugmentationAlan Alpert2010-03-261-1/+3
| | | | Task-number: QTBUG-9396
* Doc fix.Michael Brasser2010-03-251-1/+1
|
* Remove dead performance measurement code from QMLAaron Kennedy2010-03-221-4/+0
|
* Ensure positioner animations are triggered correctlyMartin Jones2010-03-221-18/+25
| | | | Task-number: QTBUG-9219
* Handle itemsInserted/Removed/Moved() correctly for repeater.Martin Jones2010-03-091-2/+5
| | | | | | Also make positioners react correctly to item moves. Task-number: QT-745
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+891
QDeclarativeXXX.