summaryrefslogtreecommitdiffstats
path: root/src/declarative
Commit message (Collapse)AuthorAgeFilesLines
* CompileAaron Kennedy2010-04-191-0/+2
|
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-04-195-23/+29
|\
| * Add some padding to Rectangles with border to avoid qDrawBorderPixmap() bug.Martin Jones2010-04-191-1/+3
| | | | | | | | Task-number: QTBUG-5689
| * Speed up Rectangle creation with pen or gradient slightlyMartin Jones2010-04-192-3/+16
| |
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-194-3/+35
| |\
| * | Always allow view position to be fixed.Martin Jones2010-04-193-19/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We used to avoid doing fixup in a direction we were not flicking. This was pointless, and caused bugs when the view transitioned from flickable to not flickable, e.g. by content size change. Fixup following content size is also no longer animated. This can be acheived using a behavoir, for example. Task-number: QTBUG-9961
* | | Emit runtime warnings through QDeclarativeEngineAaron Kennedy2010-04-1933-133/+273
| |/ |/| | | | | QTBUG-9726
* | Update mouse area coordinates automatically when changing positionLeonardo Sobral Cunha2010-04-194-3/+35
|/ | | | | | | | | 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-1837-299/+520
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '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-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
| * 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-1612-240/+356
| |\
| | * 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
| | |
| | * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Warwick Allison2010-04-166-11/+32
| | |\
| | * | Throw exceptions on programming errors for global functions.Warwick Allison2010-04-161-35/+42
| | | | | | | | | | | | | | | | 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
| | |
| * | Avoid calling QGraphicsItem::setTransformOriginPoint() until neededMartin Jones2010-04-162-5/+25
| | | | | | | | | | | | | | | Task-number: QTBUG-9772 Reviewed-by: Alexis
* | | Further RVCT4 fixes for SymbianIain2010-04-161-1/+1
| |/ |/| | | | | | | | | | | More corrections to declarations to ensure symbol visibility is correct Task-number: QTBUG-9998 Reviewed-by: TrustMe
* | Correctly support translation in QDeclarativePixmapCacheWarwick Allison2010-04-162-5/+7
|/
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-04-1622-180/+316
|\
| * Correctly support translation in QDeclarativeCompilerAaron Kennedy2010-04-152-8/+2
| | | | | | | | Reviewed-by: Friedemann Kleint
| * 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-155-22/+65
| | |/ | |/| | | | | | | Task-number: QTBUG-9908
* | | Improve warning for non-Item delegates.Martin Jones2010-04-161-2/+12
|/ / | | | | | | Task-number: QTBUG-9682
* | Correctly resolve, and load, IMG tags in Text element.Warwick Allison2010-04-153-10/+104
|/ | | | | | Task-number: QTBUG-9900 Reviewed-by: Martin Jones
* Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-1521-80/+80
|
* Rename QDeclarativeData -> QAbstractDeclarativeDataAaron Kennedy2010-04-152-7/+7
| | | | Reviewed-by: Martin Jones
* Add flow property to Grid, adding TopToBottom mode.Martin Jones2010-04-152-43/+112
| | | | Task-number: QTBUG-9183
* Add QML object destruction hookAaron Kennedy2010-04-152-2/+13
|
* Make sure richtext wraps correctly with a fixed height set.Martin Jones2010-04-151-1/+1
|
* Output script errors in ScriptAction and StateChangeScriptMartin Jones2010-04-152-0/+13
| | | | Task-number: QTBUG-9897
* Don't create delegates when destroying view.Martin Jones2010-04-141-1/+4
| | | | Task-number: QTBUG-9840