Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix off-by-one at end when views scroll to keep currentItem visible. | Martin Jones | 2010-08-26 | 1 | -6/+6 |
| | | | | | | | endPosition() is the last pixel of the item, i.e. width-1, so must add one to ensure the entire item is visible. Task-number: QTBUG-12822 | ||||
* | Fix ListView.view attached property with VisualItemModel | Martin Jones | 2010-08-26 | 1 | -1/+1 |
| | | | | | | | | We assumed that the attached object was created at the same time as the item. Task-number: QTBUG-13166 Reviewed-by: Aaron Kennedy | ||||
* | qdoc: Reorganized the QML elements table to be a dictionary... | Martin Smith | 2010-08-16 | 1 | -0/+2 |
| | | | | ...and a set of functional group pages. | ||||
* | Ensure currentItem is released when the delegate changes | Martin Jones | 2010-08-02 | 1 | -0/+5 |
| | | | | | | | | Otherwise a new delegate isn't created for the currentItem. GridView didn't release any item. It is now equivalent to LsitView. Task-number: QTBUG-12548 Reviewed-by: Bea Lam | ||||
* | Document elements that are focus scopes. | Yann Bodson | 2010-07-29 | 1 | -3/+5 |
| | | | | Task-number: QTBUG-12404 | ||||
* | Indicate default values | Bea Lam | 2010-07-21 | 1 | -4/+12 |
| | |||||
* | Position GridView and ListView footer correctly when model cleared. | Martin Jones | 2010-07-14 | 1 | -1/+4 |
| | | | | Task-number: QTBUG-12167 | ||||
* | Follow -> Behavior | mae | 2010-07-08 | 1 | -1/+1 |
| | | | | Replace the usages of Follows with Behaviors, update docs. | ||||
* | Changing currentIndex shouldn't cancel a flick unnecessarily. | Martin Jones | 2010-07-06 | 1 | -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 examples | Bea Lam | 2010-06-30 | 1 | -0/+2 |
| | | | | Task-number: QTBUG-11754 | ||||
* | Restore neutral movement state if a view is manually positioned. | Martin Jones | 2010-06-24 | 1 | -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 contentItem | Martin Jones | 2010-06-24 | 1 | -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 effect | Martin Jones | 2010-06-23 | 1 | -0/+18 |
| | | | | So use Component.onCompleted: | ||||
* | Ensure the view is correctly positioned at component complete. | Martin Jones | 2010-06-23 | 1 | -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 Jones | 2010-06-11 | 1 | -1/+1 |
| | | | | Task-number: QTBUG-11285 | ||||
* | Make snapping work properly for highlight ranges > item size | Martin Jones | 2010-06-11 | 1 | -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/GridView | Martin Jones | 2010-06-11 | 1 | -10/+6 |
| | | | | Task-number: QTBUG-11362 | ||||
* | Document attached properties | Bea Lam | 2010-06-10 | 1 | -1/+1 |
| | |||||
* | Fix crash when changing ListView model with highlightRangeMode: ↵ | Martin Jones | 2010-06-09 | 1 | -2/+6 |
| | | | | | | ListView.StrictlyEnforceRange Task-number: QTBUG-11328 | ||||
* | Fix GridView bounds behavior with snapping enabled. | Martin Jones | 2010-06-09 | 1 | -5/+11 |
| | | | | Task-number: QTBUG-11299 | ||||
* | Add header and footer to GridView | Martin Jones | 2010-06-03 | 1 | -1/+189 |
| | | | | | | Also document them for both ListView and GridView Task-number: QTBUG-11191 | ||||
* | Doc fixes and improvements - fix some example code, link to | Bea Lam | 2010-06-02 | 1 | -96/+89 |
| | | | | examples from class docs and improve assorted docs | ||||
* | Stop highlight animators for highlightFollowsCurrentItem: false | Martin Jones | 2010-05-20 | 1 | -5/+12 |
| | | | | Task-number: QTBUG-10803 | ||||
* | Add a "priority" property to Keys and KeyNavigation | Martin Jones | 2010-05-14 | 1 | -3/+4 |
| | | | | | | Allows intercepting keys before or after normal item key processing. Task-number: QTBUG-10467 | ||||
* | Follow-up on Flickable changes. | Yann Bodson | 2010-05-13 | 1 | -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 Bodson | 2010-05-12 | 1 | -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 Jones | 2010-05-11 | 1 | -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.7 | Martin Jones | 2010-05-06 | 1 | -2/+2 |
|\ | |||||
| * | qdoc fixes | Yann Bodson | 2010-05-06 | 1 | -2/+2 |
| | | |||||
* | | Avoid warnings as delegates with bindings to parent are created and destroyed. | Martin Jones | 2010-05-06 | 1 | -1/+3 |
|/ | | | | Task-number: QTBUG-10359 | ||||
* | Doc: more clarification of cacheBuffer | Martin Jones | 2010-05-05 | 1 | -0/+3 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-05-05 | 1 | -1/+1 |
|\ | |||||
| * | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 1 | -1/+1 |
| | | |||||
* | | Fix cacheBuffer documentation. | Martin Jones | 2010-05-05 | 1 | -6/+14 |
|/ | | | | Task-number: QTBUG-10385 | ||||
* | Document delegate life cycle. | Martin Jones | 2010-05-05 | 1 | -0/+3 |
| | | | | Task-number: QTBUG-10353 | ||||
* | doc | Warwick Allison | 2010-05-05 | 1 | -9/+9 |
| | | | | Task-number: QTBUG-10386 | ||||
* | Doc: mention that size of delegate affects flicking performance. | Martin Jones | 2010-04-30 | 1 | -0/+5 |
| | |||||
* | buffer new items on initialization. | Martin Jones | 2010-04-30 | 1 | -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 Jones | 2010-04-28 | 1 | -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 Jones | 2010-04-27 | 1 | -3/+5 |
| | | | | Task-number: QTBUG-10131 | ||||
* | Replace Flickable overshoot property with boundsBehavior | Martin Jones | 2010-04-22 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-9993 | ||||
* | Fix highlight position with StrictlyEnforceRange and range greater than item ↵ | Martin Jones | 2010-04-21 | 1 | -19/+46 |
| | | | | | | size. Task-number: QTBUG-9901 | ||||
* | Avoid painfully slow flicking to snap positions in GridView | Martin Jones | 2010-04-19 | 1 | -1/+10 |
| | | | | Task-number: QTBUG-9994 | ||||
* | Always allow view position to be fixed. | Martin Jones | 2010-04-19 | 1 | -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 Jones | 2010-04-16 | 1 | -1/+1 |
| | |||||
* | Doc fix. | Michael Brasser | 2010-04-14 | 1 | -3/+3 |
| | |||||
* | Ensure view position is correct for highlight range modes that have a static ↵ | Martin Jones | 2010-04-13 | 1 | -3/+1 |
| | | | | | | highlight Task-number: QTBUG-9791 | ||||
* | Ensure GridView content position is stable when moving items. | Martin Jones | 2010-04-09 | 1 | -0/+2 |
| | | | | Task-number: QTBUG-9697 | ||||
* | Calculate GridView columns regardless of whether we have a populated model | Martin Jones | 2010-04-08 | 1 | -1/+1 |
| | | | | Task-number: QTBUG-9692 | ||||
* | Add highlightMoveDuration to views. | Martin Jones | 2010-04-08 | 1 | -2/+35 |
| | | | | Task-number: QTBUG-7568 |