tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
permissions -rw-r--r--
Catchup to latest Symbian^4

import Qt 4.7

Rectangle {
    width: 400; height: 480
    color: "white"

    Flickable {
        anchors.fill: parent
        contentHeight: 100

        Rectangle {
            id: yellow
            width: 400; height: 120
            color: "yellow"
            MouseArea {
                anchors.fill: parent
                onPressedChanged: pressed ? yellow.color = "lightyellow": yellow.color = "yellow"
            }
        }
        Rectangle {
            id: blue
            width: 400; height: 120
            y: 120
            color: "steelblue"
            MouseArea {
                anchors.fill: parent
                onPressed: blue.color = "lightsteelblue"
                onCanceled: blue.color = "steelblue"
            }
        }
        Rectangle {
            id: red
            y: 240
            width: 400; height: 120
            color: "red"
            MouseArea {
                anchors.fill: parent
                onEntered:  { red.color = "darkred"; tooltip.opacity = 1 }
                onCanceled: { red.color = "red"; tooltip.opacity = 0 }
            }
            Rectangle {
                id: tooltip
                x: 10; y: 20
                width: 100; height: 50
                color: "green"
                opacity: 0
            }
        }

    }

}