summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativegridview/data
Commit message (Collapse)AuthorAgeFilesLines
* highlightFollowsCurrentItem: false was not always honoredMartin Jones2010-12-091-2/+2
| | | | | | | | In some cases ListView and GridView would position the highlight despite highlightFollowsCurrentItem: false being specified. Task-number: QTBUG-15972 Reviewed-by: Michael Brasser
* Fix consistency of setting currentIndex in ListView and GridView.Martin Jones2010-10-141-0/+52
| | | | | | | | | | | 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-081-0/+32
| | | | | | | | 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-2910-10/+10
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Position GridView and ListView footer correctly when model cleared.Martin Jones2010-07-141-0/+32
| | | | Task-number: QTBUG-12167
* Ensure the view is correctly positioned at component complete.Martin Jones2010-06-231-1/+1
| | | | | | If a currentIndex has been specified, ensure the view starts at the correct position immediately, rather than scrolling to it after startup.
* Stop highlight animators for highlightFollowsCurrentItem: falseMartin Jones2010-05-201-0/+48
| | | | Task-number: QTBUG-10803
* 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
* Replace "property var " with "property variant " in QML codeAaron Kennedy2010-04-091-1/+1
|
* 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-182-0/+0
| | | | | The import order has changed, so test files that mirror element names needed to be renamed (or they would resolve as the type).
* Ensure currentIndex NOTIFY is emitted when currentIndex changes due to model ↵Martin Jones2010-03-101-0/+1
| | | | change.
* Add highlightRangeMode and snapMode to GridView.Martin Jones2010-03-091-0/+56
| | | | | | Brings ListView and GridView APIs closer. Task-number: QTBUG-8779
* Add NOTIFY signals to list, grid and path viewsJoona Petrell2010-03-021-0/+69
| | | | Reviewed-by: akennedy
* Test GridView.onAdd & GridView.onRemove. Reduce wait()sMartin Jones2010-03-011-0/+6
|
* React to QAbstractItemModel::modelReset() signal.Martin Jones2010-02-251-0/+39
| | | | Task-number: QTBUG-8494
* Don't crash if the currentIndex is set while creating a delegate.Martin Jones2010-02-241-0/+33
| | | | Task-number: QTBUG-8456
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-244-0/+133
QDeclarativeXXX.