import QtQuick 1.0
import org.hildon.components 1.0
Window {
id: window
title: qsTr("Buttons Example")
visible: true
id: flickable
anchors.fill: parent
horizontalScrollBarPolicy: Qt.ScrollBarAlwaysOff
Column {
id: column
anchors {
top: parent.top
horizontalCenter: parent.horizontalCenter
}
width: 300
width: parent.width
text: qsTr("Push Button")
onClicked: console.log(qsTr("Button clicked"))
}
width: parent.width
text: qsTr("Accept Button")
}
width: parent.width
text: qsTr("Dialog Button")
}
width: parent.width
text: qsTr("Reject Button")
}
width: parent.width
text: qsTr("Thumb Button")
}
}
}
}