summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativegridview.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Indicate default valuesBea Lam2010-07-211-4/+12
|
* Position GridView and ListView footer correctly when model cleared.Martin Jones2010-07-141-1/+4
| | | | Task-number: QTBUG-12167
* Follow -> Behaviormae2010-07-081-1/+1
| | | | Replace the usages of Follows with Behaviors, update docs.
* Changing currentIndex shouldn't cancel a flick unnecessarily.Martin Jones2010-07-061-11/+24
| | | | | | | If the new currentIndex is in view, then there is no need to cancel a flick that is in progress. Task-number: QTBUG-11405
* Docs - add more links to relevant examplesBea Lam2010-06-301-0/+2
| | | | Task-number: QTBUG-11754
* Restore neutral movement state if a view is manually positioned.Martin Jones2010-06-241-2/+19
| | | | | | | Make sure the previous movement state is cancelled if contentX or contentY are set directly. Task-number: QTBUG-11650
* Expose the Flickable's internal contentItemMartin Jones2010-06-241-10/+10
| | | | | | | | So that dynamically created items can be parented to the contentItem and be flicked with the rest of the content. Task-number: QTBUG-11674 Reviewed-by: Aaron Kennedy
* doc: note that calling methods before component completion may have no effectMartin Jones2010-06-231-0/+18
| | | | So use Component.onCompleted:
* Ensure the view is correctly positioned at component complete.Martin Jones2010-06-231-0/+9
| | | | | | If a currentIndex has been specified, ensure the view starts at the correct position immediately, rather than scrolling to it after startup.
* ListView.onRemove animation is not played when the list has only one item.Martin Jones2010-06-111-1/+1
| | | | Task-number: QTBUG-11285
* Make snapping work properly for highlight ranges > item sizeMartin Jones2010-06-111-13/+49
| | | | | | | Snapping was only being applied to the current item when it was at a highlight range boundary. Task-number: QTBUG-11304
* Avoid recursive refill() in List/GridViewMartin Jones2010-06-111-10/+6
| | | | Task-number: QTBUG-11362
* Document attached propertiesBea Lam2010-06-101-1/+1
|
* Fix crash when changing ListView model with highlightRangeMode: ↵Martin Jones2010-06-091-2/+6
| | | | | | ListView.StrictlyEnforceRange Task-number: QTBUG-11328
* Fix GridView bounds behavior with snapping enabled.Martin Jones2010-06-091-5/+11
| | | | Task-number: QTBUG-11299
* Add header and footer to GridViewMartin Jones2010-06-031-1/+189
| | | | | | Also document them for both ListView and GridView Task-number: QTBUG-11191
* Doc fixes and improvements - fix some example code, link toBea Lam2010-06-021-96/+89
| | | | examples from class docs and improve assorted docs
* Stop highlight animators for highlightFollowsCurrentItem: falseMartin Jones2010-05-201-5/+12
| | | | Task-number: QTBUG-10803
* Add a "priority" property to Keys and KeyNavigationMartin Jones2010-05-141-3/+4
| | | | | | Allows intercepting keys before or after normal item key processing. Task-number: QTBUG-10467
* Follow-up on Flickable changes.Yann Bodson2010-05-131-11/+8
| | | | | | | - flicking and moving properties will not be removed - onMovement* and onFlick* signals are back in Reviewed-by: Martin Jones
* Flickable small API changes.Yann Bodson2010-05-121-15/+29
| | | | | | | | | | - 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
* Don't store the role-property map for each individual item.Martin Jones2010-05-111-1/+1
| | | | | | | | C++ models share a single metaobject type, so we don't need to create role-property mappings for each individual item. Also warn on attempt to modify a role that the model is unaware of (part of QTBUG-10457)
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-05-061-2/+2
|\
| * qdoc fixesYann Bodson2010-05-061-2/+2
| |
* | Avoid warnings as delegates with bindings to parent are created and destroyed.Martin Jones2010-05-061-1/+3
|/ | | | Task-number: QTBUG-10359
* Doc: more clarification of cacheBufferMartin Jones2010-05-051-0/+3
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-05-051-1/+1
|\
| * Use enum rather than string for easing type.Yann Bodson2010-05-051-1/+1
| |
* | Fix cacheBuffer documentation.Martin Jones2010-05-051-6/+14
|/ | | | Task-number: QTBUG-10385
* Document delegate life cycle.Martin Jones2010-05-051-0/+3
| | | | Task-number: QTBUG-10353
* docWarwick Allison2010-05-051-9/+9
| | | | Task-number: QTBUG-10386
* Doc: mention that size of delegate affects flicking performance.Martin Jones2010-04-301-0/+5
|
* buffer new items on initialization.Martin Jones2010-04-301-2/+3
| | | | | | We weren't honoring buffer initially, only after a flick. Its better to buffer immediately, since it is often used to eliminate the cost of item creation in small lists.
* Fix snap at view boundaries with overshoot on.Martin Jones2010-04-281-4/+7
| | | | | The view would flick slowly at the boundaries if overshoot and snapping was enabled.
* Don't "adjust" the z value of a delegate that has been cached.Martin Jones2010-04-271-3/+5
| | | | Task-number: QTBUG-10131
* Replace Flickable overshoot property with boundsBehaviorMartin Jones2010-04-221-0/+1
| | | | Task-number: QTBUG-9993
* Fix highlight position with StrictlyEnforceRange and range greater than item ↵Martin Jones2010-04-211-19/+46
| | | | | | size. Task-number: QTBUG-9901
* Avoid painfully slow flicking to snap positions in GridViewMartin Jones2010-04-191-1/+10
| | | | Task-number: QTBUG-9994
* Always allow view position to be fixed.Martin Jones2010-04-191-6/+0
| | | | | | | | | | We used to avoid doing fixup in a direction we were not flicking. This was pointless, and caused bugs when the view transitioned from flickable to not flickable, e.g. by content size change. Fixup following content size is also no longer animated. This can be acheived using a behavoir, for example. Task-number: QTBUG-9961
* Doc: make note about using clip: true in views slightly more prominent.Martin Jones2010-04-161-1/+1
|
* Doc fix.Michael Brasser2010-04-141-3/+3
|
* Ensure view position is correct for highlight range modes that have a static ↵Martin Jones2010-04-131-3/+1
| | | | | | highlight Task-number: QTBUG-9791
* Ensure GridView content position is stable when moving items.Martin Jones2010-04-091-0/+2
| | | | Task-number: QTBUG-9697
* Calculate GridView columns regardless of whether we have a populated modelMartin Jones2010-04-081-1/+1
| | | | Task-number: QTBUG-9692
* Add highlightMoveDuration to views.Martin Jones2010-04-081-2/+35
| | | | Task-number: QTBUG-7568
* Fix warningMartin Jones2010-04-071-1/+1
|
* Keep track of the item count to avoid calling model->count() during batched ↵Martin Jones2010-04-071-10/+25
| | | | changes
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-4/+4
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Fix snapping in listview.Martin Jones2010-03-311-1/+3
|
* Finished file rename of qdeclarative easefollow to smoothedanimationLeonardo Sobral Cunha2010-03-301-1/+1
|