Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
17 lines
299 B
QML
17 lines
299 B
QML
import QtQuick 1.0
|
|
|
|
Item {
|
|
id: root
|
|
property int clicked: 0
|
|
property int pressed: 0
|
|
property int released: 0
|
|
|
|
MouseArea {
|
|
width: 200; height: 200
|
|
onPressed: { root.pressed++ }
|
|
onClicked: { root.clicked++ }
|
|
onReleased: { root.released++ }
|
|
}
|
|
}
|
|
|