~zsombi/ubuntu-ui-toolkit/combobutton

« back to all changes in this revision

Viewing changes to tests/unit_x11/tst_inversemousearea/InverseMouseAreaOnTop.qml

  • Committer: Zsombor Egri
  • Date: 2014-03-25 07:23:36 UTC
  • mfrom: (938.13.15 ubuntu-ui-toolkit)
  • Revision ID: zsombor.egri@canonical.com-20140325072336-ldp9ag50j5ermh7j
trunk merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
            objectName: "MA1"
39
39
            anchors.fill: parent
40
40
            z: 1
41
 
            onPressed: print("MA1")
42
 
            onDoubleClicked: print("DMA1")
43
41
        }
44
42
    }
45
43
 
63
61
        MouseArea {
64
62
            objectName: "MA2"
65
63
            anchors.fill: parent
66
 
            onPressed: print("MA2")
67
 
            onDoubleClicked: print("DMA2")
68
64
        }
69
65
 
70
66
        InverseMouseArea {
71
67
            objectName: "IMA"
72
68
            anchors.fill: button
73
 
            onPressed: print("IMA")
74
 
            onDoubleClicked: print("DIMA")
75
69
        }
76
70
    }
77
71
}