summaryrefslogtreecommitdiffstats
path: root/src/declarative/graphicsitems/qdeclarativeitem.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove QDeclarativeItem::childrenChanged() signal overloadMartin Jones2010-07-221-1/+0
| | | | | | | Broke signal handlers in QML Task-number: QTBUG-12335 Reviewed-by: Aaron Kennedy
* QML focus API updates.Michael Brasser2010-07-211-4/+4
| | | | | | | | | The wantsFocus property has been renamed to activeFocus, to better reflect its value. Reading and writing the focus property is also now consistent -- this property represents focus within a scope. Other small changes were made to keep things consistent with the new naming. Reviewed-by: Aaron Kennedy
* Make Item::transformOriginPoint read-onlyMartin Jones2010-07-201-0/+1
| | | | | | | | | Using this property on Item will break transformOrigin property. We have never documented it. It should not have been used. Now it is enforced as best we can. Task-number: QTBUG-12265 Reviewed-by: Aaron Kennedy
* Add qmlmethod Item::childAt() to delarative itemmae2010-06-081-0/+1
| | | | | | The method allows for more flexbile mouse and touch handling. It offers a fast way to identify a child item for a given pixel position.
* Fix QT_NO_TEXTSTREAM compilation errors.Tasuku Suzuki2010-05-311-0/+2
| | | | | Merge-request: 647 Reviewed-by: Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com>
* Add a "priority" property to Keys and KeyNavigationMartin Jones2010-05-141-0/+4
| | | | | | Allows intercepting keys before or after normal item key processing. Task-number: QTBUG-10467
* Mark some properties in QDeclarativeItem as private properties.Alexis Menard2010-04-291-31/+13
| | | | | | | QDeclarativeItem will be public, all properties that are relaying on private types must be private too. Reviewed-by:akennedy
* Add forceFocus method to QDeclarativeItem.Yann Bodson2010-04-211-0/+1
| | | | Reviewed-by: Aaron Kennedy
* Struct -> class because class is better.Alexis Menard2010-04-131-1/+1
| | | | | | Well i have no idea on what to write on that commit message. Reviewed-by:akennedy
* Move effect property where it should be.Alexis Menard2010-04-131-1/+0
| | | | Reviewed-by:leo
* Fix parenting after 6f88388db4e8e202780d789e66664ff824691948.Michael Brasser2010-03-301-1/+0
|
* Remove the children property from QDeclarativeItem.Alexis Menard2010-03-251-6/+2
| | | | | | | | | This commit remove the children property from QDeclarativeItem because it's now in QGraphicsObject. This commit also get rid of width and height properties to use the one in QGraphicsObject. Task-number:QT-2757 Reviewed-by:akennedy
* Fix warnings.Martin Jones2010-03-171-1/+1
|
* Make QDeclarativeItem NOTIFY signals canonicalJoona Petrell2010-03-091-12/+11
| | | | | Task-number: QTBUG-7193 Reviewed-by: akennedy
* Fix warnings and change geometry-related functions to use reals.Michael Brasser2010-03-091-2/+2
|
* Minor cleanup.Michael Brasser2010-03-091-2/+0
|
* Minor anchors.fill optimization.Michael Brasser2010-03-091-0/+2
| | | | Task-number: QT-716
* Add mapFromItem() and mapToItem() in QDeclarativeItem.Bea Lam2010-03-041-0/+3
| | | | Task-number: QT-2385
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+243
QDeclarativeXXX.