On Tue, Dec 7, 2010 at 4:31 AM, Halton Huo <halton....@intel.com> wrote:
> So my questions how to ignore the received signals to let other items to
> continue deal with those signals?

You can set enabled property to false or ignore the event on mouse press.

MouseArea {
    anchors.fill: parent
    onClicked: console.log("background clicked");
}

MouseArea {
    anchors.fill: parent
    enabled: false
    //onPressed: mouse.accepted = false;
    onClicked: console.log("foreground clicked");
}

Br,
Adriano
_______________________________________________
Qt-qml mailing list
Qt-qml@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-qml

Reply via email to