summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativepathview_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Ensure PathView updates positions when path changes.Michael Brasser2010-10-061-0/+1
| | | | | | | | Fixes regression caused by optimization added in commit 35a51442ed21f58c06b21293eeb56e843251ee82. Task-number: QTBUG-14239 Reviewed-by: Martin Jones
* Fix PathView item position on insertion and removal.Martin Jones2010-09-061-0/+1
| | | | | | | Ensure the offset is adjusted to account for the new or removed items. Also minor optimizations to delegate updates. Task-number: QTBUG-13416
* Add moving and flicking properties to PathViewMartin Jones2010-07-291-0/+13
| | | | | | | | | | PathView handles its own mouse interaction, but lacked properties similar to those in Flickable to determine when it is stationary. This made it impossible to start an animation when the view stops moving, for example. Task-number: QTBUG-12497 Reviewed-by: Warwick Allison
* Don't export declarative private classesMartin Jones2010-07-011-1/+1
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* If a pathview delegate changes size, reposition center on pathMartin Jones2010-05-271-0/+1
| | | | Task-number: QTBUG-11006
* Add an example spinner.Martin Jones2010-05-131-0/+4
| | | | | Also add missing increment/decrementCurrentIndex() slots to PathView, and tweak the number of points cached along a Path.
* Ensure PathView "attribute" attached properties are created correctlyMartin Jones2010-05-111-0/+1
| | | | | | | | If an item was created spontaneously (i.e. delegate is a package and some other view created the item), ensure its attached properties are correctly initialized. Task-number: QTBUG-10527
* Add highlightMoveDuration to views.Martin Jones2010-04-081-0/+5
| | | | Task-number: QTBUG-7568
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-1/+1
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Fix compilation with Sun CC: no semi-colon after Q_ENUM.Thiago Macieira2010-03-311-1/+1
| | | | | | | Error was: "graphicsitems/qdeclarativepathview_p.h", line 80: Error: "}" expected instead of ";" Reviewed-by: Olivier Goffart
* Added highlight ranges/modes to PathViewMartin Jones2010-03-261-4/+19
| | | | Task-number: QT-319
* Begin dragging PathView up to the level (quality and functionality) of other ↵Martin Jones2010-03-251-1/+24
| | | | | | views. Task-number: QT-319
* Add PathView.isCurrentIndex and PathView.view attached propertiesMartin Jones2010-03-081-2/+49
| | | | | | Adding PathView attached properties to be in line with other views. Task-number: QT-319
* Add NOTIFY signals to list, grid and path viewsJoona Petrell2010-03-021-6/+12
| | | | Reviewed-by: akennedy
* React to QAbstractItemModel::modelReset() signal.Martin Jones2010-02-251-0/+1
| | | | Task-number: QTBUG-8494
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+134
QDeclarativeXXX.