summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeproperty_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Don't export QtDeclarative symbols needed by QtCreator on SymbianJoona Petrell2010-10-191-4/+4
| | | | | Task-number: QTBUG-14041 Reviewed-by: Aaron Kennedy
* Connect property alias change signals on useAaron Kennedy2010-10-071-0/+3
| | | | Task-number: QTBUG-14089
* Add Component.onDestruction attached propertyAaron Kennedy2010-04-151-2/+1
| | | | | | | | | 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.
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-3/+3
|
* Improve value type binding behaviorAaron Kennedy2010-03-111-1/+2
| | | | | | | | | | | | | | Changing value type bindings in state changes, and implicitly removing them on property assignment was not reliable. Internally the system considered a binding on "font" and one on "font.x" as a binding on two separate properties, even though the "font" binding completely overrides the "font.x" property. Following this change a binding to "font.x" creates a proxy binding object on the "font" property in addition to the "font.x" binding itself. This allows behavior to be consistent across all operations. QT-2920
* Fix visibility of classes in private headers upon which Bauhaus/Creator relies.Warwick Allison2010-03-031-1/+1
| | | | Author: Erik Verbruggen
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-4/+5
|
* Remove unnecessary QDeclarativeProperty::Type enum valuesAaron Kennedy2010-02-261-0/+1
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-0/+140
There's nothing meta about our properties.