Advertisement
dalvorsn

Untitled

Feb 27th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. ButtonSample < Button
  2. width: 70
  3. height: 20
  4. anchors.bottom: parent.bottom
  5. margin-top: 10
  6. margin-bottom: 5
  7.  
  8. requestWindow < MainWindow
  9. id: requestWindow
  10. !text: tr('Duel')
  11. size: 195 140
  12. visible: true
  13. @onEscape: terminate()
  14.  
  15. ButtonSample
  16. id: buttonCancel
  17. !text: tr('Close')
  18. anchors.right: parent.right
  19. margin-left: 10
  20. @onClick: toggle()
  21.  
  22. ButtonSample
  23. id: buttonOk
  24. !text: tr('Ok')
  25. anchors.left: parent.left
  26. margin-right: 15
  27. @onClick: newDuel()
  28.  
  29. Label
  30. id: labelPokeCountChoose
  31. anchors.top: parent.top
  32. anchors.left: parent.left
  33. width: 70
  34. font: verdana-11px-monochrome
  35. !text: tr('Pokemons')
  36. margin-top: 10
  37. margin-left: 10
  38.  
  39. ComboBox
  40. id: pokeComboBox
  41. width: 70
  42. anchors.left: prev.left
  43. anchors.top: prev.bottom
  44. margin-left: -5
  45.  
  46. Label
  47. id: labelPlayerCountChoose
  48. anchors.left: prev.right
  49. anchors.top: parent.top
  50. width: 70
  51. font: verdana-11px-monochrome
  52. !text: tr('Players')
  53. margin-top: 10
  54. margin-left: 15
  55.  
  56. ComboBox
  57. id: playerComboBox
  58. width: 70
  59. anchors.left: prev.left
  60. anchors.top: prev.bottom
  61. margin-right: -5
  62.  
  63. waitingWindow < MainWindow
  64. id: waitingWindow
  65. !text: tr('Duel')
  66. size: 300 400
  67. visible: false
  68. @onEscape: terminate()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement