diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-03-03 08:36:44 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-03-03 08:36:44 (GMT) |
commit | 5c1496d8839010653a9273586c10d99e0eeb66b2 (patch) | |
tree | a02acab1aaaf23313bdc5ffe4241b4307672151e /doc/src/declarative | |
parent | 639ae76c6d1a46db546beb00c1d9022867ef7e2e (diff) | |
download | Qt-5c1496d8839010653a9273586c10d99e0eeb66b2.zip Qt-5c1496d8839010653a9273586c10d99e0eeb66b2.tar.gz Qt-5c1496d8839010653a9273586c10d99e0eeb66b2.tar.bz2 |
More renaming: MouseRegion -> MouseArea
Diffstat (limited to 'doc/src/declarative')
-rw-r--r-- | doc/src/declarative/tutorial.qdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/declarative/tutorial.qdoc b/doc/src/declarative/tutorial.qdoc index 98efe12..310b776 100644 --- a/doc/src/declarative/tutorial.qdoc +++ b/doc/src/declarative/tutorial.qdoc @@ -173,10 +173,10 @@ In this case the rectangle will have the same size as its parent (see \l{anchor- \snippet examples/declarative/tutorials/helloworld/Cell.qml 3 -In order to change the color of the text when clicking on a cell, we create a \l MouseRegion element with +In order to change the color of the text when clicking on a cell, we create a \l MouseArea element with the same size as its parent. -A \l MouseRegion defines a signal called \e clicked. +A \l MouseArea defines a signal called \e clicked. When this signal is triggered we want to emit our own \e clicked signal with the color as parameter. \section2 The main QML file @@ -214,7 +214,7 @@ Here is the QML code: \snippet examples/declarative/tutorials/helloworld/tutorial3.qml 2 First, we create a new \e down state for our text element. -This state will be activated when the \l MouseRegion is pressed, and deactivated when it is released. +This state will be activated when the \l MouseArea is pressed, and deactivated when it is released. The \e down state includes a set of property changes from our implicit \e {default state} (the items as they were initially defined in the QML). |