Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Naively fix handling of qreal properties for ARM. | Michael Brasser | 2009-05-22 | 1 | -1/+2 |
| | | | | | This gets things working, but isn't ideal as it treats qreal properties as type double on ARM (where they should be of type float). | ||||
* | Remove unnecessary code | Aaron Kennedy | 2009-05-20 | 1 | -2/+0 |
| | |||||
* | Start work on translation support in Qml. | Michael Brasser | 2009-05-18 | 1 | -0/+2 |
| | | | | Added basic support for qsTr in Qml, both in the engine and in lupdate. | ||||
* | Remove Assign*Binding VME instructions | Aaron Kennedy | 2009-05-15 | 1 | -29/+0 |
| | |||||
* | Remove AssignConstant VME instruction | Aaron Kennedy | 2009-05-15 | 1 | -58/+0 |
| | |||||
* | Remove AssignSignal instruction | Aaron Kennedy | 2009-05-13 | 1 | -33/+0 |
| | |||||
* | Remove left over debugging | Aaron Kennedy | 2009-05-13 | 1 | -1/+0 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Aaron Kennedy | 2009-05-13 | 1 | -0/+1 |
|\ | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| * | More robust error handling (in ListView) and reporting (in VisualModel). | Martin Jones | 2009-05-12 | 1 | -0/+1 |
| | | |||||
* | | Remove QWidget hack | Aaron Kennedy | 2009-05-12 | 1 | -5/+1 |
|/ | | | | We no longer have any QWidget bindings, so we don't need this hack. Will have to solve the problem properly when we reintroduce QWidget support. | ||||
* | Clean up qmlparser test | Aaron Kennedy | 2009-05-12 | 1 | -1/+6 |
| | |||||
* | Use sub-component metaobjects to improve performance | Aaron Kennedy | 2009-05-11 | 1 | -2/+2 |
| | | | | This reduces the number of runtime-resolved AssignConstant instructions that need to be generated. | ||||
* | Handle QmlParserStatus's and QmlBindableValeus being deleted during ↵ | Aaron Kennedy | 2009-05-11 | 1 | -8/+27 |
| | | | | component creation | ||||
* | Add some support for QWidget (again) | Thomas Hartmann | 2009-05-06 | 1 | -1/+6 |
| | | | | | | | QObject::setParent is not allowed for QWidgets using QWidget::setParent instead if QObject::isWidgetType() Reviewed-by: Kai Koehne | ||||
* | Improve error handling | Aaron Kennedy | 2009-05-06 | 1 | -2/+5 |
| | | | | If a sub-component causes an error during creation we propagate those errors to the instantiating component. | ||||
* | Very basic slot declaration support | Aaron Kennedy | 2009-05-05 | 1 | -1/+1 |
| | | | | | | | | | | Currently only parameterless slots are supported. They are declared inline with the object: Rect { function mySlot() { print("Hello world!"); } } | ||||
* | Remove XML custom parser support | Aaron Kennedy | 2009-05-05 | 1 | -21/+0 |
| | |||||
* | Improve error handling consistency | Aaron Kennedy | 2009-05-05 | 1 | -11/+13 |
| | |||||
* | Make custom parsers internal. | Aaron Kennedy | 2009-04-30 | 1 | -1/+1 |
| | | | | Custom parsers still have a way to go before they fully fit the QML 2.0 language. | ||||
* | Prototype custom parsers for non-xml qml language | Aaron Kennedy | 2009-04-30 | 1 | -0/+5 |
| | | | | ListModel has been ported (under the name ListModel2) to demonstrate. ListModel2 behaves the same as ListModel, except that list "objects" must be called "ListElement" instead of a freeform name. | ||||
* | Coding style refactor, changing 'if(' and 'for(' to 'if (' and 'for (' | Leonardo Sobral Cunha | 2009-04-28 | 1 | -64/+64 |
| | |||||
* | Use QObject declarative data to store attached properties. | Aaron Kennedy | 2009-04-28 | 1 | -6/+2 |
| | | | | | An element's qmlAttachedProperties() function will now only ever get called once per object. | ||||
* | Add a declarative data ptr to QObjectPrivate | Aaron Kennedy | 2009-04-27 | 1 | -1/+2 |
| | | | | This data ptr does not increase the size of the QObject, as we take advantage of space only used during destruction. Currently this data is only used to store an object's QmlContext, but it will be used for more later. | ||||
* | Initial import of kinetic-dui branch from the old kinetic | Michael Brasser | 2009-04-22 | 1 | -0/+1345 |