summaryrefslogtreecommitdiffstats
path: root/examples/declarative/connections/content/Button.qml
blob: 0e33c783f953d5ddd42cac44a435de8f0524bb20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Qt 4.6

Item {
    id: button
    width: 48; height: 48

    property alias image: icon.source
    signal clicked

    Image { id: icon }
    MouseArea { anchors.fill: icon; onClicked: button.clicked() }
}