summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Recognize identifiers containing unicode escape sequences.Roberto Raggi2010-04-161-1/+41
| | | | | Task-number: QTBUG-8108 Reviewed-by: Olivier Goffart
* Fixed parsing of inner labelled statements.Roberto Raggi2010-04-162-4/+4
| | | | | | | | | | | | | | | | | The JS grammar is ambigious and the following statement can be parsed as an object-literal followed by an inserted semicolon or as two labelled statements. outer: { inner: {} } In the old days we used to resolve the conflict by reducing the statement to an expression statement but this was wrong so now we prefer the labelled statement. As nice side effect, we pass two more tests in tests/auto/declarative/parserstress. Task-number: QTBUG-8108
* More QML doc consistency.Martin Jones2010-04-164-22/+22
|
* Doc: in QML use "real" and "enumeration", not "qreal" and "enum"Martin Jones2010-04-1611-22/+22
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-1621-252/+387
|\
| * Wait for debug clients asynchronously instead of blocking creation ofBea Lam2010-04-163-85/+57
| | | | | | | | | | | | the engine until a debug client has connected. This makes for easier debugging from Qt Creator when debugging C++ and QML together and when debugging an application that has multiple engines.
| * ResizeMode support for QGraphicsWidgets created with QDeclarativeViewJoona Petrell2010-04-162-88/+180
| | | | | | | | | | Task-number: QTBUG-8814 Reviewed-by: alexis
| * More class documentation fixes for declarative.Michael Brasser2010-04-167-32/+77
| |
| * Simplify QML import plugin deployment linesJoona Petrell2010-04-165-10/+5
| | | | | | | | | | Task-number: Reviewed-by: Martin Jones
| * Add QML imports to s60installs.proJoona Petrell2010-04-161-0/+19
| | | | | | | | | | Task-number: QTBUG-9784 Reviewed-by: Martin Jones
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-168-11/+43
| |\
| * | Throw exceptions on programming errors for global functions.Warwick Allison2010-04-164-37/+49
| | | | | | | | | | | | Task-number: QTBUG-7897
* | | Doc: make note about using clip: true in views slightly more prominent.Martin Jones2010-04-163-3/+3
| |/ |/|
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-161-3/+3
|\ \
| * | Do not set a font pixel size of 0.Yann Bodson2010-04-161-3/+3
| | |
* | | Add parent property to TimerMartin Jones2010-04-161-0/+1
|/ / | | | | | | Task-number: QTBUG-9949
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-169-26/+72
|\ \
| * | CleanupAaron Kennedy2010-04-162-3/+3
| |/
| * Class documentation fixes for declarative.Michael Brasser2010-04-165-18/+62
| |
| * Correctly support translation in QDeclarativePixmapCacheWarwick Allison2010-04-162-5/+7
| |
* | Avoid calling QGraphicsItem::setTransformOriginPoint() until neededMartin Jones2010-04-164-5/+36
|/ | | | | Task-number: QTBUG-9772 Reviewed-by: Alexis
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-1653-314/+704
|\
| * Correctly support translation in QDeclarativeCompilerAaron Kennedy2010-04-152-8/+2
| | | | | | | | Reviewed-by: Friedemann Kleint
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-1546-309/+647
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits) Small calculator fix. Improve declarative calculator example. Update examples autotest to use the runtime directly Support valuetypes as method return values Compile without Qt3 support. Doc Simplify dynamic resource loading to avoid cluttering Text API. Add Component.onDestruction attached property Use qmlInfo for image loading errors, not qWarning(). Visual test updates. Rename section so that it's not linked to by references to "JavaScript" Doc improvements Comments Remove unused parameter Correctly resolve, and load, IMG tags in Text element. Rename "sql" test so autotester doesn't get confused. Should work now, don't skip. ignore autotester logs Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeData Rename QDeclarativeData -> QAbstractDeclarativeData ...
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-1546-309/+647
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits) Small calculator fix. Improve declarative calculator example. Update examples autotest to use the runtime directly Support valuetypes as method return values Compile without Qt3 support. Doc Simplify dynamic resource loading to avoid cluttering Text API. Add Component.onDestruction attached property Use qmlInfo for image loading errors, not qWarning(). Visual test updates. Rename section so that it's not linked to by references to "JavaScript" Doc improvements Comments Remove unused parameter Correctly resolve, and load, IMG tags in Text element. Rename "sql" test so autotester doesn't get confused. Should work now, don't skip. ignore autotester logs Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeData Rename QDeclarativeData -> QAbstractDeclarativeData ...
| | | * Support valuetypes as method return valuesAaron Kennedy2010-04-155-40/+99
| | | | | | | | | | | | | | | | QTBUG-9818
| | | * Compile without Qt3 support.Yann Bodson2010-04-151-1/+1
| | | |
| | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-151-0/+20
| | | |\
| | | | * DocAaron Kennedy2010-04-151-0/+20
| | | | |
| | | * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-1512-99/+126
| | | |\ \ | | | | |/
| | | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-04-153-10/+104
| | | | |\
| | | | * | Add Component.onDestruction attached propertyAaron Kennedy2010-04-1511-94/+119
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This property complements Component.onCompleted. It is emitted before the destruction actually begins (for the most part) so the objects are still alive and accessible. The QtObject.onDestroyed signal is now blocked as it never really worked properly anyway.
| | | | * | CommentsAaron Kennedy2010-04-151-1/+3
| | | | | |
| | | | * | Remove unused parameterAaron Kennedy2010-04-153-4/+4
| | | | | |
| | | * | | Simplify dynamic resource loading to avoid cluttering Text API.Warwick Allison2010-04-152-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-9900 QT-3287
| | | * | | Use qmlInfo for image loading errors, not qWarning().Warwick Allison2010-04-156-24/+73
| | | | |/ | | | |/| | | | | | | | | | | Task-number: QTBUG-9908
| * | | | QListView: Re-fix scrollbar rangesGabriel de Dietrich2010-04-151-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit 11dea4a8b227801c110f791f350632bf6f0c958d fixing QTBUG-2678 was the wrong solution and introduced some regressions. Auto-test included. Reviewed-by: Thierry Task-number: QTBUG-2678 Task-number: QTBUG-9455
| * | | | Fix compile error with QT_NO_GRAPHICSVIEW in QtMultimediaTasuku Suzuki2010-04-153-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: 2333 Reviewed-by: Thierry Bastian <thierry.bastian@nokia.com>
| * | | | Fix compile error with QT_NO_IMAGEFORMAT_XPM in QtGuiTasuku Suzuki2010-04-152-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: 2327 Reviewed-by: Thierry Bastian <thierry.bastian@nokia.com>
| * | | | Wrap EGL image function pointers and move into QEgl namespaceTom Cooksey2010-04-154-32/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QtGui exporting a symbol called eglCreateImageKHR seems a pretty silly idea. Much better to have them in the QEgl namespace. Reviewed-By: Iain
| * | | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-04-1514-35/+94
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Fix compilation of ShivaVG, which does not have EGL. Move nativePaintingActive flag to GL2 engine's private More adjustments to QTBUG-6800 Adjustments to QTBUG-6800 patch. QTBUG-6800 patch included, but only for OpenGL 2.0 Support building with desktop OpenGL managed via EGL Print more information when debugging X11 Visual selection Fix gcc compile warning in qstatictext.cpp Avoid taking sqrt of negative number in FT font engine
| | * | | Fix compilation of ShivaVG, which does not have EGL.Rhys Weatherley2010-04-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-9809 Reviewed-by: Sarah Smith
| | * | | Move nativePaintingActive flag to GL2 engine's privateTom Cooksey2010-04-142-9/+10
| | | | | | | | | | | | | | | | | | | | Reviewed-By: Samuel
| | * | | More adjustments to QTBUG-6800Carolina Gomes2010-04-143-13/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: 2344 Reviewed-by: Tom Cooksey
| | * | | Adjustments to QTBUG-6800 patch.Carolina Gomes2010-04-141-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: 2344 Reviewed-by: Tom Cooksey
| | * | | QTBUG-6800 patch included, but only for OpenGL 2.0Carolina Gomes2010-04-143-1/+39
| | | | | | | | | | | | | | | | | | | | | | | | | Merge-request: 2344 Reviewed-by: Tom Cooksey
| | * | | Support building with desktop OpenGL managed via EGLTom Cooksey2010-04-148-32/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This mostly replaces lots of QT_OPENGL_ES defines with QT_NO_EGL instead. It also switches off EGL auto-detection by default. This is to make sure we default to using GLX on systems with both EGL and desktop OpenGL. If -opengl es1|es2 or -openvg is specified, then EGL auto-detection is switched back on (as a requirement. If configure auto-detects OpenGL ES it also switches on EGL auto-detection, but failue then just disables both EGL & OpenGL. As a side effect, this patch also fixes building Qt when both EGL and glx are avaliable, as they are in Mesa >= 7.8.0. Reviewed-by: Trond Task-number: QTBUG-9691
| | * | | Print more information when debugging X11 Visual selectionTom Cooksey2010-04-141-0/+10
| | | | | | | | | | | | | | | | | | | | Reviewed-By: TrustMe
| | * | | Fix gcc compile warning in qstatictext.cppEskil Abrahamsen Blomfeldt2010-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Synchronize order of initialization with order of declaration. Reviewed-by: TrustMe
| | * | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.7Eskil Abrahamsen Blomfeldt2010-03-304047-160751/+330419
| | |\ \ \