summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativecomponent.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Largely rewrite the Using QML in C++ Applications documentation. ItBea Lam2010-11-041-0/+37
| | | | | | | | | | | | | | now has an overview of different approaches to QML/C++ integration and demonstrates how to pass data between QML and C++ through properties/functions/signals. The part in the old docs that focused on QDeclarativeContext has been merged into the QDeclarativeContext class docs (although most of the info was largely covered in there already) and the part that covered Network Components has been moved to the QDeclarativeComponent class docs. The custom enum types example previously in extending-tutorial.qdoc has been moved to these new docs. Task-number: QTBUG-14923
* Optimization: Don't generate intermediate QDeclarativeComponent'sAaron Kennedy2010-10-141-27/+30
|
* Remove some unnecessary includes in cpp filesAaron Kennedy2010-10-081-1/+0
|
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-291-1/+1
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Merge branch '4.7' into qmldocsDavid Boddie2010-09-061-3/+5
|\
| * Complete Component::createObject() creation after setting the parent.Martin Jones2010-09-031-3/+5
| | | | | | | | | | Task-number: QTBUG-13170 Reviewed-by: Alan Alpert
* | Doc: Added types to method and signal documentation; other fixes.David Boddie2010-09-011-1/+1
|/
* Simplify type management codeAaron Kennedy2010-08-271-34/+21
|
* QDeclarativeDebug: send a message when new object are addedOlivier Goffart2010-08-241-2/+6
| | | | Reviewed-by: Lasse Holmstedt
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7David Boddie2010-08-161-0/+1
|\ | | | | | | | | Conflicts: doc/src/declarative/elements.qdoc
| * qdoc: Reorganized the QML elements table to be a dictionary...Martin Smith2010-08-161-0/+1
| | | | | | | | ...and a set of functional group pages.
* | Merge branch '4.7' of ../oslo-staging-2 into 4.7David Boddie2010-08-131-1/+1
|\ \ | |/ |/| | | | | | | | | | | | | | | | | Conflicts: doc/src/declarative/declarativeui.qdoc doc/src/examples/simpletreemodel.qdoc doc/src/examples/spinboxdelegate.qdoc doc/src/getting-started/demos.qdoc doc/src/getting-started/gettingstartedqml.qdoc doc/src/index.qdoc src/declarative/qml/qdeclarativeimageprovider.cpp
| * Doc: Fixes to Qt Quick documentation.David Boddie2010-08-091-1/+1
| | | | | | | | | | Reviewed-by: Trust Me To-be-verified-by: Qt Doc Team
* | Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938.Jerome Pasion2010-08-091-2/+2
|/ | | | | Reviewer: David Boddie Task number: QTBUG-11938
* Component docsBea Lam2010-07-291-21/+9
| | | | Task-number: QTBUG-12447
* Fixes for Dynamic Object Management docs. Also adds links toBea Lam2010-07-291-0/+3
| | | | | | this page from other documentation. Task-number: QTBUG-12446
* various doc fixesBea Lam2010-07-271-1/+3
|
* doc improvementsBea Lam2010-07-091-5/+23
|
* docsBea Lam2010-07-071-2/+2
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Bea Lam2010-07-061-3/+4
|\ | | | | | | | | Conflicts: doc/src/declarative/extending.qdoc
| * docWarwick Allison2010-07-061-2/+2
| |
| * Work around QTBUG-11929Warwick Allison2010-07-051-1/+2
| |
* | doc improvementsBea Lam2010-07-061-0/+30
|/
* Allow components to be created from .pragma library JS filesAaron Kennedy2010-06-251-1/+3
| | | | QTBUG-11507
* Move knowledge of QGraphicsObject out of qml engineAaron Kennedy2010-06-161-10/+15
|
* Doc improvements: move some example code to snippets, add screenshots,Bea Lam2010-06-091-5/+7
| | | | other minor doc fixes
* Move some example code into snippets/ and add other doc fixesBea Lam2010-06-091-1/+1
|
* Rename QDeclarativeDebugTiming -> QDeclarativeDebugTraceAaron Kennedy2010-05-271-3/+4
|
* Improve QML framerate debuggingAaron Kennedy2010-05-271-0/+8
|
* Added autotest for Component.createObject() without Qt.createComponent()Alan Alpert2010-05-241-3/+7
| | | | | | Also augmented the docs for both functions a little. Task-number: QTBUG-10926
* Component::createObject() don't attempt to set parent of null objectMartin Jones2010-05-241-4/+6
| | | | | Don't try to set graphics item parent on an object that is not a QGraphicsItem
* Rename Component::errorsString() -> errorString() (and also forBea Lam2010-05-201-4/+4
| | | | QDeclarativeComponent)
* Document Component::createObject() parent argument.Martin Jones2010-05-111-1/+1
| | | | Task-number: QTBUG-10617
* Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-qml into 4.7Alan Alpert2010-05-051-4/+4
|\
| * docWarwick Allison2010-05-051-4/+4
| | | | | | | | Task-number: QTBUG-10386
* | Make component.createObject require a parent argumentAlan Alpert2010-05-051-1/+19
|/ | | | | | | | | For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110
* Doc fixesBea Lam2010-04-301-1/+5
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-291-55/+4
|\
| * Don't call qRegisterMetaType() in global scopeBea Lam2010-04-291-1/+0
| |
| * Remove Component's isReady, isLoading, isError and isNull properties.Bea Lam2010-04-291-54/+4
| | | | | | | | | | | | | | The Component status enum covers all of these properties already and removing these also makes the API consistent with Image and Loader. Note this change only affects the QML Component API; the methods are still available for QDeclarativeComponent.
* | Ensure filenames are correctly resolvedWarwick Allison2010-04-291-1/+1
|/ | | | | | Works around QUrl("file:a").isRelative() being false. Reviewed-by: Aaron Kennedy
* Prevent Behavior from being triggered on initialization.Michael Brasser2010-04-291-0/+15
| | | | | | | | Add an additional private notification mechanism that is triggered after all QDeclarativeParserStatus items have had their componentComplete called. Task-number: QTBUG-6332
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-271-3/+78
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '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 ...
| * Return null if creation fails.Michael Brasser2010-04-231-3/+5
| |
| * Basic Component doc.Michael Brasser2010-04-231-1/+74
| |
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Peter Yard2010-04-271-25/+25
|\ \ | |/
| * Doc.Michael Brasser2010-04-221-18/+20
| |
| * Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-191-7/+5
| | | | | | | | QTBUG-9726
* | Docs Changes to start page. Minor change to Elements doc. See also added to ↵Peter Yard2010-04-271-0/+2
|/ | | | some elements docs.
* DocAaron Kennedy2010-04-151-0/+20
|