summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeflickable_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Update licenseheader text in source filesJyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Prevent recursion due to nested Flickables with pressDelayMartin Jones2011-02-211-0/+1
| | | | | | | | | The outermost Flickable handles pressDelay for all descendents, rather than having it cascade up and replayed multiple times. Change-Id: Id294862469f3ce56b0940fbbb0e041d4c9f64f28 Task-number: QTBUG-17361 Reviewed-by: Michael Brasser
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-1/+1
|\
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Add versioning for new Flickable methods.Martin Jones2011-01-111-3/+2
| | | | | | | | Task-number: QTBUG-15148
* | Allow resizing Flickable content about a center point.Martin Jones2010-11-291-0/+4
|/ | | | | | | Useful for zooming via pinch, for example. Task-number: QTBUG-15148 Reviewed-by: Aaron Kennedy
* Flickable 'moving' parameter stays at true when setting contentY.Martin Jones2010-10-211-0/+2
| | | | | | | | Since all animation is reset when changing contentX or contentY the appropriate moving properties should be false. Task-number: QTBUG-14583 Reviewed-by: Michael Brasser
* ListView.visibleArea.heightRatio should not emit a signal when it does not ↵Yann Bodson2010-10-181-1/+0
| | | | | | | change. Task-number: QTBUG-14492 Reviewed-by: Michael Brasser
* Remove deprecated Flickable.flickDirectionMartin Jones2010-07-071-3/+0
|
* Don't export declarative private classesMartin Jones2010-07-011-1/+1
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* Restore neutral movement state if a view is manually positioned.Martin Jones2010-06-241-2/+2
| | | | | | | 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-1/+2
| | | | | | | | 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
* Remove deprecated Flickable::overshoot property.Martin Jones2010-05-261-5/+0
|
* Follow-up on Flickable changes.Yann Bodson2010-05-131-6/+10
| | | | | | | - 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-16/+27
| | | | | | | | | | - 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
* Replace Flickable overshoot property with boundsBehaviorMartin Jones2010-04-221-1/+8
| | | | Task-number: QTBUG-9993
* Port Flickable and Flipable to support QGraphicsObject.Alexis Menard2010-03-251-2/+2
| | | | | | Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too. Reviewed-by:akennedy
* Remove code dupliation in fixupX/Y(), flickX/Y()Martin Jones2010-03-081-2/+2
| | | | Also some minor perf improvements by avoiding signal/slot connection
* Renamed Flickable viewportXXX properties contentXXXMartin Jones2010-02-261-21/+16
| | | | A viewport is the thing you look through, not what you look at.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+214
QDeclarativeXXX.