summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxflickable.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Avoid spurious flicks due to quick clicking motions.Martin Jones2009-09-111-10/+20
|
* Rename QFxItem::children() to QFxItem::fxChildren()Alan Alpert2009-09-091-2/+2
| | | | | | | No more accidental hiding. Differently named functions for QObject children: children() QGraphicsItem children: childItems() QFxItem children: fxChildren()
* Add a pressDelay property to Flickable.Martin Jones2009-09-081-2/+86
| | | | | Helps reduce undesireable effects of reacting to a press immediately before a drag/flick.
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-09-041-193/+172
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/fx/qfxflickable.cpp
| * Remove dragMode property from Flickable.Martin Jones2009-09-031-133/+49
| |
| * Flickable visible area properties moved into visibleArea as dot props.Martin Jones2009-09-031-76/+139
| |
* | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-09-021-13/+19
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Flickable locked property changed to interactive.Martin Jones2009-09-021-9/+15
| | | | | | | | Note that the meaning of the property has been reversed.
| * Clear animation only in the direction being fixed in fixupX/Y.Martin Jones2009-09-021-4/+4
| |
* | Fix animation-after-zooming problem.Warwick Allison2009-09-021-2/+2
|/ | | | | | | Ensures final viewport XY is set and that setting it always clears animations (even if the position is coincidentally unchanged). Case is changing width/height twice - once too small, then large enough again, first change starts correction animation, which must be stopped by second change.
* Fix combined horizontal and vertical flickingMartin Jones2009-08-281-4/+4
|
* Make a number of Flickable API changes following review.Martin Jones2009-08-281-47/+51
|
* Deal better with extents changing while flicking.Martin Jones2009-08-281-65/+104
| | | | | | Flicks could stop at some odd places if the viewport size changed during flicking. We now attempt to adjust to the correct behaviour at the ends of the viewport.
* Fix glitches when dragging a ListView.Martin Jones2009-08-271-15/+4
|
* Renaming Rect -> RectangleYann Bodson2009-08-191-1/+1
|
* Doc cleanup.Yann Bodson2009-08-171-67/+3
|
* Get rid of QFxItem::options.Michael Brasser2009-07-311-5/+5
| | | | They can all be set directly with QGraphicsItem flags or functions.
* More QFxItem cleanup.Michael Brasser2009-07-311-2/+4
|
* More QFxItem cleanup.Michael Brasser2009-07-301-1/+1
|
* Don't create a zero distance flick. Make fixupX and fixupY equivalent.Martin Jones2009-07-291-5/+7
|
* Allow span of versions to be defined, not just one.Warwick Allison2009-07-231-1/+1
| | | | Span is from version where introduced (all 4.6) to current QT_VERSION.
* Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-231-1/+1
| | | | | Adjust examples and demos accordingly. As per QT-558
* First round of cleanups for QFxItemLars Knoll2009-07-221-1/+1
| | | | | Removed some methods that are already implemented in QGraphicsItem/Object.
* Fix mouse grabbing for Flickable and PathView.Michael Brasser2009-07-131-0/+1
|
* Fix ChildMouseFilterMichael Brasser2009-07-101-1/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-101-3/+9
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-gv Conflicts: examples/itemviews/frozencolumn/main.cpp src/declarative/canvas/qsimplecanvas.cpp src/declarative/canvas/qsimplecanvas_p.h src/declarative/canvas/qsimplecanvasitem.h src/declarative/extra/qfxparticles.cpp src/declarative/fx/fx.pri src/declarative/fx/qfxblurfilter.h src/declarative/fx/qfxcontentwrapper.cpp src/declarative/fx/qfxflickable.cpp src/declarative/fx/qfxfocuspanel.h src/declarative/fx/qfxfocusrealm.h src/declarative/fx/qfxhighlightfilter.cpp src/declarative/fx/qfxhighlightfilter.h src/declarative/fx/qfximage.cpp src/declarative/fx/qfxitem.cpp src/declarative/fx/qfxitem.h src/declarative/fx/qfxrect.cpp src/declarative/fx/qfxreflectionfilter.h src/declarative/fx/qfxshadowfilter.cpp src/declarative/fx/qfxshadowfilter.h src/declarative/fx/qfxtext.cpp src/declarative/fx/qfxtext.h src/declarative/fx/qfxtextedit.cpp src/declarative/opengl/glbasicshaders.h src/declarative/test/qfxtestengine.cpp src/declarative/test/qfxtestengine.h src/declarative/test/qfxtestobjects.cpp src/declarative/test/qfxtestobjects.h src/declarative/test/qfxtestview.h src/declarative/util/qfxglobal.h src/declarative/util/qfxview.cpp src/gui/graphicsview/qgraphicsitem_p.h tools/qmlviewer/qmlviewer.cpp
| * Implement edge resistance for flickable dragging horizontally.Martin Jones2009-07-011-1/+7
| |
| * Rename notifiers: topChanged -> yChanged; leftChanged -> xChanged.Michael Brasser2009-06-301-2/+2
| |
* | Remove simple canvasAaron Kennedy2009-06-231-1/+1
|/
* Remove extraneous semicolons.Martin Jones2009-05-261-1/+1
| | | | Caused massive number of warnings with winscw
* Make scaling in flickr demo sensible.Martin Jones2009-05-121-0/+16
|
* Fix removal of items that span a range greater than the visible range.Martin Jones2009-05-081-0/+4
|
* setWidth() and setHeight() lost their virtual at some point :-/Martin Jones2009-05-081-6/+6
|
* docWarwick Allison2009-05-011-1/+1
|
* More format conversion.Martin Jones2009-05-011-12/+17
|
* Coding style refactor, changing 'if(' and 'for(' to 'if (' and 'for ('Leonardo Sobral Cunha2009-04-281-46/+46
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-04-271-8/+7
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/fx/qfxitem.cpp
| * Rename GfxValue to QmlTimeLineValue.Michael Brasser2009-04-271-1/+1
| |
| * Rename GfxEvent to QmlTimeLineEvent.Michael Brasser2009-04-271-2/+2
| |
| * Replace the use of the obsolete GfxEasing with QEasingCurve.Michael Brasser2009-04-271-5/+4
| |
* | Fix warning.Martin Jones2009-04-271-1/+1
|/
* Add a QSimpleCanvasItem::ChildMouseFilter optionAaron Kennedy2009-04-241-116/+132
| | | | Child mouse filter only filters events sent to your children
* Merge in changes to old kinetic-dui branch.Michael Brasser2009-04-231-1/+1
|
* Initial import of kinetic-dui branch from the old kineticMichael Brasser2009-04-221-0/+1113