aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeaccessibility/data/pushbutton.qml
blob: df19231703bd03e11ace0fb6bbb04c34032288f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0

Rectangle {
    Accessible.role : Accessible.Button
    property string text : "test"

    Text {
        anchors.fill : parent
        text : parent.text
    }

    MouseArea {
        anchors.fill : parent
    }
}