Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 278 | -1277/+0 |
| | | | | QDeclarativeXXX. | ||||
* | Fix expected errors following d43ec1bdb12649c32f0f0067492857a70bef05b4 | Bea Lam | 2010-02-24 | 3 | -3/+3 |
| | |||||
* | Replace QmlList* and QList* support with a single QmlListProperty type | Aaron Kennedy | 2010-02-22 | 3 | -12/+0 |
| | | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer). | ||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | Fix qml test breakage of 12180c397a2007970978033928b4b5b12efad7c6 | Friedemann Kleint | 2010-02-16 | 15 | -15/+15 |
| | | | | Fix messages in test data. | ||||
* | Fix tests | Bea Lam | 2010-02-10 | 1 | -1/+1 |
| | |||||
* | Remove old implicit module support. | Warwick Allison | 2010-02-09 | 1 | -0/+2 |
| | | | | | | | | 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 | ||||
* | Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵ | Bea Lam | 2010-02-03 | 2 | -0/+37 |
|\ | | | | | | | into kinetic-declarativeui | ||||
| * | Test case for QTBUG-7860 | Aaron Kennedy | 2010-02-03 | 1 | -0/+8 |
| | | |||||
| * | Test for default property ordering | Aaron Kennedy | 2010-02-03 | 1 | -0/+29 |
| | | |||||
* | | Disallow ids that start with uppercase letters and update docs and | Bea Lam | 2010-02-03 | 16 | -33/+33 |
|/ | | | | | | examples accordingly. Task-number: QT-2786 | ||||
* | Allow composite value sources | Aaron Kennedy | 2010-01-21 | 2 | -0/+11 |
| | |||||
* | Implement custom QML slot invokation logic | Aaron Kennedy | 2010-01-15 | 1 | -1/+1 |
| | | | | | | | | Previously QML was inefficiently forwarding the task of invoking Qt slots to QScript. QML does not implement the more advanced argument coercian of QScript and does not support method overloading. These two features are only needed to support legacy C++ classes (of which QML has none), and are not worth the perf cost to support. | ||||
* | Fix and test version 0.0 installed imports. | Warwick Allison | 2010-01-13 | 1 | -0/+1 |
| | |||||
* | Support aliasing of composite types. | Michael Brasser | 2009-12-17 | 4 | -0/+35 |
| | | | | | Composite types haven't been registered with the metatype system, so we use the base type as the property type instead. | ||||
* | Generate error when attempting to write to a read-only object property. | Michael Brasser | 2009-12-10 | 3 | -0/+18 |
| | |||||
* | Use console.log, not print. | Warwick Allison | 2009-11-23 | 9 | -11/+11 |
| | |||||
* | Rename QML Object to QtObject | Aaron Kennedy | 2009-11-19 | 61 | -85/+86 |
| | |||||
* | tests | Aaron Kennedy | 2009-11-17 | 5 | -0/+28 |
| | |||||
* | Missing files | Aaron Kennedy | 2009-11-13 | 1 | -0/+5 |
| | |||||
* | More language tests | Aaron Kennedy | 2009-11-06 | 43 | -3/+141 |
| | |||||
* | More error-case tests | Aaron Kennedy | 2009-11-05 | 22 | -0/+69 |
| | |||||
* | Remove "to" limit on minor version. | Warwick Allison | 2009-11-05 | 1 | -2/+2 |
| | | | | | | QML_DEFINE_TYPE etc. now define just the initial support version, with support in all future versions being thus implied. QTBUG-5421 | ||||
* | Improve qmllanguage test case | Aaron Kennedy | 2009-11-04 | 46 | -0/+187 |
| | |||||
* | Fix incorrect assert | Aaron Kennedy | 2009-11-03 | 1 | -0/+5 |
| | | | | QT-2432 | ||||
* | Test visibility. | Warwick Allison | 2009-10-28 | 1 | -0/+2 |
| | | | | Add refs back to JIRA items. | ||||
* | Alias cleanup testcase | Aaron Kennedy | 2009-10-27 | 1 | -0/+14 |
| | |||||
* | Don't crash when requesting an attached object for non-QML object | Aaron Kennedy | 2009-10-27 | 2 | -0/+11 |
| | |||||
* | Error when a QVariant property is used as a grouped property | Aaron Kennedy | 2009-10-27 | 4 | -0/+15 |
| | | | | This crashed as the metatype of QVariant is -1. | ||||
* | Use the correct context when resolving alias properties | Aaron Kennedy | 2009-10-22 | 2 | -0/+22 |
| | |||||
* | Support assigning scripts to QML properties | Aaron Kennedy | 2009-10-22 | 1 | -0/+6 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Aaron Kennedy | 2009-10-16 | 1 | -0/+5 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | Test Unicode namespace | Warwick Allison | 2009-10-15 | 1 | -0/+5 |
| | | |||||
* | | Fix failing test on case insensitive filesystems | Aaron Kennedy | 2009-10-15 | 2 | -2/+2 |
|/ | |||||
* | Force QML files to be always UTF-8. | Warwick Allison | 2009-10-14 | 2 | -1/+1 |
| | | | | Ensure test works in all locales. | ||||
* | Add Component::onCompleted attached property | Aaron Kennedy | 2009-10-14 | 2 | -0/+25 |
| | |||||
* | Library importing requires a version. Fix and test. | Warwick Allison | 2009-10-13 | 2 | -2/+2 |
| | |||||
* | More i18n | Warwick Allison | 2009-10-13 | 1 | -1/+1 |
| | |||||
* | Fix UTF8 vs. Latin1 conversion | Warwick Allison | 2009-10-12 | 7 | -22/+17 |
| | | | | I18n tests | ||||
* | I18n tests | Warwick Allison | 2009-10-12 | 7 | -0/+43 |
| | |||||
* | Test that Component {} is allowed as the root element | Aaron Kennedy | 2009-10-12 | 2 | -0/+13 |
| | |||||
* | Composite types should assign to object properties | Aaron Kennedy | 2009-10-12 | 5 | -0/+38 |
| | | | | Fixes QT-956 | ||||
* | Add id aliases | Aaron Kennedy | 2009-10-09 | 1 | -0/+13 |
| | |||||
* | Support aliases to enum properties | Aaron Kennedy | 2009-10-09 | 2 | -0/+15 |
| | |||||
* | Another test | Aaron Kennedy | 2009-10-06 | 1 | -0/+13 |
| | |||||
* | Rename testcases | Aaron Kennedy | 2009-09-23 | 127 | -0/+522 |