summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2427-124/+124
| | | | QDeclarativeXXX.
* docWarwick Allison2010-02-241-1/+1
|
* docWarwick Allison2010-02-241-1/+1
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlWarwick Allison2010-02-2412-778/+499
|\ | | | | | | | | Conflicts: src/declarative/qml/qml.h
| * Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtMartin Jones2010-02-2412-778/+499
| |\ | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/advtutorial1.qdoc src/declarative/qml/qmlmoduleplugin.cpp src/declarative/util/qmlxmllistmodel.cpp
| | * Merge remote branch 'origin/master'Thiago Macieira2010-02-2314-31/+35
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/advtutorial1.qdoc doc/src/declarative/tutorial2.qdoc doc/src/declarative/tutorial3.qdoc src/declarative/graphicsitems/qmlgraphicsmousearea.cpp src/multimedia/playback/qmediaplayer.cpp
| | * \ Merge branch 'master' of git:qt/qtThiago Macieira2010-02-2132-32/+32
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/advtutorial1.qdoc doc/src/declarative/advtutorial2.qdoc doc/src/declarative/advtutorial3.qdoc doc/src/declarative/advtutorial4.qdoc doc/src/declarative/tutorial1.qdoc doc/src/declarative/tutorial2.qdoc doc/src/declarative/tutorial3.qdoc
| | * \ \ Merge remote branch 'origin/master'Thiago Macieira2010-02-207-50/+99
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/advtutorial1.qdoc
| | * | | | Doc: Collected the Declarative UI tutorials together and renamed them.David Boddie2010-02-1912-777/+498
| | | | | | | | | | | | | | | | | | | | | | | | Reviewed-by: Trust Me
* | | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlWarwick Allison2010-02-234-24/+13
|\ \ \ \ \ \ | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/declarative/util/qmlanimation.cpp src/declarative/util/qmlxmllistmodel.cpp
| * | | | | Adds QmlEasingValueType to qmlLeonardo Sobral Cunha2010-02-231-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now it's possible to use easing curve types directly in qml as value types, {easing.type: "OutBounce"; easing.amplitude: 3}, instead of the former ugly string format, like "easeOutBounce(amplitude:3.0)". Reviewed-by: akennedy
| * | | | | Make QmlBinding (and friends) privateAaron Kennedy2010-02-231-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QmlBinding exposes way too many implementation details to be confident about making it public right now.
| * | | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-232-6/+37
| |\ \ \ \ \
| | * | | | | Doc.Michael Brasser2010-02-231-6/+6
| | | | | | |
| * | | | | | Add support for setting the root index when using a QAbstractItemModel.Martin Jones2010-02-231-0/+1
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | Task-number: QT-2777
* | | | | | Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-232-21/+18
| |/ / / / |/| | | | | | | | | | | | | | Task-number: QT-2798
* | | | | Add documentation on QMLs memory management assumptionsAaron Kennedy2010-02-231-0/+31
|/ / / /
* | | | Documentation UpdateAlan Alpert2010-02-221-1/+5
| | | | | | | | | | | | | | | | | | | | Mention that the same game tutorial is now slightly different to the demo version.
* | | | Doc fixAlan Alpert2010-02-221-1/+1
| | | |
* | | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into ↵Qt Continuous Integration System2010-02-2216-32/+32
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-qml: Replace QmlList* and QList* support with a single QmlListProperty type Rename MouseRegion -> MouseArea Update QmlChanges with animation API changes. Document the default velocity of EaseFollow Remove use of unexprted private classes. Fix compile error on Solaris Increase durations when testing Behaviors. Add cached path rounded rect painting benchmark. Remove use of direct event posting. Use QTest::keyClick() for keys.
| * | | Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-223-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer).
| * | | Rename MouseRegion -> MouseAreaMartin Jones2010-02-2213-23/+23
| | |/ | |/|
* | | Doc: these files are NOT part of the test suite of the Qt toolkitThiago Macieira2010-02-2039-39/+39
|/ /
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtMartin Jones2010-02-1839-625/+854
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mkspecs/linux-g++-x11egl/qplatformdefs.h src/declarative/qml/qmldom.h src/declarative/util/qmlview.cpp src/declarative/util/qmlview.h tools/qdoc3/cppcodemarker.cpp tools/qmldebugger/standalone/canvasframerate.cpp tools/qmldebugger/standalone/engine.cpp tools/qmldebugger/standalone/expressionquerywidget.cpp tools/qmldebugger/standalone/expressionquerywidget.h tools/qmldebugger/standalone/objectpropertiesview.cpp tools/qmldebugger/standalone/objectpropertiesview.h tools/qmldebugger/standalone/objecttree.cpp tools/qmldebugger/standalone/qmldebugger.cpp tools/qmldebugger/standalone/watchtable.cpp tools/qmldebugger/standalone/watchtable.h
| * doc: Added "\sa {QML Basic Types} to each QML basic type page.Martin Smith2010-02-171-0/+17
| |
| * doc: Fixed some qdoc errors.Martin Smith2010-02-163-2/+3
| |
| * Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/oslo-staging-1Martin Smith2010-02-1639-612/+817
| |\
| | * Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1Jason McDonald2010-02-164-8/+10
| | |\
| | * | Fix broken license headers.Jason McDonald2010-02-1639-612/+817
| | | | | | | | | | | | | | | | Reviewed-by: Trust Me
| * | | doc: Fixed some qdoc errors.Martin Smith2010-02-162-2/+2
| | |/ | |/|
| * | doc: Fixed some qdoc errors.Martin Smith2010-02-162-5/+7
| | |
| * | doc: Fixed some qdoc errors.Martin Smith2010-02-162-3/+3
| |/
| * doc: Fixed some qdoc errors.Martin Smith2010-02-161-1/+5
| |
* | Doc: reformulate why we build a buttonHenrik Hartz2010-02-181-2/+3
| |
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlMartin Jones2010-02-182-46/+44
|\ \
| * | Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-182-46/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well.
* | | QmlView API review. See QmlChanges.txt for details.Martin Jones2010-02-181-0/+9
|/ /
* | Doc fixAlan Alpert2010-02-171-1/+5
| |
* | Fix minor doc typoAlan Alpert2010-02-171-1/+1
| |
* | Document loading QML from Qt resources.Martin Jones2010-02-171-0/+36
| |
* | Expose LayoutItem documentationAlan Alpert2010-02-161-0/+1
|/ | | | Also made it slightly more verbose.
* Document QtObjectAlan Alpert2010-02-082-1/+2
| | | | Task-number:QTBUG-6034
* Better documentation of "model" and "modelData" in delegates.Martin Jones2010-02-081-5/+63
| | | | Task-number: QTBUG-6396
* Document QmlContext ownership.Martin Jones2010-02-041-1/+4
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2010-02-043-173/+289
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Augment documentationAlan Alpert2010-02-032-0/+32
| | | | | | | | Document automatic signal handlers and QmlViewer.Screen.
| * doc: Converted the basic types page to use \qmlbasictypeMartin Smith2010-02-031-173/+257
| | | | | | | | | | The changes to qdoc3 to support this will be in the 4.7 master branch.
* | Document calling C++ methods from QML.Martin Jones2010-02-041-0/+95
|/
* We use JavaScript, not ECMAScript.Martin Jones2010-02-0312-38/+38
| | | | Task-number: QTBUG-7720
* Disallow ids that start with uppercase letters and update docs andBea Lam2010-02-032-12/+19
| | | | | | examples accordingly. Task-number: QT-2786