summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
Commit message (Collapse)AuthorAgeFilesLines
* Allow Unicode identifiers.Warwick Allison2009-10-121-3/+8
|
* Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-1244-338/+704
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlcompiler.cpp
| * Pass all WriteProperty argsAaron Kennedy2009-10-121-3/+3
| |
| * Test that Component {} is allowed as the root elementAaron Kennedy2009-10-121-2/+4
| |
| * Composite types should assign to object propertiesAaron Kennedy2009-10-126-13/+31
| | | | | | | | Fixes QT-956
| * Use utf8 instead of latin1 where appropriateAaron Kennedy2009-10-121-3/+3
| |
| * Use utf8 instead of latin1 where appropriateAaron Kennedy2009-10-1213-36/+36
| |
| * The root object is always last default objectAaron Kennedy2009-10-121-1/+5
| | | | | | | | Fix for QT-2301
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-1226-153/+460
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Add missing files.Michael Brasser2009-10-122-0/+145
| | |
| | * Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-10-1116-116/+126
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | | * Fix buildThierry Bastian2009-10-091-1/+1
| | | |
| | * | Improve Behavior reliability.Michael Brasser2009-10-1123-152/+314
| | | |
| * | | Add id aliasesAaron Kennedy2009-10-092-17/+42
| | |/ | |/|
| * | Support aliases to enum propertiesAaron Kennedy2009-10-091-2/+5
| | |
| * | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-092-31/+1
| |\ \ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Remove deprecated write to signal property supportYann Bodson2009-10-092-31/+1
| | | |
| * | | Tweak scope ordering (again)Aaron Kennedy2009-10-095-37/+49
| |/ / | | | | | | | | | | | | | | | ids and methods shadow properties. The reasoning is that the user explicitly declared these names, whereas they might not even know a property by that name exists.
| * | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-091-12/+12
| |\ \ | | |/ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Output file/line for script errorsAaron Kennedy2009-10-0911-45/+70
| | |
* | | Fix warnings.Martin Jones2009-10-121-4/+4
| |/ |/|
* | Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-10-0946-1293/+3626
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Move Q_PROPERTY()'s to top of objectAaron Kennedy2009-10-081-4/+4
| | | | | | | | | | Q_PROPERTY() macros without a semicolon inside a class access block (public:) confuses moc into ignoring Q_INVOKABLES
| * Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-083-24/+24
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui-scriptopt
| * | Small optimizationAaron Kennedy2009-10-081-3/+4
| | |
| * | Zero bindingBits correctlyAaron Kennedy2009-10-081-2/+3
| | |
| * | Fix crashAaron Kennedy2009-10-081-1/+1
| | |
| * | Use correct file caseAaron Kennedy2009-10-081-3/+3
| | |
| * | Update to use new QScriptDeclarativeClass APIAaron Kennedy2009-10-081-2/+2
| | |
| * | Make qmlecmascript:selfDeletingBinding passAaron Kennedy2009-10-084-133/+182
| | | | | | | | | | | | | | | | | | | | | Expressions and bindings must not reference data following their evalutation incase their object has been deleted. To solve this, the needed data is separated into a reference counted QmlExpressionData and QmlBindingData object.
| * | Remove bogus assertAaron Kennedy2009-10-071-1/+0
| | |
| * | Add Object.destroy(int delay) parameterAaron Kennedy2009-10-071-3/+5
| | |
| * | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-071-38/+4
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into test Conflicts: demos/declarative/samegame/content/samegame.js tests/auto/declarative/qmlecmascript/tst_qmlecmascript.cpp
| * | | Make Script an instrinsic typeAaron Kennedy2009-10-0716-14/+441
| | | | | | | | | | | | | | | | | | | | This allows us to delay the QML load until external script files have been loaded from the network, and to correctly scope these scripts.
| * | | Improve scope handlingAaron Kennedy2009-10-068-55/+94
| | | |
| * | | Share QScriptValue's where possibleAaron Kennedy2009-10-062-1/+12
| | | | | | | | | | | | | | | | Also add an autotest for object comparisons
| * | | Support all variant types as signal parametersAaron Kennedy2009-10-051-18/+188
| | | |
| * | | Use QMetaObject::indexOfProperty()Aaron Kennedy2009-10-051-8/+4
| | | | | | | | | | | | | | | | | | | | This is both more efficient, and allows the creation of dynamic properties.
| * | | Fix test failuresAaron Kennedy2009-10-058-25/+30
| | | |
| * | | Fix attached properties/enums from ecmascriptAaron Kennedy2009-10-055-25/+61
| | | |
| * | | CrashAaron Kennedy2009-10-051-1/+3
| | | |
| * | | Implement QmlValueTypeScriptClass::newObject()Aaron Kennedy2009-10-051-1/+2
| | | |
| * | | Update to new QScriptDeclarativeClass APIAaron Kennedy2009-10-058-75/+31
| | | |
| * | | Reenable types/enums and move scripts into an isolated scopeAaron Kennedy2009-10-0523-379/+907
| | | |
| * | | Prevent writes to the global objectAaron Kennedy2009-10-057-44/+246
| | | | | | | | | | | | | | | | Also add toString() method to qobjects
| * | | Read/write property directly from QmlObjectScriptClassAaron Kennedy2009-10-055-83/+83
| | | |
| * | | QmlMetaProperty cleanupAaron Kennedy2009-10-054-332/+348
| | | |
| * | | Minor QmlMetaProperty cleanupAaron Kennedy2009-10-052-20/+35
| | | |
| * | | Improve script lookup cachingAaron Kennedy2009-10-0518-355/+998
| | | |
| * | | Create a property cache for synthesized metaobjectsAaron Kennedy2009-10-0514-93/+303
| | | |