summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativegridview
Commit message (Collapse)AuthorAgeFilesLines
* Ensure header is considered when positioning content with snapping.Martin Jones2010-11-301-1/+1
| | | | | | | | | When snapping is enabled the header was ignored and content would be aligned with the first item rather than the header, when at the top of the view. Task-number: QTBUG-15710 Reviewed-by: Bea Lam
* Fix consistency of setting currentIndex in ListView and GridView.Martin Jones2010-10-142-0/+95
| | | | | | | | | | | The behaviour of setting the currentIndex out of bounds, was different depending upon whether it was set -ve, beyond the end, or before component completed. The behaviour is now consistent - setting the currentIndex out of bounds is allowed and will cause the currentItem and highlightItem to become null. Task-number: QTBUG-12571 Reviewed-by: Michael Brasser
* Ensure GridView header is visible at the top of the view.Martin Jones2010-10-082-0/+67
| | | | | | | | The view was scrolled to the top of the first item, rather than the top of the header. Task-number: QTBUG-13906 Reviewed-by: Michael Brasser
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-2911-12/+12
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Add test for view velocity update on setCurrentIndex()Martin Jones2010-09-131-0/+2
| | | | Task-number: QTBUG-13543
* Improve test reliability when running in parallel with other tests.Martin Jones2010-08-271-0/+9
|
* Fix ListView and GridView tests following off-by-one fixes.Martin Jones2010-08-261-2/+2
| | | | | | Our tests were verifying incorrect positions... Task-number: QTBUG-12822
* Position GridView and ListView footer correctly when model cleared.Martin Jones2010-07-142-0/+73
| | | | Task-number: QTBUG-12167
* Update tests following QDeclarativeFlickable::viewport() -> contentIem()Martin Jones2010-06-241-89/+89
|
* Ensure the view is correctly positioned at component complete.Martin Jones2010-06-232-29/+30
| | | | | | If a currentIndex has been specified, ensure the view starts at the correct position immediately, rather than scrolling to it after startup.
* Fix crash when changing ListView model with highlightRangeMode: ↵Martin Jones2010-06-091-0/+7
| | | | | | ListView.StrictlyEnforceRange Task-number: QTBUG-11328
* Make declarative autotests compile on Symbian abld build systemJoona Petrell2010-06-082-3/+6
| | | | | Task-number: Reviewed-by: Martin Jones
* Add header and footer to GridViewMartin Jones2010-06-031-0/+13
| | | | | | Also document them for both ListView and GridView Task-number: QTBUG-11191
* Stop highlight animators for highlightFollowsCurrentItem: falseMartin Jones2010-05-202-0/+78
| | | | Task-number: QTBUG-10803
* Symbian build fix to declarative auto and benchmark testsJoona Petrell2010-05-141-1/+8
| | | | | Task-number: QTBUG-9491 Reviewed-by: Martin Jones
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-218-8/+8
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Rename remaining import Qt 4.6 lines to import Qt 4.7Joona Petrell2010-04-141-2/+2
| | | | | Task-number: Reviewed-by: Martin Jones
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Yann Bodson2010-04-131-0/+3
|\ | | | | | | | | Conflicts: tests/auto/declarative/qdeclarativebehaviors/tst_qdeclarativebehaviors.cpp
| * Tweak tests to run in parallelAaron Kennedy2010-04-131-0/+3
| |
* | Optimize some autotestsYann Bodson2010-04-131-304/+257
|/
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-091-1/+1
|\
| * Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-1/+1
| |
* | Ensure GridView content position is stable when moving items.Martin Jones2010-04-091-0/+5
|/ | | | Task-number: QTBUG-9697
* 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.
* Fix flicking views at boundary with StricthighlighRangeMartin Jones2010-03-241-7/+3
| | | | Task-number: QTBUG-9256
* Fix tests after 47fb07c9fdf47584ae55f3412102bbeef5576b04.Michael Brasser2010-03-183-10/+10
| | | | | The import order has changed, so test files that mirror element names needed to be renamed (or they would resolve as the type).
* Add a positioning 'mode' to positionViewAtIndex()Martin Jones2010-03-111-4/+45
| | | | Provides more control over where and how the view is positioned.
* Ensure currentIndex NOTIFY is emitted when currentIndex changes due to model ↵Martin Jones2010-03-102-0/+6
| | | | change.
* Add highlightRangeMode and snapMode to GridView.Martin Jones2010-03-092-0/+104
| | | | | | Brings ListView and GridView APIs closer. Task-number: QTBUG-8779
* clearFocus() before setParentItem(0) on an item with focus.Martin Jones2010-03-081-3/+7
|
* Merge branch 'master' into 4.7Warwick Allison2010-03-021-10/+0
|\ | | | | | | | | Conflicts: tests/auto/declarative/qdeclarativegridview/tst_qdeclarativegridview.cpp
| * Add NOTIFY signals to list, grid and path viewsJoona Petrell2010-03-022-10/+184
| | | | | | | | Reviewed-by: akennedy
* | Add NOTIFY signals to list, grid and path viewsJoona Petrell2010-03-022-4/+187
| | | | | | | | Reviewed-by: akennedy
* | Test GridView.onAdd & GridView.onRemove. Reduce wait()sMartin Jones2010-03-012-26/+39
|/
* Renamed Flickable viewportXXX properties contentXXXMartin Jones2010-02-261-15/+15
| | | | A viewport is the thing you look through, not what you look at.
* React to QAbstractItemModel::modelReset() signal.Martin Jones2010-02-252-0/+82
| | | | Task-number: QTBUG-8494
* Don't crash if the currentIndex is set while creating a delegate.Martin Jones2010-02-242-0/+48
| | | | Task-number: QTBUG-8456
* Change autotest class prefix from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX ↵Leonardo Sobral Cunha2010-02-241-18/+18
| | | | to QDeclarativeXXX.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-246-0/+1105
QDeclarativeXXX.