summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
Commit message (Collapse)AuthorAgeFilesLines
* QDeclarativeEngineDebugServer: Fix crash when trying to update non-properties.Olivier Goffart2010-07-261-16/+14
| | | | | | | | | | | QDeclarativePropertyPrivate::setBinding would delete the binding if it cannot set the property. Then the call to binding->update() would crash. So test for (property.isProperty()) before. Also this will display a warning in the application output if the property cannot be changed. Reviewed-by: Lasse Holmstedt
* CompileAaron Kennedy2010-07-231-6/+3
|
* Generalize qml "registration"Aaron Kennedy2010-07-225-20/+62
| | | | | | While it is difficult to predict the future, the hope is that this might give us a little more flexibility when it comes to fixing bugs etc. in patch releases.
* Fix compiler warningAaron Kennedy2010-07-221-2/+0
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-07-222-3/+3
|\
| * Make rootContext and engine pointers in QDeclarativeView API constJoona Petrell2010-07-222-3/+3
| | | | | | | | | | Task-number: QTBUG-12322 Reviewed-by: Aaron Kennedy
* | Reuse QML lexer to simplify .pragma script logicAaron Kennedy2010-07-222-67/+42
|/
* Expand QDeclarativeExtensionPlugin docsBea Lam2010-07-211-12/+65
|
* Expand QtObject docBea Lam2010-07-211-7/+40
|
* font.letterSpacing used percentage rather than absolute values.Martin Jones2010-07-211-1/+1
| | | | | | | ... and percentage is useless. Task-number: QTBUG-12282 Reviewed-by: Warwick Allison
* various doc improvements for animation elementsBea Lam2010-07-201-4/+11
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-07-161-1/+1
|\ | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Fix RightBearing confusion in text layout fixes, improvements for various docs and example code Fixed debugger's evaluation of dynamic properties in context Allow test to pass on smaller screens (eg. 480 high). Minor animation doc improvement
| * Fixed debugger's evaluation of dynamic properties in contextLasse Holmstedt2010-07-161-1/+1
| | | | | | | | Reviewed-by: Aaron Kennedy
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-07-161-7/+3
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (104 commits) Fixed tst_maketestselftest::tests_pro_files failure remove nasty hack by using a stricter regexp (for language codes) cosmetics: quote the dot in the regexp remove dependency of ts targets on sub-tools add commit-ts target to commit ts files without line number info (re-)add 'untranslated' ts targets more fine-grained ts targets split qt_help out into an own ts target Unbreak the Maemo 5 build after the Symbian fix QNAM HTTP: Fix problem with cached files and metaDataChanged() Add a testcase for QTBUG-11213 to prevent future regressions. Autotest: reenable the NTLM proxy test on tst_QTcpSocket Autotest: add a small, boring test for QAuthenticator Add documentation for the QAuthenticator options. Expose the QAuthenticator map of options in the API. Add a QAuthenticatorPrivate parsing for the headers without QHttpResponseHeader Revert BIC change "Build Qt with option -Zc:wchar_t under MSVC" Fix for tst_qmdisubwindow::fixedMinMaxSize failure on Cocoa Add unit tests for QMimeData. fix qconfig.h reference for shadow builds ...
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-07-141-7/+3
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (83 commits) Crash while runnig tst_QMdiSubWindow::emittingOfSignals test on Cocoa fix qconfig.h aliased header creation fix warning directive on gnuc qdoc: Removed navigation arrow that was causing display problems. Silence warning when building with MSVC 2005 Fix an Assert in QTextTable Revert "Fix an Assert in QTextTable" Attempt to fix build failure with msvc200{5,8} on Windows XP. fix macx not having UNICODE in DEFINES any more doc: Fixed several qdoc warnings. Fix an Assert in QTextTable doc: Fixed several qdoc warnings. QSslSocket: Improve error handling qdoc: Fixed several <div> elements that had the "/>" ending. QSslSocket: fix documentation for QSslSocket::setPeerVerifyMode() qdoc: Fixed breadcrumbs for QML examples. remove redundand translations project files make projects lupdate-friendly Timing fix for slow devices. QNAM: Add future enum attribute for Zerocopy QNAM ...
| | * Fixing merge conflicts.Martin Smith2010-07-1316-69/+431
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge branch '4.7-upstream' into 4.7 Conflicts: doc/src/declarative/advtutorial.qdoc src/declarative/graphicsitems/qdeclarativeloader.cpp src/declarative/graphicsitems/qdeclarativetextedit.cpp src/declarative/qml/qdeclarativeengine.cpp src/declarative/util/qdeclarativexmllistmodel.cpp
| | * | qdoc: Marked some missing declarative properties and functions as \internal.Martin Smith2010-07-091-2/+2
| | | |
| | * | qdoc: Fixed a few links to QtObject (QML:QtObject)Martin Smith2010-07-071-3/+3
| | | |
* | | | fix spellingBea Lam2010-07-151-1/+1
|/ / /
* | | Check for binding having been deleted in more placesAaron Kennedy2010-07-141-0/+6
| | |
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-07-141-4/+12
|\ \ \
| * | | improvements to docs and examplesBea Lam2010-07-141-4/+12
| | |/ | |/|
* | | Split responsibilities in QDeclarativeExpression more cleanlyAaron Kennedy2010-07-147-331/+401
|/ /
* | Resetting bindings through debugger interfaceLasse Holmstedt2010-07-092-0/+28
| | | | | | | | Reviewed-by: Aaron Kennedy
* | doc improvementsBea Lam2010-07-092-5/+27
| |
* | Extend QDeclarativeImageProvider to support QPixmap loading andBea Lam2010-07-084-28/+196
| | | | | | | | | | | | | | | | | | | | synchronous loading of QImages. (QPixmaps can only be created in the main thread so they will always be loaded synchronously). This changes request() to requestImage() and adds requestPixmap() for pixmap support. Task-number: QTBUG-11989
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-07-081-12/+15
|\ \
| * | Micro optimization in QML date/time formatting functions.Michael Brasser2010-07-081-12/+15
| | |
* | | Allow the debugger to modify method bodiesAaron Kennedy2010-07-084-5/+83
|/ / | | | | | | QTBUG-11933
* | QML: Let the debugger now the name of embedded functions within a QML functionOlivier Goffart2010-07-071-1/+1
| | | | | | | | | | | | | | | | | | if you have stuff like Rectangle { function foo() {... } } We let QtScript, and hence the debugger know the function name. Reviewed-by: Roberto Raggi
* | docsBea Lam2010-07-071-2/+2
| |
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Bea Lam2010-07-062-6/+19
|\ \ | | | | | | | | | | | | Conflicts: doc/src/declarative/extending.qdoc
| * | docWarwick Allison2010-07-061-2/+2
| | |
| * | Fix inconsistent reporting of module import errors when using versions.Warwick Allison2010-07-051-3/+15
| | | | | | | | | | | | Task-number: QTBUG-11936
| * | Work around QTBUG-11929Warwick Allison2010-07-051-1/+2
| | |
* | | doc improvementsBea Lam2010-07-064-4/+56
|/ /
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-07-021-4/+4
|\ \
| * | fix doc linksBea Lam2010-07-021-2/+3
| | |
| * | Fix docs to link to the new QML Viewer page instead of the Runtime pageBea Lam2010-07-021-2/+1
| |/ | | | | | | | | where applicable, and remove or rename references to 'qml' tool. Also improve QML Viewer docs.
* | Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-023-4/+4
| | | | | | | | Task-number: QTBUG-11853
* | Don't accept *files* that exist when *directory* is required.Warwick Allison2010-07-021-2/+4
|/
* Remove a few more unnecessary exports.Martin Jones2010-07-011-1/+1
|
* Don't export declarative private classesMartin Jones2010-07-012-2/+2
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* Added SET_BINDING message to QDeclarative debugger protocolLasse Holmstedt2010-06-302-2/+66
| | | | | | | The new message currently enables resetting bindings, literal values and signal handlers (onX: {...}) through the debugger. Reviewed-by: Roberto Raggi
* Docs - add more links to relevant examplesBea Lam2010-06-303-2/+4
| | | | Task-number: QTBUG-11754
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-06-2912-32/+118
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (46 commits) Ensure Loader item change listener is removed when Loader is destroyed Adapt all qmlviewer testcases to the code changes in the actual viewer. Stop QMLLauncher from crashing on exit on Mac when quitting app via the VisualDataModel hasModelChildren role shadowed user roles. Allow positioning of ListView items width sub-pixel precision. Examples clean up Docs Improve appearance when scaling Tweak Qt Demo Behaviour forget to rename the moc include when renaming deviceorientation_maemo.cpp fix namespace macros fix QML Viewer resize modes forgot to cleanup the code a bit after adding Maemo5 support Make the QML viewer usable on the N900 Test QTBUG-11222 Test ListElement type via type system, not string comparison. Test only on X11, not only on Linux (which includes embedded). Handle enums in method arguments in the same way as QtScript Allow custom parsers to handle attached properties Allow components to be created from .pragma library JS files ...
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt into 4.7Martin Jones2010-06-285-31/+40
| |\ | | | | | | | | | | | | Conflicts: src/declarative/qml/qdeclarativeglobalscriptclass.cpp
| * \ Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-06-259-14/+82
| |\ \
| | * | Handle enums in method arguments in the same way as QtScriptAaron Kennedy2010-06-252-1/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | QML will now invoke methods with enums as arguments, in the same fashion as QtScript. QTBUG-11313
| | * | Allow custom parsers to handle attached propertiesAaron Kennedy2010-06-252-5/+20
| | | | | | | | | | | | | | | | QTBUG-11283