summaryrefslogtreecommitdiffstats
path: root/examples/declarative/listview
Commit message (Collapse)AuthorAgeFilesLines
* Rename QML Runtime (executable) to QML LauncherKai Koehne2010-05-141-1/+1
| | | | | | | | The qml executable was first referred to as QML Viewer, then QML Runtime ... however, the latter one caused much confusion (see old version of qmlruntime.qdoc). Doc changes reviewed by Leena Miettinen.
* Flickable small API changes.Yann Bodson2010-05-121-1/+1
| | | | | | | | | | - Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones
* More cleanupYann Bodson2010-05-063-5/+5
|
* CleanupYann Bodson2010-05-061-1/+1
|
* CleanupYann Bodson2010-05-061-9/+7
|
* Add .qmlproject files to declarative examples.Yann Bodson2010-04-201-0/+16
|
* Example fixesBea Lam2010-04-133-11/+21
|
* Fix code style in examplesBea Lam2010-04-136-114/+200
|
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-1/+1
|
* Renamed 'source' property from SpringFollow to 'to'Leonardo Sobral Cunha2010-04-081-1/+1
|
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-0810-10/+10
|
* Replace Text::wrap property with Text::wrapMode enumeration.Martin Jones2010-04-081-2/+4
| | | | wrap remains for a little while, and will produce a warning.
* Qt.Infinite -> Animation.InfiniteMichael Brasser2010-03-251-1/+1
| | | | | Too misleading to have on the Qt object, as it only means infinite for animation loops.
* Replace Animation's repeat property with loops.Michael Brasser2010-03-251-1/+1
| | | | | You can now loop a fixed number of times as well as forever. The old repeat behavior (loop forever) can be acheived with loops: Qt.Infinite.
* Fix examples after 47fb07c9fdf47584ae55f3412102bbeef5576b04.Yann Bodson2010-03-181-0/+0
|
* declarative examples cleanupYann Bodson2010-03-051-5/+3
|
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-022-2/+2
| | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error.
* Renamed Flickable viewportXXX properties contentXXXMartin Jones2010-02-261-3/+3
| | | | A viewport is the thing you look through, not what you look at.
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-225-10/+10
|
* More strict type checking of ListElement properties.Warwick Allison2010-02-192-3/+3
| | | | Task-number: QTBUG-6203
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-183-3/+3
| | | | | | | | | | | has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well.
* Disallow ids that start with uppercase letters and update docs andBea Lam2010-02-033-4/+4
| | | | | | examples accordingly. Task-number: QT-2786
* Allow a ListView.section.delegate to avoid creating sections in delegate.Martin Jones2009-12-161-15/+10
|
* Faster sections.Martin Jones2009-12-161-1/+2
|
* Some UTF8Warwick Allison2009-11-291-1/+1
|
* Rename targets -> matchTargets and properties -> matchProperties.Michael Brasser2009-11-063-3/+3
|
* Update viewport size when items are added/removed/resized.Martin Jones2009-10-281-0/+22
|
* Improve feel of flicking itemlist demo pages.Martin Jones2009-10-281-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-281-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * QT-2382Yann Bodson2009-10-281-1/+1
| |
* | Mode improvement to strictly enforced highlight range movement.Martin Jones2009-10-281-0/+1
|/
* forgot iconsYann Bodson2009-10-276-0/+0
|
* listview/dynamic improvementsYann Bodson2009-10-271-56/+52
|
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Yann Bodson2009-10-272-5/+6
|\ | | | | | | into kinetic-declarativeui
| * Improve highlight range API and fix incorrect list end calc.Martin Jones2009-10-272-5/+6
| |
* | make listview/dynamic.qml work againYann Bodson2009-10-272-11/+13
|/
* Do not use 'resources:' in examplesYann Bodson2009-10-091-110/+118
|
* lowercase idsYann Bodson2009-10-068-97/+91
|
* Use new property nameAaron Kennedy2009-09-231-2/+2
|
* ListView currentItemMode API replaced with highlight range API.Martin Jones2009-09-142-24/+23
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-09-111-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-09-112-2/+34
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | current -> currentItem property in ListView and GridViewMartin Jones2009-09-111-1/+1
| | |
* | | Ensure text size changes when text is made empty, or elides to empty.Warwick Allison2009-09-111-2/+2
| |/ |/| | | | | | | Previously, old size would persist if text changed from non-"" to "". Elide text in example (tests and demonstrates)
* | tweakWarwick Allison2009-09-112-2/+34
|/
* Follow renamed to SpringFollow.Martin Jones2009-09-101-1/+1
|
* clearer exampleWarwick Allison2009-09-091-4/+12
|
* Modifying ListModel from JS: work for structured data too.Warwick Allison2009-09-091-4/+44
|
* Missed icons.Warwick Allison2009-09-083-0/+0
|
* Dynamic QmlListModelWarwick Allison2009-09-081-0/+91
| | | | | Reveals a number of bugs in ListView (and probably others). Basic ugly example for now.