summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-075-21/+21
|\ | | | | | | | | | | Conflicts: src/declarative/graphicsitems/qdeclarativeitem.cpp tests/auto/declarative/qdeclarativexmllistmodel/tst_qdeclarativexmllistmodel.cpp
| * WorkerScript could starve image loading of CPU.Martin Jones2010-12-231-1/+1
| | | | | | | | | | | | | | | | We use idle priority for image loading and XmlListModel in order to keep the UI responsive, but WorkerScript used LowPriority which would significantly reduce CPU available for image loading. Task-number: QTBUG-16167
| * Improve QDeclarativeComponent test coverage.Michael Brasser2010-12-222-12/+0
| |
| * Don't truncate image:// url strings prematurelyBea Lam2010-12-202-8/+20
| | | | | | | | | | | | | | | | Url fragments and queries were being removed from the image ids passed to QDeclarativeImageProvider. Task-number: QTBUG-16195 Reviewed-by: Martin Jones
* | Fix version in previous commit. Had already been bumped.Martin Jones2011-01-062-3/+3
| | | | | | | | | | | | | | | | The version had already been bumped from 0 to 1. Only the version check was required. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* | Ensure QDeclarativePrivate::RegisterType version is updated and checked.Martin Jones2011-01-063-3/+5
| | | | | | | | | | | | | | | | Also exclude from bic check since we expect its size to increase from time to time. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* | Merge branch 'qtquick11' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-051-1/+1
|\ \
| * | Add clarifications to QML SQL docs.Michael Brasser2011-01-051-1/+1
| | | | | | | | | | | | Reviewed-by: Bea Lam
* | | Support property/method versions in QMLMartin Jones2011-01-0516-41/+214
|/ / | | | | | | | | | | | | | | Use metaobject revisioning to exclude properties/revisions added in later versions from interfering with earlier versions. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* | Optimization: make QDeclarativePropertyPrivate shared.Michael Brasser2010-12-222-47/+64
| | | | | | | | | | Task-number: QTBUG-15331 Reviewed-by: Aaron Kennedy
* | Fix potential crash in PropertyChanges binding rewrite handling.Michael Brasser2010-12-212-0/+6
| | | | | | | | | | | | | | This fixes the autotest regression for tst_qdeclarativestates::editProperties introduced by 488e616b50707e5b37162e6d0cfc71a1ffdf9bef. Reviewed-by: Joona Petrell
* | Optimize name lookup for QDeclarativeProperty.Michael Brasser2010-12-211-0/+2
| | | | | | | | | | | | | | | | | | If the property is constructed by passing in the property name (and we've verified that it is valid), we can cache that name immediately rather than reconstructing it on the first call to name(). Task-number: QTBUG-15331 Reviewed-by: Martin Jones
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Joona Petrell2010-12-202-21/+37
|\ \ | |/
| * QmlDebugger: Fix runtime warnings about unregistered metatypesKai Koehne2010-12-161-1/+4
| | | | | | | | | | | | | | | | | | | | | | Check whether the type of a property is known to the metatype system before trying to read from it. That avoids lots of runtime warnings e.g. for the QSequentialGroup::currentAnimation property, which type QAbstractAnimation * isn't registered by default via qRegisterMetaType<>(). Reviewed-by: Christiaan Janssen Task-number: QTCREATORBUG-2853
| * Docs: implications of creating network access managers in other threadsBea Lam2010-12-141-20/+33
| | | | | | | | Task-number: QTBUG-16032
* | Fix PropertyChange's binding rewriting for 'dot' properties.Michael Brasser2010-12-171-1/+1
| | | | | | | | | | | | | | For cases like PropertyChanges { font.pixelSize: myPixelSize } it was attempting to rewrite the function name as font.pixelSize, which is not syntactically correct. We now rewrite the function name as pixelSize.
* | Rewrite/cache bindings created by PropertyChanges.Michael Brasser2010-12-177-1/+59
| | | | | | | | | | | | | | This provides a significant optimization for initial evaluation of bindings specified in a PropertyChanges. Reviewed-by: Aaron Kennedy
* | QmlDebugger: reset properties to default valueChristiaan Janssen2010-12-161-2/+18
| | | | | | | | Reviewed-by: Kai Koehne
* | QmlDebugger: setting bindings in statesChristiaan Janssen2010-12-132-17/+98
| | | | | | | | Reviewied-by: Kai Koehne
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2010-12-136-48/+117
|\ \ | |/
| * Fix broken database creation caused by previous fixBea Lam2010-12-101-8/+17
| | | | | | | | | | | | | | | | 16447b1193fedf5fdcf1f3d270fa73c5036a1ba0 removed unused directory but the fix meant that the base Databases directory was no longer automatically created. Task-number: QTBUG-15909
| * QDeclarativeProperty doc improvementsBea Lam2010-12-091-3/+16
| |
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-12-094-35/+45
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Update QtGui bwins def file for QTBUG-15615 highlightFollowsCurrentItem: false was not always honored ListView: Fix calculation of currentItem position when out of view. Update QtGui def files Fix openDatabaseSync() to not create unused directory Document support for QVariantList and QVariantMap type conversion Some doc clarification for components and javascript integration Cursor shouldn't blink while dragging cursor position Qt.include() docs weren't being picked up by qdoc Doc: make it clear that "z" affects sibling stacking order.
| | * Fix openDatabaseSync() to not create unused directoryBea Lam2010-12-071-1/+0
| | | | | | | | | | | | | | | Task-number: QTBUG-15909 Reviewed-by: Warwick Allison
| | * Some doc clarification for components and javascript integrationBea Lam2010-12-061-12/+16
| | |
| | * Qt.include() docs weren't being picked up by qdocBea Lam2010-12-062-22/+29
| | | | | | | | | | | | | | | | | | | | | This moves the Qt.include() docs to qdeclarativeengine.cpp and also documents it in the "Integrating JavaScript" page. Task-number: QTBUG-15855
| * | Add libinfix support for QML plugins in Symbian.Miikka Heikkinen2010-12-091-1/+7
| |/ | | | | | | | | Task-number: QTBUG-14736 Reviewed-by: Alessandro Portale
| * Mention that image providers should be added before loading QML filesBea Lam2010-12-031-0/+3
| |
| * Append qml import path individually for each available drive on SymbianJoona Petrell2010-12-021-1/+29
| | | | | | | | | | Task-number: QTBUG-15405 Reviewed-by: Jason Barron
* | QmlDebugger: Instantiation of deferred objects moved to the debugger engineChristiaan Janssen2010-12-103-11/+18
| | | | | | | | Reviewed-by: Kai Koehne
* | QmlDebugger: avoid deferring properties when compiling in a debug environmentChristiaan Janssen2010-12-091-1/+5
| | | | | | | | Reviewed-by: Kai Koehne
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2010-12-0121-294/+646
|\ \ | |/
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-11-301-2/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Fix resource leak in QEgl::getCompatibleVisualld() Fixed OpenGL state getting out of sync. Fix whitespace in previous 1e7b4e396ec3bacc1a769208b990c5e0450f0d3a Declarative: Fix compiler warnings (Linux/g++)
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7Joona Petrell2010-11-3018-258/+599
| | |\ | | | | | | | | | | | | | | | | | | | | Conflicts: src/declarative/qml/qdeclarativeengine.cpp src/declarative/qml/qdeclarativepropertycache.cpp
| | * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-11-262-1/+3
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Fixed OpenGL state getting out of sync. Fix whitespace in previous 1e7b4e396ec3bacc1a769208b990c5e0450f0d3a Declarative: Fix compiler warnings (Linux/g++)
| | | * | Declarative: Fix compiler warnings (Linux/g++)Friedemann Kleint2010-11-262-1/+3
| | | | | | | | | | | | | | | | | | | | Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
| * | | | Correct ownership semantics for QObject derived typesAaron Kennedy2010-11-301-2/+9
| | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-15697
| * | | | Correctly handle CppOwnership even when a QDeclarativeData doesn't existAaron Kennedy2010-11-301-3/+1
| | |_|/ | |/| | | | | | | | | | Task-number: QTBUG-15695
| * | | Improve consistency in handling of aliases, bindings and value typesAaron Kennedy2010-11-2917-256/+599
| | | | | | | | | | | | | | | | Task-number: QTBUG-13719
| * | | Fix warnings related to unused variables.Thiago Macieira2010-11-262-1/+2
| |/ / | | | | | | | | | | | | | | | | | | Just add some Q_UNUSED for parameters or remove the variable we don't need for the others. Reviewed-by: Trust Me
| * | Fix type punning warnings from gccAaron Kennedy2010-11-262-31/+35
| |/ | | | | | | Also clean up some code uglyness in the process
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2010-11-241-0/+13
|\ \ | |/
| * Allow javascript date and regexp objects in WorkerScript messagesBea Lam2010-11-241-0/+13
| | | | | | | | | | Task-number: QTBUG-14666 Reviewed-by: Aaron Kennedy
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Yann Bodson2010-11-236-11/+7
|\ \ | |/
| * Don't leak QML compiled data objectsAaron Kennedy2010-11-193-7/+3
| | | | | | | | Task-number: QTBUG-14761
| * Fix compilation by s/intptr_t/quintptr/Thiago Macieira2010-11-113-4/+4
| | | | | | | | | | | | | | | | | | intptr_t is defined in some C header that we don't include. I don't know which one it is, but without it, it fails to compile with: declarative/qml/qdeclarativecontext.cpp:477: error: 'intptr_t' was not declared in this scope Reviewed-By: Trust Me
* | Add additional trace range data.Michael Brasser2010-11-194-1/+6
| |
* | Make deferred tracing less expensive (real-time cost is the same)Michael Brasser2010-11-191-1/+1
| |
* | Support directly setting string range data.Michael Brasser2010-11-191-2/+3
| |
* | Add additional tracing.Michael Brasser2010-11-193-1/+9
| | | | | | | | | | Tracing for compile time, signal handlers, and deferred creation.