summaryrefslogtreecommitdiffstats
path: root/doc/src/declarative/extending.qdoc
Commit message (Collapse)AuthorAgeFilesLines
* DocAaron Kennedy2010-09-031-0/+10
| | | | QTBUG-12665
* Improve calling QML functions from C++ docs.Martin Jones2010-08-311-0/+14
|
* Document calling QObject methods from QML in Extending QML in C++ docs.Martin Jones2010-08-251-0/+17
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-07-071-4/+39
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (35 commits) Make Text, TextInput, and TextEdit all have the same size for the same text. More generated images in anticipation of QT-3574 Remove deprecated Flickable.flickDirection Revert "Fix exponential behavior of QTextCursor::removeSelectedText" Prevent a recursive debug output loop when writing to the logger widget. Fix performance of QTextDocumentPrivate::adjustDocumentChangesAndCursors Convert QtDeclarative def files to use LF line endings Update QtDeclarative def files doc improvements Changing currentIndex shouldn't cancel a flick unnecessarily. Fix input methods for TextInput elements with key handlers Document the QML enumeration basic type Fix TextEdit with no color property defined is drawn with wrong color Export QDeclarativePixmap doc Fix inconsistent reporting of module import errors when using versions. Make declarative pixmap cache easier to use Prepare for QTest persistent store for visual tests. Loosen font-sensitive test. Set correct license header. ...
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Bea Lam2010-07-061-14/+65
| |\ | | | | | | | | | | | | Conflicts: doc/src/declarative/extending.qdoc
| * | doc improvementsBea Lam2010-07-061-4/+34
| | |
* | | qdoc: Simplified code to enable fixing of QTBUG-6340.Martin Smith2010-07-061-16/+8
| |/ |/| | | | | | | | | Also reworded some of the text for QTBUG-11575. Task-number: QTBUG-6340, QTBUG-11575
* | qdoc: Added explanation of autmatically generated signal hanlers.Martin Smith2010-07-051-12/+58
|/ | | | Task-number: QTBUG-11575
* Doc: Relicensed the documentation under the GNU FDL version 1.3.David Boddie2010-06-211-25/+11
| | | | | Reviewed-by: Trust Me Requested-by: Legal
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-06-151-3/+7
|\
| * Improve docs about Qml component case sensitivity.Martin Jones2010-06-071-3/+7
| | | | | | | | Task-number: QTBUG-11253
* | Enhance docsAlan Alpert2010-06-031-0/+3
|/
* docWarwick Allison2010-05-171-1/+4
| | | | models from plugins
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-23/+23
| | | | | | subdirectories to make it easier to locate examples for certain features (e.g. animation) and to distinguish between different types of examples (e.g. very basic examples vs complex demo-like examples).
* Doc fixes.Michael Brasser2010-04-231-18/+21
|
* Revert structural changes to extending.qdoc made inBea Lam2010-04-211-197/+178
| | | | | | 61f3cb6e79fea0aed80df091013c2228f64955ec. A separate, more tutorial-like page for this topic will be created and this can be kept as a reference-type page.
* Improve docs and examples for Extending QML in C++Bea Lam2010-04-211-183/+202
|
* Make property value source examples workBea Lam2010-04-211-1/+1
|
* QML_DECLARE_TYPE is no longer necessary - fix docs and examplesBea Lam2010-04-191-1/+0
|
* Fix doc: QML_DECLARE_TYPE is no longer necessarymae2010-04-161-18/+3
| | | | It's sufficient to register a type with qmlRegisterType<T>()
* DocAaron Kennedy2010-04-121-2/+2
|
* DocAaron Kennedy2010-03-291-2/+1
|
* Doc AugmentationAlan Alpert2010-03-261-0/+13
| | | | Task-number: QTBUG-9396
* doc: Fixed all the remaining qdoc errors. For now.Martin Smith2010-03-241-8/+8
|
* Document - and use - the qmlRegisterXXX template functionsmae2010-03-101-29/+33
| | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* Change Connection syntax as per QT-2822.Warwick Allison2010-02-261-3/+2
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-12/+12
| | | | QDeclarativeXXX.
* docWarwick Allison2010-02-241-1/+1
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlWarwick Allison2010-02-231-12/+0
|\ | | | | | | | | | | Conflicts: src/declarative/util/qmlanimation.cpp src/declarative/util/qmlxmllistmodel.cpp
| * 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.
* | Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-231-17/+14
|/ | | | Task-number: QT-2798
* Add documentation on QMLs memory management assumptionsAaron Kennedy2010-02-231-0/+31
|
* 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.
| * Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-221-1/+1
| | | | | | | | | | | | | | | | 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).
* | Doc: these files are NOT part of the test suite of the Qt toolkitThiago Macieira2010-02-201-1/+1
|/
* Fix broken license headers.Jason McDonald2010-02-161-18/+18
| | | | Reviewed-by: Trust Me
* Augment documentationAlan Alpert2010-02-031-0/+11
| | | | Document automatic signal handlers and QmlViewer.Screen.
* We use JavaScript, not ECMAScript.Martin Jones2010-02-031-3/+3
| | | | Task-number: QTBUG-7720
* Doc fixes.Michael Brasser2010-01-151-1/+1
| | | | Task-number: QTBUG-7322
* docWarwick Allison2010-01-081-2/+6
| | | | Task-number: QTBUG-7125
* Small doc fixes.Martin Jones2009-11-251-1/+1
|
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Bea Lam2009-11-251-19/+21
|\ | | | | | | | | | | | | into kinetic-declarativeui Conflicts: doc/src/declarative/extending.qdoc
| * add targetYann Bodson2009-11-251-19/+20
| |
* | Doc improvmentsBea Lam2009-11-251-4/+4
|/
* docWarwick Allison2009-11-131-0/+1
|
* Doc.Michael Brasser2009-10-281-1/+1
|
* Docs.Martin Jones2009-10-261-2/+13
|
* DocAaron Kennedy2009-10-121-3/+59
|
* Add id aliasesAaron Kennedy2009-10-091-3/+3
|
* doc cleanupYann Bodson2009-10-071-126/+126
|