summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/elements.qdoc
Commit message (Collapse)AuthorAgeFilesLines
* Doc: Correcting references to Qt Declarative module.Morten Engvoldsen2010-11-151-1/+1
|
* Doc: reintroducing QML elements table temporarilyMorten Engvoldsen2010-11-041-2/+104
|
* Doc: Fixed the in-repository licenses for the documentation.David Boddie2010-10-041-5/+5
| | | | | | In the repository, we should always use the No Commercial license alongside the GNU Free Documentation License for documentation files.
* Doc: Minor improvements and fixes.David Boddie2010-08-241-4/+5
|
* qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-107/+145
| | | | ...and a set of functional group pages.
* doc: The QML Qt element was missing from the documentation.Martin Smith2010-08-111-0/+1
| | | | Either someone removed the QML: prefix, or it was never there.
* Fixing merge conflicts.Martin Smith2010-07-131-2/+1
|\ | | | | | | | | | | | | | | | | | | | | Merge branch '4.7-upstream' into 4.7 Conflicts: doc/src/declarative/advtutorial.qdoc src/declarative/graphicsitems/qdeclarativeloader.cpp src/declarative/graphicsitems/qdeclarativetextedit.cpp src/declarative/qml/qdeclarativeengine.cpp src/declarative/util/qdeclarativexmllistmodel.cpp
| * Follow -> Behaviormae2010-07-081-2/+1
| | | | | | | | Replace the usages of Follows with Behaviors, update docs.
* | qdoc: Fixed a few links to QtObject (QML:QtObject)Martin Smith2010-07-071-1/+1
|/
* Doc: Adding navigation and style fixes. Also rearranging qml elementsMorten Engvoldsen2010-07-011-163/+101
|
* Doc: Relicensed the documentation under the GNU FDL version 1.3.David Boddie2010-06-211-25/+11
| | | | | Reviewed-by: Trust Me Requested-by: Legal
* Doc improvements: move some example code to snippets, add screenshots,Bea Lam2010-06-091-2/+0
| | | | other minor doc fixes
* DocAaron Kennedy2010-06-031-1/+1
|
* Remove Media elements from Elements indexBea Lam2010-06-031-8/+3
|
* Add Vector3dAnimation to list of QML elementsBea Lam2010-06-021-0/+1
|
* 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
|