summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-04-2416-144/+236
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-24101-671/+2587
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-04-2499-706/+2834
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Propagate scene geometry changes to view.Warwick Allison2009-04-242-1/+10
| | | | | | | | | | | | | | | | Previously, only the initial size was honoured.
| | * | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-04-24116-1289/+1966
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: demos/declarative/webbrowser/WebBrowser.qml demos/declarative/webbrowser/content/pics/addressbar-filled.png demos/declarative/webbrowser/content/pics/addressbar.png demos/declarative/webbrowser/content/pics/back-disabled.png demos/declarative/webbrowser/content/pics/back.png demos/declarative/webbrowser/content/pics/footer.png demos/declarative/webbrowser/content/pics/forward-disabled.png demos/declarative/webbrowser/content/pics/forward.png demos/declarative/webbrowser/content/pics/header.png demos/declarative/webbrowser/content/pics/reload.png
| | * | | Compile.Warwick Allison2009-04-231-1/+1
| | | | |
| | * | | Nicer icons (KDE CrystalSVG)Warwick Allison2009-04-2315-7/+1
| | | | |
| * | | | Add a QSimpleCanvasItem::ChildMouseFilter optionAaron Kennedy2009-04-248-136/+225
| | | | | | | | | | | | | | | | | | | | Child mouse filter only filters events sent to your children
* | | | | Change Path, PathLine etc. coordinates to qreal. More docs.Martin Jones2009-04-242-85/+120
| |_|_|/ |/| | | | | | | | | | | | | | | Everything internally is qreal, so there's no point having the conversion.
* | | | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-04-2493-696/+2714
|\ \ \ \ | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * \ \ \ Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-04-246-43/+258
| |\ \ \ \ | | |/ / / | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | | Ensure -ve z stacks behind parent when using GraphicsViewAaron Kennedy2009-04-241-0/+9
| | | | |
| | * | | Don't manually stack children on GraphicsViewAaron Kennedy2009-04-241-5/+1
| | | | | | | | | | | | | | | | | | | | GraphicsView now has a sane default stacking order.
| | * | | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-2412-246/+124
| | |\ \ \ | | | | |/ | | | |/| | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | | Don't access internal QMetaProperty membersAaron Kennedy2009-04-241-5/+1
| | | | | | | | | | | | | | | | | | | | We can use the new QMetaProperty::propertyIndex() method instead.
| | * | | Add a Follow::followValue propertyAaron Kennedy2009-04-232-0/+22
| | | | |
| | * | | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-2346-561/+1213
| | |\ \ \ | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * \ \ \ Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-2312-176/+177
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | | | | Split up QmlMetaProperty::write() methodAaron Kennedy2009-04-232-33/+225
| | | | | | |
| * | | | | | Documentation fixes.Michael Brasser2009-04-2420-68/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduce the number of warnings from qdoc. \todo's have been made into tasks instead.
| * | | | | | Merge branch 'kinetic-animations' of git@scm.dev.nokia.troll.no:qt/kinetic ↵Michael Brasser2009-04-2366-577/+2403
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into kinetic-declarativeui
| | * | | | | | Fix a bug in the ease{In,Out}Bounce easing functions + small cleanup.Jan-Arve Sæther2009-04-232-109/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug was in easeOutBounce_helper(), where the last else-block adjusted t wrong. It should adjust t so that the peak is at t == 0, but it adjusted it too little. The old code did t -= (2.25f/2.75f), but it should have been 21/22. The rest of the changes in that function is just simple mathematical rewrites (use a more readable fraction), and removed the b argument, since that was always 0. Finally, fixing the original bug also revealed a bug in the first line of easeOutBounce_helper(), where we always returned 1.0 for t == 1.0. That was wrong since it did not respect c.
| | * | | | | | Remove trailing whitespaceJan-Arve Sæther2009-04-231-8/+8
| | | | | | | |
| | * | | | | | Remove trailing whitespaceJan-Arve Sæther2009-04-231-32/+32
| | | | | | | |
| | * | | | | | Moved the animation examples piemenu and photobrowser to examples/researchLeonardo Sobral Cunha2009-04-2316-0/+0
| | | | | | | |
| | * | | | | | Update copyright headers of animation examplesLeonardo Sobral Cunha2009-04-2354-110/+1937
| | | | | | | |
| * | | | | | | Expose basic BlendedImage docs.Michael Brasser2009-04-232-8/+23
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Documentation for Path, PathLine, etc.Martin Jones2009-04-247-10/+120
|/ / / / / /
* | | | | | Using QVariant interpolators in qml variant animationLeonardo Sobral Cunha2009-04-231-88/+3
| | | | | |
* | | | | | Make the documentation build.Alexis Menard2009-04-232-2/+0
| | | | | |
* | | | | | qdoc: Edited the documentation to remove numerous qdoc warnings.Martin Smith2009-04-231-7/+7
| | | | | |
* | | | | | Merge branch 'kinetic-declarativeui' of ↵Martin Smith2009-04-232-4/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | | | | Fix signal usage from QmlcomponentAlexis Menard2009-04-232-4/+4
| | | | | | |
* | | | | | | qdoc: Edited the documentation to remove numerous qdoc warnings.Martin Smith2009-04-234-16/+16
|/ / / / / /
* | | | | | Merge branch 'kinetic-declarativeui' of ↵Martin Smith2009-04-231-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | | | | The signal should emit the namespace as well otherwise a connect willAlexis Menard2009-04-231-1/+1
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | be not trivial.
* | | | | | qdoc: Edited the documentation to remove numerous qdoc warnings.Martin Smith2009-04-233-128/+93
|/ / / / /
* | | | | Merge branch 'kinetic-declarativeui' of ↵Ian Walters2009-04-2373-501/+691
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | | | Layouts: don't mess with the coordinate in the direction we are notMartin Jones2009-04-231-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | laying out.
| * | | | | Small doc fix - use a real element in the example.Martin Jones2009-04-231-2/+2
| | | | | |
| * | | | | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-04-2320-212/+204
| |\ \ \ \ \ | | | |_|/ / | | |/| | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | | | Merge branch 'kinetic-declarativeui' of ↵Yann Bodson2009-04-2357-315/+461
| | |\ \ \ \ | | | | |/ / | | | |/| | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | | * | | Make declarative autotests compile.Aaron Kennedy2009-04-236-23/+25
| | | | | | | | | | | | | | | | | | | | | | | | No guarentees are made as to whether they pass.
| | | * | | Remove QMetaObject hierarchy search from QmlMetaType::default*() methodsAaron Kennedy2009-04-231-10/+0
| | | | | | | | | | | | | | | | | | | | | | | | QMetaObject::indexOfClassInfo() already searches the entire hierarchy
| | | * | | Simplify dial example.Aaron Kennedy2009-04-231-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As Item::rotation is a subscribable property, the second (identical) Follow is unnecessary.
| | * | | | Cosmetic changes for the web browser demo.Yann Bodson2009-04-2312-176/+177
| | | |_|/ | | |/| |
| * | | | Component and ComponentInstance documentation.Martin Jones2009-04-234-1/+46
| | | | |
| * | | | Change the QML element docs filename prefix "qml-" rather than "qml".Martin Jones2009-04-232-5/+5
| | |/ / | |/| | | | | | | | | | Otherwise there is a clash with the QmlFoo C++ classes.
| * | | Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-04-233-16/+18
| |\ \ \ | | |/ / | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | Merge in changes to old kinetic-dui branch.Michael Brasser2009-04-2349-279/+434
| | | |