Guest User

Untitled

a guest
Jan 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. property string labelText: "#"
  2. property real width: 153.3
  3. property real height: 102.5
  4. property int labelPosX: 60
  5. property int labelPosY: 25
  6. property int labelTextFontWidth: 45
  7. property string imgSrc: "asset:///images/keyboard_button.png"
  8.  
  9. layout: AbsoluteLayout {
  10. }
  11. preferredWidth: width
  12. preferredHeight: height
  13. objectName: "contTecla"
  14. id: contTecla
  15. ImageView {
  16. objectName: "imgTecla"
  17. id: imgTecla1
  18. imageSource: imgSrc
  19. preferredWidth: width
  20. preferredHeight: height
  21. onTouch: {
  22. textFieldKey.text = textFieldKey.text + labelTecla.text;
  23. }
  24. }
  25. Label {
  26. objectName: "labelTecla"
  27. id: labelTecla
  28. text: labelText
  29. textStyle {
  30. color: Color.DarkYellow
  31. size: labelTextFontWidth
  32. }
  33. layoutProperties: AbsoluteLayoutProperties {
  34. positionX: labelPosX
  35. positionY: labelPosY
  36. }
  37. } }
Add Comment
Please, Sign In to add comment