background.form 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. form backgroundControls
  2. {
  3. layout = LAYOUT_VERTICAL
  4. alignment = ALIGN_VCENTER_LEFT
  5. size = 270, 430
  6. label title
  7. {
  8. text = Background Music
  9. fontSize = 32
  10. }
  11. button playButton
  12. {
  13. text = Play
  14. size = 250, 50
  15. }
  16. button pauseButton
  17. {
  18. text = Pause
  19. size = 250, 50
  20. }
  21. button resumeButton
  22. {
  23. text = Resume
  24. size = 250, 50
  25. }
  26. button rewindButton
  27. {
  28. text = Rewind
  29. size = 250, 50
  30. }
  31. button stopButton
  32. {
  33. text = Stop
  34. size = 250, 50
  35. }
  36. checkbox loopCheckBox
  37. {
  38. text = Loop Audio
  39. }
  40. slider gainSlider
  41. {
  42. width = 250
  43. orientation = HORIZONTAL
  44. min = 0
  45. max = 1
  46. value = 0.5
  47. text = Gain
  48. valueTextVisible = false
  49. }
  50. slider pitchSlider
  51. {
  52. width = 250
  53. orientation = HORIZONTAL
  54. min = 0.1
  55. max = 5
  56. value = 1
  57. text = Pitch
  58. valueTextVisible = false
  59. }
  60. }