import Qt 4.6 Item { id: container signal clicked property string text BorderImage { id: buttonImage source: "images/toolbutton.sci" width: container.width; height: container.height } BorderImage { id: pressed opacity: 0 source: "images/toolbutton.sci" width: container.width; height: container.height } MouseRegion { id: mouseRegion anchors.fill: buttonImage onClicked: { container.clicked(); } } Text { color: "white" anchors.centerIn: buttonImage; font.bold: true text: container.text; style: Text.Raised; styleColor: "black" } states: [ State { name: "Pressed" when: mouseRegion.pressed == true PropertyChanges { target: pressed; opacity: 1 } } ] }