summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeflickable.cpp
Commit message (Collapse)AuthorAgeFilesLines
* emit onMovementStarted/Ended/Changed on wheel eventsMartin Jones2010-04-141-0/+4
| | | | Task-number: QTBUG-9804
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Fix Flickable::visibleArea.xPosition, Flickable::visibleArea.yPosition docsMartin Jones2010-04-011-2/+4
| | | | Task-number: QTBUG-9499
* Fix parenting after 6f88388db4e8e202780d789e66664ff824691948.Michael Brasser2010-03-301-1/+2
|
* Port Flickable and Flipable to support QGraphicsObject.Alexis Menard2010-03-251-2/+2
| | | | | | Replacing QDeclarativeItem* members by QGraphicsObject*. Build fix too. Reviewed-by:akennedy
* Schedule view relayout after itemsInserted/Removed()Martin Jones2010-03-101-0/+3
| | | | | So that they handle model changes involving multiple insertion and deletion without entering the event loop.
* Remove code dupliation in fixupX/Y(), flickX/Y()Martin Jones2010-03-081-204/+181
| | | | Also some minor perf improvements by avoiding signal/slot connection
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-03-051-1/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (72 commits) Doc: Enabled the context menu in the spreadsheet demo. Updated URLs. Doc: Applied suggestion for an improvement to the foreach documentation. Doc: Added a note about the lack of standard file copy/paste on X11. Doc: Fixed the row number for a widget in two parts of the tutorial. Doc: Fixed typos. Reduce compiling time of QScriptValue autotest suite on Windows. Optimize QScriptValue autotest generator. Set database write behavior to synchronous=OFF and increase page cache. doc: Fixed some qdoc errors. Setting ImhHiddenText for NoEcho line edits is not 100% correct, but still way better than fully visible text. Allow building documentation without all of Qt Added a documentation for the new enum value in gesture api. Remove the OBJECTS_DIR variable assignment from some projets in Qt. Fix compile qmake/MinGw: Link statically for Qt Creator to be able to detect it. Enable two fast path for blend_tiled_rgb565 Avoid QString reallocation for smallcaps fonts in Itemizer::generate() Make QLabel::text a reloadable property remove non wifi interfaces from being handled. ...
| * QtDeclarative: Fix compiler warningsFriedemann Kleint2010-03-021-1/+0
| | | | | | | | | | class/struct mixups, unused variables. Reviewed-by: Thomas Hartmann <thartman@trolltech.com>
* | Fix mouse stealing in nested flickables.Martin Jones2010-03-031-7/+13
|/ | | | | | | Set intent to steal mouse, but don't steal the initiating event. This allows other, higher Flickables to override lower. Task-number: QTBUG-5292
* Merge remote branch 'origin/master' into 4.7Thiago Macieira2010-02-271-0/+1
| | | | | | | | | | | | | | | | | | | | | Conflicts: src/corelib/kernel/qmetatype.cpp src/declarative/graphicsitems/qdeclarativeevents.cpp src/declarative/graphicsitems/qdeclarativeflickable.cpp src/declarative/graphicsitems/qdeclarativegridview.cpp src/declarative/qml/qdeclarativescript.cpp src/declarative/util/qdeclarativeanimation.cpp src/declarative/util/qdeclarativebehavior.cpp src/declarative/util/qdeclarativeeasefollow.cpp src/declarative/util/qdeclarativefontloader.cpp src/declarative/util/qdeclarativelistmodel.cpp src/declarative/util/qdeclarativespringfollow.cpp src/declarative/util/qdeclarativestategroup.cpp src/declarative/util/qdeclarativesystempalette.cpp src/declarative/util/qdeclarativetimer.cpp src/declarative/util/qmlstateoperations.cpp src/multimedia/qml/qdeclarativeaudio.cpp src/multimedia/qml/qdeclarativevideo.cpp
* Make Flickable overshoot behavior nicer.Martin Jones2010-02-261-19/+48
|
* Tiny doc tweak.Martin Jones2010-02-261-1/+1
|
* Fix Flickable.overShoot doc - it is a bool not a realMartin Jones2010-02-261-2/+2
|
* Renamed Flickable viewportXXX properties contentXXXMartin Jones2010-02-261-41/+23
| | | | 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/+1324
QDeclarativeXXX.