summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update mouse area coordinates automatically when changing positionLeonardo Sobral Cunha2010-04-196-3/+114
| | | | | | | | | Mouse area coordinates are now updated when the mouse area changes position and positionChanged signals are not emitted on mousePress anymore (only mousePosChanged signals). Task-number: QTBUG-9716 Reviewed-by: Michael Brasser
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-1888-733/+1180
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits) Recognize identifiers containing unicode escape sequences. Fix README Fix doc: QML_DECLARE_TYPE is no longer necessary Fix doc: remote contents requires qmldir Fixed parsing of inner labelled statements. Doc Remove unsupported plugin version flags in .pro files of declarative examples Documentation typo. More QML doc consistency. Ensure existing image is gone before next photo selection. Don't use zoomfactor. Doc: in QML use "real" and "enumeration", not "qreal" and "enum" Doc: Put "default" property label on same line as property name Wait for debug clients asynchronously instead of blocking creation of Test not reliable ResizeMode support for QGraphicsWidgets created with QDeclarativeView More class documentation fixes for declarative. Simplify QML import plugin deployment lines Add QML imports to s60installs.pro Cleanup photoviewer demo. ...
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-1788-733/+1180
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits) Recognize identifiers containing unicode escape sequences. Fix README Fix doc: QML_DECLARE_TYPE is no longer necessary Fix doc: remote contents requires qmldir Fixed parsing of inner labelled statements. Doc Remove unsupported plugin version flags in .pro files of declarative examples Documentation typo. More QML doc consistency. Ensure existing image is gone before next photo selection. Don't use zoomfactor. Doc: in QML use "real" and "enumeration", not "qreal" and "enum" Doc: Put "default" property label on same line as property name Wait for debug clients asynchronously instead of blocking creation of Test not reliable ResizeMode support for QGraphicsWidgets created with QDeclarativeView More class documentation fixes for declarative. Simplify QML import plugin deployment lines Add QML imports to s60installs.pro Cleanup photoviewer demo. ...
| | * Recognize identifiers containing unicode escape sequences.Roberto Raggi2010-04-162-3/+43
| | | | | | | | | | | | | | | Task-number: QTBUG-8108 Reviewed-by: Olivier Goffart
| | * Fix READMEmae2010-04-161-1/+1
| | | | | | | | | | | | The base directory is no longer automatically used as import path.
| | * Fix doc: QML_DECLARE_TYPE is no longer necessarymae2010-04-162-23/+4
| | | | | | | | | | | | It's sufficient to register a type with qmlRegisterType<T>()
| | * Fix doc: remote contents requires qmldirmae2010-04-161-2/+4
| | |
| | * Fixed parsing of inner labelled statements.Roberto Raggi2010-04-163-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * DocAaron Kennedy2010-04-161-2/+2
| | |
| | * Remove unsupported plugin version flags in .pro files of declarative examplesJoona Petrell2010-04-162-2/+0
| | | | | | | | | | | | | | | Task-number: QTBUG-9191 Reviewed-by: Martin Jones
| | * Documentation typo.Yann Bodson2010-04-161-8/+8
| | |
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-162-2/+3
| | |\
| | | * Ensure existing image is gone before next photo selection.Warwick Allison2010-04-161-0/+1
| | | | | | | | | | | | | | | | Task-number: QTBUG-8084
| | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-1652-538/+836
| | | |\
| | | * | Don't use zoomfactor.Warwick Allison2010-04-161-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | It gives better resolution for text positioning, btu many web sites don't work well with it and WebKit.
| | * | | More QML doc consistency.Martin Jones2010-04-164-22/+22
| | | |/ | | |/|
| | * | Doc: in QML use "real" and "enumeration", not "qreal" and "enum"Martin Jones2010-04-1612-28/+23
| | | |
| | * | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-1643-592/+930
| | |\ \
| | | * | Wait for debug clients asynchronously instead of blocking creation ofBea Lam2010-04-168-311/+143
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | | * | Test not reliableBea Lam2010-04-161-8/+0
| | | | |
| | | * | ResizeMode support for QGraphicsWidgets created with QDeclarativeViewJoona Petrell2010-04-1610-132/+551
| | | | | | | | | | | | | | | | | | | | | | | | | 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
| | | * | Cleanup photoviewer demo.Yann Bodson2010-04-163-4/+6
| | | |/
| | | * clean upWarwick Allison2010-04-161-1/+0
| | | |
| | | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-169-11/+60
| | | |\
| | | * | Throw exceptions on programming errors for global functions.Warwick Allison2010-04-169-94/+129
| | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-7897
| | * | | Doc: Put "default" property label on same line as property nameMartin Jones2010-04-162-10/+9
| | | | | | | | | | | | | | | | | | | | Task-number: QTBUG-6336
| | * | | Doc: make note about using clip: true in views slightly more prominent.Martin Jones2010-04-163-3/+3
| | | |/ | | |/|
| | * | Add test for QTBUG-9949Martin Jones2010-04-161-0/+17
| | | | | | | | | | | | | | | | Task-number: QTBUG-9949
| | * | 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
| | | |
| | * | 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-s60-public into ↵Qt Continuous Integration System2010-04-1821-68/+227
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public: EABI and BWINS DEF file updates for Symbian Further RVCT4 fixes for Symbian Symbol visibility fixes for RVCT4 on Symbian Symbol visibility fixes for RVCT4 on Symbian Symbol visibility fixes for RVCT4 on Symbian Fixed automatic patching of self-signed packages Webkit got bigger, make it link again on armlink Set library path properly for all systems Make debugging floating point mistakes much easier. Simplify docs a bit Fix check for arm based systems Fix option(recursive)
| * | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public into ↵Qt Continuous Integration System2010-04-1721-68/+227
| |\ \ \ |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/qt-s60-public: EABI and BWINS DEF file updates for Symbian Further RVCT4 fixes for Symbian Symbol visibility fixes for RVCT4 on Symbian Symbol visibility fixes for RVCT4 on Symbian Symbol visibility fixes for RVCT4 on Symbian Fixed automatic patching of self-signed packages Webkit got bigger, make it link again on armlink Set library path properly for all systems Make debugging floating point mistakes much easier. Simplify docs a bit Fix check for arm based systems Fix option(recursive)
| * | | EABI and BWINS DEF file updates for SymbianIain2010-04-168-46/+139
| | | | | | | | | | | | | | | | Reviewed-by: TrustMe
| * | | Further RVCT4 fixes for SymbianIain2010-04-162-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | More corrections to declarations to ensure symbol visibility is correct Task-number: QTBUG-9998 Reviewed-by: TrustMe
| * | | Symbol visibility fixes for RVCT4 on SymbianIain2010-04-1626-38/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RVCT 4 is far more strict with regards to symbol visiblity that RVCT 2.2, and will hide symbols unless all references have default visibility in the object files. Update the various places in Qt code where the symbol visibility was set incorrectly for DLL-based platforms (those that use __declspec(dllimport) and (dllexport). Note: QtWebkit and QtScript are fixed in different commits. Task-number: QTBUG-9903 Reviewed-by: Jason Barron (cherry picked from commit a7ded5708ce81a37404cc0db8de84521c2aa693d)
| * | | Symbol visibility fixes for RVCT4 on SymbianIain2010-04-162-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RVCT 4 is far more strict with regards to symbol visiblity that RVCT 2.2, and will hide symbols unless all references have default visibility in the object files. Update the various places in Qt code where the symbol visibility was set incorrectly for DLL-based platforms (those that use __declspec(dllimport) and (dllexport). Note: QtWebkit and other Qt modules are fixed in different commits. Task-number: QTBUG-9903 Reviewed-by: Jason Barron (cherry picked from commit b2271d364cdc26187e5f9113f4c1816f334e37a1)
| * | | Symbol visibility fixes for RVCT4 on SymbianIain2010-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RVCT 4 is far more strict with regards to symbol visiblity that RVCT 2.2, and will hide symbols unless all references have default visibility in the object files. Update the various places in Qt code where the symbol visibility was set incorrectly for DLL-based platforms (those that use __declspec(dllimport) and (dllexport). Note: Other Qt modules and QtScript are fixed in different commits. Task-number: QTBUG-9903 Reviewed-by: Jason Barron Janne Koskinen (cherry picked from commit 81837e43e3f966c1755e90eb65df6e3bad506ed7)
| * | | Fixed automatic patching of self-signed packagesMiikka Heikkinen2010-04-162-10/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Don't autopatch when just preprocessing pkg or creating stub package - Copy binaries before patching so that originals are preserved. - Only autopatch the preprocessed file so that original template is preserved. - Added clear warning to patch_capabilities.pl to notify users that patched package is not suitable for distribution. Task-number: QTBUG-9972 Reviewed-by: Shane Kearns
| * | | Webkit got bigger, make it link again on armlinkThomas Zander2010-04-162-1/+5
| | | |
| * | | Set library path properly for all systemsThomas Zander2010-04-161-1/+2
| | | | | | | | | | | | | | | | This makes webkit link again on symbian/linux
| * | | Make debugging floating point mistakes much easier.Thomas Zander2010-04-161-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Its a common mistake that a floating point error, like divide by zero, is not detected and just propagated till it breaks in curious ways elsewhere. Like QBezier hitting an infinite loop due to operating on NaN floating points. Adding detection of this in a debug build of Qt is sure to help a lot of these issues be detected much faster and so Qt helps people write code even faster. Reviewed-By: Gunnar Sletta
| * | | Simplify docs a bitThomas Zander2010-04-162-3/+1
| | | |