summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/elements.qdoc
Commit message (Collapse)AuthorAgeFilesLines
* qdoc fixes.Yann Bodson2010-05-061-0/+11
|
* CleanupYann Bodson2010-05-061-0/+1
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-271-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (30 commits) Ensure text document is created before we access it. Plugins documentation. Fix update issue when an item has an effect and child. Fix QDeclarativeTextInput and QGraphicsView in regards of input methods hints. Disallow "Qt" as namespace import Don't "adjust" the z value of a delegate that has been cached. Correctly inherit extension properties Autotests More QDeclarativeNetworkAccessManagerFactory doc clarification. Fix QDeclarativeNetworkAccessManagerFactory docs. Don't crash on invalid model remove signal. Ensure scheduled layout can occur before testing. Fix remaining 4.6 type registrations (to 4.7). doc anchor margins vs. anchor (line) state/animation. These examples should not be included in this test Unify naming of settings / UI to be "Qt Qml Runtime" Improved error messages for type resolving, new debug option Link to example files from tutorial pages Add tutorial for writing QML extensions no export in plugin ...
| * Doc fixes.Michael Brasser2010-04-231-0/+1
| |
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Peter Yard2010-04-271-6/+1
|\ \ | |/
| * Doc: in QML use "real" and "enumeration", not "qreal" and "enum"Martin Jones2010-04-161-6/+1
| |
* | Docs Changes to start page. Minor change to Elements doc. See also added to ↵Peter Yard2010-04-271-1/+1
|/ | | | some elements docs.
* Remove GraphicsObjectContainer from the documentation.Yann Bodson2010-04-121-1/+0
|
* Add highlightMoveDuration to views.Martin Jones2010-04-081-2/+8
| | | | Task-number: QTBUG-7568
* Labs (experimental) Gesture support.Warwick Allison2010-04-061-1/+2
| | | | By popular demand.
* Improve Transform docs.Martin Jones2010-04-011-0/+1
|
* Add media elements to the QML Elements docs.Martin Jones2010-04-011-9/+12
|
* Remove effects from element list.Martin Jones2010-04-011-4/+0
|
* Change and rename qml EaseFollow to SmoothedAnimationLeonardo Sobral Cunha2010-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QDeclarativeSmoothedAnimation inherits from QDeclarativeNumberAnimation, as a consequence SmoothedAnimation can be used inside Behaviors and as PropertySourceValues, like any other animation. The old EaseFollow properties changed to comply with the other declarative animations ('source' changed to 'to'), so now 'to' changes are not automatically 'followed' anymore. You can achieve the following behavior by putting a SmoothedAnimation inside a Behavior of a property that is bound to another, as the following example: If you want to follow an hypothetical rect1, you should do now: Rectangle { color: "green" width: 60; height: 60; x: rect1.x - 5; y: rect1.y - 5; Behavior on x { SmoothedAnimation { velocity: 200 } } Behavior on y { SmoothedAnimation { velocity: 200 } } } SmoothedAnimation also supports animating multiple target(s)/property(ies) in the transition case. When a QDeclarativeSmoothedAnimation is restarted, it will match the QDeclarativeProperty which were being animated and transfer the corresponding track velocity to the new starting animations. QSmoothedAnimation is an uncontrolled animation, duration == -1. The duration is set as -1 to avoid consecutive animation state changes stop()/start(). This is particularly useful when using QSmoothAnimation to 'follow' another property, which is also being animated (change the 'to' property every tick). Reviewed-by: Michael Brasser
* Relayout items when Flow size changes.Martin Jones2010-03-291-0/+1
| | | | | | Also add Flow tests. Task-number: QTBUG-9421
* Document Particles module import.Martin Jones2010-03-261-1/+0
|
* Remove ParentAction.Michael Brasser2010-03-231-1/+0
| | | | It has been replaced with ParentAnimation.
* Doc fixes.Bea Lam2010-03-161-1/+0
|
* Add AnchorAnimation for animating AnchorChanges.Michael Brasser2010-03-111-0/+1
| | | | Task-number: QT-2825
* ParentAnimation docs + test.Michael Brasser2010-03-051-0/+1
| | | | Task-number: QTBUG-8612
* Remove NumberFormatter and DateTimeFormatter.Michael Brasser2010-03-051-2/+0
| | | | | | | Functions have been added to QML's global Qt object for date/time formatting. Number formatting will not be supported for 4.7. Task-number: QT-2821
* RotationAnimation docs + test.Michael Brasser2010-03-041-0/+1
| | | | Task-number: QTBUG-8613
* Add docs and tests for WorkerListModel.Bea Lam2010-03-021-0/+2
| | | | Task-number: QT-2807
* Change Connection syntax as per QT-2822.Warwick Allison2010-02-261-1/+1
|
* Document PackageMartin Jones2010-02-251-0/+1
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-1/+1
| | | | QDeclarativeXXX.
* Add support for setting the root index when using a QAbstractItemModel.Martin Jones2010-02-231-0/+1
| | | | Task-number: QT-2777
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into ↵Qt Continuous Integration System2010-02-221-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * Rename MouseRegion -> MouseAreaMartin Jones2010-02-221-1/+1
| |
* | Doc: these files are NOT part of the test suite of the Qt toolkitThiago Macieira2010-02-201-1/+1
|/
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtMartin Jones2010-02-181-18/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * Fix broken license headers.Jason McDonald2010-02-161-18/+18
| | | | | | | | Reviewed-by: Trust Me
* | Expose LayoutItem documentationAlan Alpert2010-02-161-0/+1
|/ | | | Also made it slightly more verbose.
* Document QtObjectAlan Alpert2010-02-081-0/+1
| | | | Task-number:QTBUG-6034
* Doc.Michael Brasser2009-11-061-3/+0
|
* Doc.Michael Brasser2009-11-031-3/+4
|
* Remove QML SQL classesAaron Kennedy2009-10-281-1/+0
| | | | | Sadly, these are not being maintained. There's still SQL offline storage for all your SQL needs.
* Doc.Michael Brasser2009-10-281-1/+1
|
* Add basic QML docs for the effects.Michael Brasser2009-10-121-0/+7
|
* Improve qdoc generated QML documentation.Michael Brasser2009-10-091-1/+1
|
* doc cleanupYann Bodson2009-10-081-0/+41
|
* Some documentation link updatesThorbjørn Lindeijer2009-09-161-2/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-09-091-1/+0
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Move ComponentInstance functionality into LoaderMartin Jones2009-09-091-1/+0
| |
* | Add EaseFollow elementAaron Kennedy2009-09-091-0/+1
|/
* doc fixesYann Bodson2009-08-261-3/+3
|
* Rename positioners.Warwick Allison2009-08-241-3/+3
| | | | QFxBasePositioner still exists though.
* SetPropertyAction -> PropertyActionMartin Jones2009-08-211-1/+1
|
* Renamed transition action elementsMartin Jones2009-08-211-3/+5
| | | | | RunScriptAction -> ScriptAction ParentChangeAction -> ParentAction
* Renaming: Bind -> BindingYann Bodson2009-08-211-1/+1
|