TwitterButton.qml 367 B

123456789101112131415161718192021222324
  1. import QtQuick 1.1
  2. Rectangle {
  3. id: button
  4. property alias text: txt.text
  5. signal clicked()
  6. width: 90
  7. height: 64
  8. color: ma.pressed ? "blue" : "red"
  9. Text {
  10. id: txt
  11. anchors.centerIn: parent
  12. }
  13. MouseArea {
  14. id: ma
  15. anchors.fill: parent
  16. onClicked: button.clicked()
  17. }
  18. }