Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 1 | -157/+0 |
| | | | | QDeclarativeXXX. | ||||
* | Replace QmlList* and QList* support with a single QmlListProperty type | Aaron Kennedy | 2010-02-22 | 1 | -23/+8 |
| | | | | | | | | 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). | ||||
* | Fix copyright year. | Jason McDonald | 2010-02-16 | 1 | -1/+1 |
| | | | | Reviewed-by: Trust Me | ||||
* | Optimization: Bypass qt_metacall for synthesized methods | Aaron Kennedy | 2010-01-09 | 1 | -1/+3 |
| | |||||
* | Optimization: Cache compiled dynamic functions | Aaron Kennedy | 2010-01-08 | 1 | -4/+6 |
| | |||||
* | Stop using QGuard | Aaron Kennedy | 2009-12-23 | 1 | -1/+3 |
| | | | | | | This should allow QGuard to be removed from Qt and QObjectPrivate::ExtraData. Having QmlGuard inside QmlDeclarativeData reduces the number of new's, and creating QmlDeclarativeData is faster than QObjectPrivate::ExtraData anyway. | ||||
* | fix includes | Oswald Buddenhagen | 2009-12-03 | 1 | -1/+3 |
| | | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes. | ||||
* | Do not use "QtDeclarative/XXX" style includes in declarative module code, | Warwick Allison | 2009-11-12 | 1 | -1/+1 |
| | | | | as it breaks reinstalling the module against existing Qt. | ||||
* | Fixup qmllanguage::aliasProperties test | Aaron Kennedy | 2009-11-11 | 1 | -0/+3 |
| | |||||
* | fix headers | Warwick Allison | 2009-10-29 | 1 | -16/+16 |
| | |||||
* | Fix Behavior support for value type properties. | Michael Brasser | 2009-10-23 | 1 | -2/+3 |
| | |||||
* | Tweak scoping | Aaron Kennedy | 2009-10-21 | 1 | -0/+1 |
| | | | | | qmlContext() now returns the outer, not the inner context. The VME MetaObject now saves the context used to run function bodies | ||||
* | Improve Behavior reliability. | Michael Brasser | 2009-10-11 | 1 | -0/+4 |
| | |||||
* | Preliminary support for object and list synthesized property types | Aaron Kennedy | 2009-09-22 | 1 | -5/+28 |
| | |||||
* | Rework compiler to a two phase analyse/generate approach | Aaron Kennedy | 2009-07-15 | 1 | -2/+8 |
| | |||||
* | Support parameterized synthesized methods | Aaron Kennedy | 2009-07-02 | 1 | -16/+43 |
| | |||||
* | Initial property aliasing support | Aaron Kennedy | 2009-07-02 | 1 | -1/+12 |
| | | | | Currently very basic - the only alias "script" that is allowed is Id.property | ||||
* | Cleanup | Michael Brasser | 2009-06-30 | 1 | -0/+12 |
| | | | | | Fix up license headers and private warnings, as well as other general cleanups. | ||||
* | Allow synthesized and extension meta objects to work together | Aaron Kennedy | 2009-06-18 | 1 | -0/+1 |
| | |||||
* | Fixed #includes | Roberto Raggi | 2009-05-18 | 1 | -3/+3 |
| | |||||
* | Very basic slot declaration support | Aaron Kennedy | 2009-05-05 | 1 | -1/+5 |
| | | | | | | | | | | Currently only parameterless slots are supported. They are declared inline with the object: Rect { function mySlot() { print("Hello world!"); } } | ||||
* | Initial import of kinetic-dui branch from the old kinetic | Michael Brasser | 2009-04-22 | 1 | -0/+71 |