summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcomponent.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Small doc fixes.Martin Jones2009-11-251-2/+2
|
* Doc.Michael Brasser2009-11-181-3/+6
|
* docWarwick Allison2009-11-131-4/+12
|
* Remove "to" limit on minor version.Warwick Allison2009-11-051-1/+1
| | | | | | QML_DEFINE_TYPE etc. now define just the initial support version, with support in all future versions being thus implied. QTBUG-5421
* CleanupAaron Kennedy2009-10-301-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-301-16/+16
|\ | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/debugger/qmldebug.cpp src/declarative/fx/qmlgraphicsimagebase_p.h src/declarative/util/qmlanimation.h src/declarative/util/qmlstate.h src/declarative/util/qmltimer.cpp
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-301-0/+48
| |\ | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlcomponentjs.cpp src/declarative/qml/qmlcomponentjs_p.h src/declarative/qml/qmlcomponentjs_p_p.h
| * | fix headersWarwick Allison2009-10-291-16/+16
| | |
* | | Make private headers _pAaron Kennedy2009-10-301-1/+1
| | |
* | | Rename QFx classes to QmlGraphicsAaron Kennedy2009-10-301-2/+2
| |/ |/|
* | Merge QmlComponentJS into QmlComponentAlan Alpert2009-10-291-0/+48
|/ | | | | | | createComponent() and Component{} are now the same, and so Component{}s can now be passed around for use in script. Also this commit fixes the minor bug QT-2386
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-281-1/+32
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-10-281-0/+17
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Do not display transient binding errorsAaron Kennedy2009-10-281-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During QML startup, it is common to have "errors" in bindings as the apps state stabilizes. These are not real errors, but just a consequence of implementing a declarative UI in an imperative world. Now during startup, the display of errors is delayed until the startup completes, and then only bindings that are still in an error state are displayed. QT-2373
| * | Doc.Michael Brasser2009-10-281-1/+15
| |/
* | Fix remote content loading for absolute URLsWarwick Allison2009-10-271-3/+6
|/ | | | (the test is pending...)
* Silence warnings.Michael Brasser2009-10-261-2/+0
|
* Add accessor for QmlComponent's creation contextAaron Kennedy2009-10-231-0/+15
|
* change all ids in doc examples to start with lower case.Martin Jones2009-10-221-3/+3
|
* Add Component::onCompleted attached propertyAaron Kennedy2009-10-141-0/+65
|
* Improve Behavior reliability.Michael Brasser2009-10-111-1/+1
|
* Reenable types/enums and move scripts into an isolated scopeAaron Kennedy2009-10-051-1/+2
|
* Make more qmlecmascript tests passAaron Kennedy2009-09-231-25/+43
| | | | | Test cases constantsOverrideBindings, outerBindingOverridesInnerBinding and aliasPropertyAndBinding now pass.
* Move ComponentInstance functionality into LoaderMartin Jones2009-09-091-2/+3
|
* Add status and progress properties to Loader.Martin Jones2009-09-071-4/+19
|
* Add QML enum supportAaron Kennedy2009-09-031-0/+1
| | | | | | Enums are accessed as <Type Name>.<Enum value name> Currently this is highly unoptimal - enum assignments are not detected in the compiler, nor are they cached in the script engine.
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-08-261-1/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Fix handling of empty strings for URLsWarwick Allison2009-08-261-1/+1
| | | | | | | | | | | | | | QUrl resolves empty to base, which is not desirable. Preserve emptiness of QUrl. Handle use of empty QUrl with WebView (WebKit doesn't handle empty URLs well either).
* | Fix compile after merge from 4.6.Michael Brasser2009-08-251-1/+1
|/
* Renaming Rect -> RectangleYann Bodson2009-08-191-1/+1
|
* Abstract expression and binding APIsAaron Kennedy2009-08-101-2/+2
| | | | | | | | | By splitting the interface through which the system interacts with bindings away from a specific implementation, we can introduce highly specialized implementations for specific optimizations. This commit also includes a sample optimization for object properties being assigned directly from a local id.
* Remove unused QmlContextPrivate member variablesAaron Kennedy2009-08-041-5/+0
|
* Make private stuff privateAaron Kennedy2009-07-271-5/+5
|
* Move import access functions to QmlEnginePrivate.Warwick Allison2009-07-231-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-07-231-24/+0
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Move errorsString to QmlBindableComponent because it's for use in scriptAlan Alpert2009-07-211-24/+0
| |
* | Allow span of versions to be defined, not just one.Warwick Allison2009-07-231-1/+1
| | | | | | | | Span is from version where introduced (all 4.6) to current QT_VERSION.
* | Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-231-1/+1
|/ | | | | Adjust examples and demos accordingly. As per QT-558
* Move the Script interface of QmlComponent to QmlBindableComponentAlan Alpert2009-07-211-17/+0
|
* Rename QmlBindableValue to QmlBindingAaron Kennedy2009-07-201-2/+2
|
* Remove unnecessary global context management stuffAaron Kennedy2009-07-161-6/+4
|
* Remove pointless QmlCompiledComponent classAaron Kennedy2009-07-151-3/+3
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-07-141-2/+5
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/parser/qmljsparser.cpp
| * Start moving debugger out of processAaron Kennedy2009-07-131-2/+5
| |
* | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-07-121-3/+3
|\ \ | |/ | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlscriptparser.cpp src/declarative/qml/qmlscriptparser_p.h Compiles, but probably next needs a revert/change of module stuff, since that work seems to have been duplicated.
| * DocAaron Kennedy2009-07-071-3/+3
| |
* | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-07-091-6/+24
|\ \ | |/ | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlengine.cpp
| * Improve QmlComponent APIAaron Kennedy2009-07-071-5/+23
| | | | | | | | Having to use QUrl::fromLocalFile() is crummy. Add appropriate overloads the QmlComponent, and resolve relative paths against a "base url" set on the QmlEngine.
| * Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-021-0/+23
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Make performance logging classes private.Michael Brasser2009-07-021-1/+1
| | |