summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeproperty.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'qt/4.8'Jyri Tahtela2011-05-181-0/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: doc/src/examples/wheel.qdoc src/gui/util/qflickgesture.cpp src/gui/util/qflickgesture_p.h src/gui/util/qscroller.cpp src/gui/util/qscroller.h src/gui/util/qscroller_p.h src/gui/util/qscrollerproperties.cpp src/gui/util/qscrollerproperties.h tests/auto/qscroller/tst_qscroller.cpp
| * Merge remote-tracking branch 'origin/4.7' into qt-4.8-from-4.7Olivier Goffart2011-05-061-0/+2
| |\ | | | | | | | | | | | | | | | | | | Conflicts: src/gui/painting/qpainterpath.cpp src/gui/text/qfontengine_ft.cpp src/s60installs/eabi/QtGuiu.def
| | * Uninitialized memory is compared.Martin Jones2011-05-051-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Memory is allocated and used without first clearing it. At the least this annoys valgrind, but also has potential for real problems. Change-Id: Icf3fd39f44ee0481dd732510e7f8b3ad6cef477d Task-number: QTBUG-15187 Reviewed-by: Aaron Kennedy
* | | Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
|/ / | | | | | | | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* | Compile with QStringBuilder and QByteArrayOlivier Goffart2011-04-011-1/+1
|/ | | | Reviewed-by: Denis
* Fix warnings in QtDeclarativeThiago Macieira2011-02-171-1/+1
|
* Allow property bindings to be easily created from JavaScriptBea Lam2011-01-271-8/+17
| | | | | | | | Properties can now be assigned a function that returns the binding value. Task-number: QTBUG-14964 Reviewed-by: Aaron Kennedy
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-2/+2
|\
| * Don't crash Qt Creator when debugging an object aliasAaron Kennedy2011-01-131-1/+1
| | | | | | | | Task-number: QTBUG-16131
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Optimization: make QDeclarativePropertyPrivate shared.Michael Brasser2010-12-221-37/+61
| | | | | | | | | | Task-number: QTBUG-15331 Reviewed-by: Aaron Kennedy
* | Optimize name lookup for QDeclarativeProperty.Michael Brasser2010-12-211-0/+2
|/ | | | | | | | | If the property is constructed by passing in the property name (and we've verified that it is valid), we can cache that name immediately rather than reconstructing it on the first call to name(). Task-number: QTBUG-15331 Reviewed-by: Martin Jones
* QDeclarativeProperty doc improvementsBea Lam2010-12-091-3/+16
|
* Improve consistency in handling of aliases, bindings and value typesAaron Kennedy2010-11-291-24/+185
| | | | Task-number: QTBUG-13719
* Call the correct vme meta object when connecting alias signalsAaron Kennedy2010-10-191-1/+1
| | | | Task-number: QTCREATORBUG-2769
* Connect property alias change signals on useAaron Kennedy2010-10-071-1/+55
| | | | Task-number: QTBUG-14089
* If a type is registered under several names, share the attached property objectAaron Kennedy2010-09-281-2/+2
| | | | Task-number: QTBUG-13799
* Simplify type management codeAaron Kennedy2010-08-271-1/+0
|
* Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938.Jerome Pasion2010-08-091-1/+1
| | | | | Reviewer: David Boddie Task number: QTBUG-11938
* Be consistent in conversion from string (eg. color, int rounding).Warwick Allison2010-05-201-11/+14
| | | | | Task-number: QTBUG-10820 Reviewed-by: Michael Brasser
* Simplify code to make next change clearer.Warwick Allison2010-05-201-14/+9
|
* More class documentation fixes for declarative.Michael Brasser2010-04-161-0/+1
|
* Add Component.onDestruction attached propertyAaron Kennedy2010-04-151-1/+33
| | | | | | | | | 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.
* Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeDataAaron Kennedy2010-04-151-3/+3
|
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-10/+10
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-6/+6
|
* QDeclarative::isWritable optimization.Michael Brasser2010-03-151-5/+3
|
* Improve value type binding behaviorAaron Kennedy2010-03-111-24/+40
| | | | | | | | | | | | | | 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
* doc: Fixed several qdoc errors.Martin Smith2010-03-091-1/+2
|
* doc: Fixed some QML qdoc errors.Martin Smith2010-03-051-27/+55
|
* Compile without QVariant::EasingCurve in Qt 4.6.2.Warwick Allison2010-03-041-3/+3
|
* QDeclarativeProperty::read() returns a QObjectStar when accessing a QObject ↵Aaron Kennedy2010-03-031-2/+9
| | | | | | property QT-2793
* DocAaron Kennedy2010-02-261-5/+45
|
* Polish QDeclarativeProperty APIAaron Kennedy2010-02-261-25/+86
|
* Remove unnecessary QDeclarativeProperty::Type enum valuesAaron Kennedy2010-02-261-20/+41
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlBea Lam2010-02-251-18/+2
| | | | | Conflicts: src/declarative/qml/qdeclarativeproperty.cpp
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-0/+1200
There's nothing meta about our properties.