Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix scrolling backwards when pathItemCount != model.count | Alan Alpert | 2010-02-12 | 1 | -2/+7 |
| | | | | | | | | | Also fixes -Scrolling backwards when model.count != 0 mod pathItemCount -A minor typo in a comment Task-number: QTBUG-6865 Reviewed-by: Martin Jones | ||||
* | Fix warnings | Aaron Kennedy | 2010-02-12 | 4 | -6/+2 |
| | |||||
* | Reference count shared expression data | Aaron Kennedy | 2010-02-12 | 2 | -1/+7 |
| | | | | | | QmlExpression uses data from the QmlCompiledComponent (eg. expression string data). It must therefore hold a reference to the QmlCompiledComponent to prevent the data being deleted. | ||||
* | Cleanup public QmlMetaType API | Aaron Kennedy | 2010-02-12 | 12 | -158/+112 |
| | | | | Remove some unnecessary methods from the QmlMetaType class | ||||
* | Adds inputMethodHint property to TextEdit and TextInput. | Joona Petrell | 2010-02-12 | 2 | -0/+3 |
| | | | | Reviewed-by: Martin Jones | ||||
* | Decouple Loader from QmlGraphicsItem | Joona Petrell | 2010-02-12 | 4 | -38/+119 |
| | | | | | Task-number: QT-2823 Reviewed-by: Aaron Kennedy | ||||
* | Update QmlChanges.txt | Leonardo Sobral Cunha | 2010-02-11 | 1 | -0/+2 |
| | |||||
* | Animations are running by default when used as property source value | Leonardo Sobral Cunha | 2010-02-11 | 2 | -2/+11 |
| | | | | | | | | When you assign an animation to a property (used as source value), the animation will automatically start running, which is the most common behavior for this use case. Reviewed-by: Michael Brasser | ||||
* | QML Object toString should use 64-bit address on 64-bit platforms | Aaron Kennedy | 2010-02-11 | 1 | -1/+1 |
| | |||||
* | Fix tst_qmlecmascript::callQtInvokables | Aaron Kennedy | 2010-02-11 | 1 | -6/+8 |
| | | | | | | The assert in qmlobjectscriptclass.cpp is valid when the call is running in a correctly created QML environment, but not valid for the test case which bypasses QML. | ||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Alan Alpert | 2010-02-10 | 2 | -9/+16 |
|\ | |||||
| * | Make sure item release isn't deferred indefinately | Martin Jones | 2010-02-10 | 2 | -9/+16 |
| | | |||||
* | | Attempt to clairify highlight range docs | Alan Alpert | 2010-02-10 | 1 | -0/+10 |
|/ | |||||
* | Crash | Aaron Kennedy | 2010-02-10 | 1 | -0/+2 |
| | |||||
* | Revert "Remove unimplemented methods from header" | Martin Jones | 2010-02-10 | 1 | -0/+2 |
| | | | | This reverts commit e712ecee850e04084643243a096befbf47e4e8b9. | ||||
* | Revert "Replace QList<>* support with QmlListProperty" | Martin Jones | 2010-02-10 | 19 | -215/+318 |
| | | | | This reverts commit d914555badcd4761864657e1e335e657b791453f. | ||||
* | Remove unimplemented methods from header | Kai Koehne | 2010-02-09 | 1 | -2/+0 |
| | | | | Implementations got removed in d914555badcd4 | ||||
* | Properly insert objects into the context's object list | Alan Alpert | 2010-02-09 | 1 | -0/+1 |
| | | | | | | | Fixes a failing autotest, where the object's context pointer was not being reset. This was because the object was not placed properly in the context's contextObjects list and so was not found and cleared when the context was destroyed. | ||||
* | Replace QList<>* support with QmlListProperty | Aaron Kennedy | 2010-02-09 | 19 | -318/+215 |
| | |||||
* | Remove old implicit module support. | Warwick Allison | 2010-02-09 | 2 | -14/+16 |
| | | | | | | | | Previously, it was allowed to use type qualification to refer to types defined in subdirectories - indeed, this was the only form of modularity. This is no longer desirable since we have good import features. Task-number: QTBUG-7721 | ||||
* | Use networkAccessManagerFactory() for worker threads too. | Martin Jones | 2010-02-09 | 2 | -14/+20 |
| | | | | Task-number: QT-2850 | ||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-08 | 8 | -49/+113 |
|\ | |||||
| * | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Alan Alpert | 2010-02-08 | 4 | -4/+26 |
| |\ | |||||
| | * | Add getter functions to QAbstractDynamicMetaObject and QmlOpenMetaObjectType | Marco Bubke | 2010-02-08 | 2 | -1/+23 |
| | | | | | | | | | | | | | | | | | | We need some internal stuff in the derived class. Reviewed-By: Kai Koehne | ||||
| | * | Changed define name to reflect change in Creator. | Erik Verbruggen | 2010-02-08 | 1 | -2/+2 |
| | | | |||||
| | * | re-enable QT_USE_FAST_CONCATENATION | Erik Verbruggen | 2010-02-08 | 1 | -1/+1 |
| | | | | | | | | | | | | includes workaround for breakage with old g++ | ||||
| * | | Support the other validators | Alan Alpert | 2010-02-08 | 2 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | | Note that a resolution will be required for QTBUG-8025 before the QRegExpValidator is useful. Task-number: QTBUG-7068 | ||||
| * | | Document QtObject | Alan Alpert | 2010-02-08 | 1 | -0/+19 |
| |/ | | | | | | | Task-number:QTBUG-6034 | ||||
| * | XMLHttpRequest collection bug | Aaron Kennedy | 2010-02-08 | 1 | -45/+45 |
| | | | | | | | | | | | | | | QmlXMLHttpRequest was holding a reference to the callback function indefinately. If the callback function also referenced the XMLHttpRequest (which they always do) the QmlXMLHttpRequest would not be destroyed until the application exited. | ||||
* | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-08 | 3 | -0/+51 |
|\ \ | |/ | |||||
| * | The virtual keyboard is now working for TextEdit and TextInput components. | Alexis Menard | 2010-02-08 | 3 | -0/+51 |
| | | | | | | | | | | | | | | | | | | In order to show the virtual keyboard we need to send RequestSoftwareInputPanel. I also fixed TextInput regarding the inputQuery implementation. Task-number:QTBUG-7602 Reviewed-by:akennedy | ||||
* | | For local fonts, we can just addApplicationFont() rather than loading data. | Martin Jones | 2010-02-08 | 1 | -4/+10 |
|/ | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-08 | 2 | -14/+14 |
|\ | |||||
| * | Make transformOrigin Center by default | Yann Bodson | 2010-02-08 | 2 | -14/+14 |
| | | | | | | | | Task-number: QTBUG-7430 | ||||
* | | Fix viewport size update. | Martin Jones | 2010-02-08 | 1 | -2/+4 |
|/ | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Yann Bodson | 2010-02-08 | 7 | -75/+83 |
|\ | |||||
| * | Allow objects to be shared between QmlEngines | Aaron Kennedy | 2010-02-08 | 7 | -75/+83 |
| | | | | | | | | QTBUG-7957 | ||||
* | | clip if tile mode is 'PreserveAspectCrop' and 'clip' property is true. | Yann Bodson | 2010-02-08 | 1 | -3/+9 |
|/ | |||||
* | Fix item removal. | Martin Jones | 2010-02-08 | 1 | -7/+7 |
| | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-08 | 1 | -1/+1 |
|\ | |||||
| * | Fix private header include. | Bea Lam | 2010-02-08 | 1 | -1/+1 |
| | | |||||
* | | Make atBeginning/viewArea calculations account for min extent. | Martin Jones | 2010-02-08 | 1 | -6/+6 |
|/ | |||||
* | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml | Martin Jones | 2010-02-05 | 13 | -96/+95 |
|\ | |||||
| * | Fix Behaviors for object-type properties. | Michael Brasser | 2010-02-05 | 2 | -3/+2 |
| | | | | | | | | Task-number: QT-2269 | ||||
| * | Pass symbols::prefix (Action -> QmlAction) | Warwick Allison | 2010-02-05 | 11 | -93/+93 |
| | | |||||
* | | Fix test. | Martin Jones | 2010-02-05 | 1 | -7/+17 |
|/ | |||||
* | Fix ListView tests. | Martin Jones | 2010-02-05 | 1 | -4/+6 |
| | |||||
* | Clean up QmlImageReader thread on engine destruction. | Martin Jones | 2010-02-05 | 3 | -12/+21 |
| | |||||
* | Test SizeItemToLoader to SizeLoaderToItem resizeMode change. | Martin Jones | 2010-02-04 | 1 | -0/+6 |
| | | | | Task-number: QT-2376 | ||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Warwick Allison | 2010-02-04 | 2 | -2/+4 |
| | | | | | | | | git://git-nokia.trolltech.com.au/qtsoftware/qt/kinetic Conflicts: src/xmlpatterns/type/qprimitives_p.h tools/linguist/lupdate/main.cpp |