Advertisement
karenaaa

Untitled

Aug 25th, 2019
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. MouseArea{
  2. Item {
  3. width: parent.width
  4. height: 70
  5. RowLayout {
  6. anchors.fill: parent
  7. spacing: 10
  8.  
  9. Rectangle {
  10. width: 5
  11. height: 70
  12. }
  13.  
  14. Rectangle {
  15. width: 40
  16. height: 40
  17. radius: 50
  18. }
  19.  
  20. ColumnLayout {
  21. Text {
  22. text: '<b>Name:</b> ' + name
  23. visible: !renameSpace.visible
  24. }
  25. TextField{
  26. id: renameSpace
  27. height: 25
  28. visible: false
  29. onAccepted: { khipuModel.rename(renameSpace.text); renameSpace.visible = false }
  30. text: "new space name"
  31. focus: true
  32. }
  33. Text {
  34. text: '<b>Type:</b> ' + type
  35. }
  36. }
  37. }
  38. }
  39. onClicked: {
  40. spacesList.currentIndex = index
  41. }
  42. onDoubleClicked: {
  43. renameSpace.visible = true
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement