summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qdeclarativepropertychanges.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix translation context when qsTr is used in PropertyChanges.Michael Brasser2010-04-291-1/+10
| | | | | | This should also lead to better error meesages coming from PropertyChanges. Task-number: QTBUG-10300
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-04-271-2/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (30 commits) Ensure text document is created before we access it. Plugins documentation. Fix update issue when an item has an effect and child. Fix QDeclarativeTextInput and QGraphicsView in regards of input methods hints. Disallow "Qt" as namespace import Don't "adjust" the z value of a delegate that has been cached. Correctly inherit extension properties Autotests More QDeclarativeNetworkAccessManagerFactory doc clarification. Fix QDeclarativeNetworkAccessManagerFactory docs. Don't crash on invalid model remove signal. Ensure scheduled layout can occur before testing. Fix remaining 4.6 type registrations (to 4.7). doc anchor margins vs. anchor (line) state/animation. These examples should not be included in this test Unify naming of settings / UI to be "Qt Qml Runtime" Improved error messages for type resolving, new debug option Link to example files from tutorial pages Add tutorial for writing QML extensions no export in plugin ...
| * doc anchor margins vs. anchor (line) state/animation.Warwick Allison2010-04-261-2/+3
| |
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Peter Yard2010-04-271-3/+3
|\ \ | |/
| * Rename QDeclarativeExpression::value() to evaluate().Michael Brasser2010-04-221-1/+1
| | | | | | | | | | QDeclarativeExpression can be used to evaluate any sort of expression, not just those returning a value.
| * Fix AnchorChanges to work with parent.right.Michael Brasser2010-04-201-2/+2
| | | | | | | | | | | | | | "parent" needs to be evaluated with the AnchorChanges target as the scope object. Task-number: QTBUG-5338
* | Docs Changes to start page. Minor change to Elements doc. See also added to ↵Peter Yard2010-04-271-1/+1
|/ | | | some elements docs.
* Fix url resolution in PropertyChanges.Michael Brasser2010-04-091-9/+4
| | | | | | | | Make sure bindings in PropertyChanges resolve urls correctly. Also refactor the code so that PropertyChanges will always use the standard url resolution support provided by QDeclarativeProperty. Task-number: QTBUG-9571
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Replace Text::wrap property with Text::wrapMode enumeration.Martin Jones2010-04-081-1/+1
| | | | wrap remains for a little while, and will produce a warning.
* 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.
* Produce an error when trying to create objects in a PropertyChanges.Michael Brasser2010-03-211-0/+2
| | | | | | | State-specific object lifecycle management will be addressed in a future release. Task-number: QTBUG-8318
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-1/+2
|
* Rename QDeclarativeMetaProperty -> QDeclarativePropertyAaron Kennedy2010-02-251-15/+15
| | | | There's nothing meta about our properties.
* Document and test resetting properties in a state change.Michael Brasser2010-02-251-1/+28
| | | | Task-number: QT-1817
* Remove QDeclarativeMetaProperty::createProperty() methodAaron Kennedy2010-02-251-1/+1
| | | | | The behavior of createProperty() (to resolve dot properties) is now the behavior of the constructors.
* Move private QDeclarativeMetaProperty functions into the private classAaron Kennedy2010-02-251-4/+7
| | | | | | We don't want to allow manipulation of bindings and signal properties through the public API. Equivalents of the public functions now exist in QDeclarativeMetaPropertyPrivate for internal use.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+456
QDeclarativeXXX.