Guest User

Untitled

a guest
Jul 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. import Qt 4.7
  2.  
  3. BorderImage {
  4. id: buttonbase
  5.  
  6. signal clicked
  7.  
  8. property alias text : label.text
  9. property bool pressed: hitbox.pressed && hitbox.containsMouse
  10.  
  11. source: pressed ? "button_down.png" : "button_up.png"
  12.  
  13. border.left: 50;
  14. border.right: 50;
  15.  
  16. MouseArea {
  17. id: hitbox
  18. anchors.fill: parent
  19. onClicked: parent.clicked()
  20. }
  21.  
  22. Text {
  23. id: label
  24. anchors.centerIn: parent
  25. anchors.verticalCenterOffset: pressed ? -2 : -3
  26. font.family: "Lato Black"
  27. font.pixelSize: 26
  28.  
  29. color: "#ffffff"
  30. styleColor: "#4f000000"
  31. style: Text.Sunken
  32. }
  33. }
Add Comment
Please, Sign In to add comment