1
1

gui.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. format_version = "4.0"
  2. front = jbox.panel{
  3. backdrop = jbox.image{path="Reason_GUI_Panel_front"},
  4. widgets = {
  5. jbox.zero_snap_knob{
  6. transform = {393,44},
  7. animation = jbox.image_sequence{path = "Reason_GUI_big_knob-reframed", frames = 72},
  8. value = "/custom_properties/stringize_amount",
  9. show_remote_box = true,
  10. show_automation_rect = true,
  11. },
  12. jbox.toggle_button{
  13. transform = {30,4},
  14. background = jbox.image_sequence{path = "Reason_GUI_ONOFF maker x5 002", frames = 4},
  15. value = "/custom_properties/OnOff",
  16. show_remote_box = true,
  17. show_automation_rect = true,
  18. },
  19. jbox.patch_name{
  20. transform = {127,10},
  21. center = false,
  22. fg_color = { 96, 96, 96 },
  23. height = 16,
  24. loader_alt_color = { 0, 0, 0 },
  25. text_style = "Arial medium font",
  26. width = 114,
  27. },
  28. jbox.patch_browse_group{
  29. transform = {62,7},
  30. fx_patch = false,
  31. },
  32. }
  33. }
  34. folded_front = jbox.panel{
  35. backdrop = jbox.image{path="Reason_GUI_front_Fold"},
  36. widgets = {
  37. }
  38. }
  39. back = jbox.panel{
  40. backdrop = jbox.image{path="Reason_GUI_Panel_back"},
  41. widgets = {
  42. jbox.placeholder{
  43. transform = {420,40},
  44. },
  45. jbox.cv_input_socket{
  46. transform = {100,20},
  47. socket = "/cv_inputs/numerator_note_cv",
  48. },
  49. jbox.cv_input_socket{
  50. transform = {100,80},
  51. socket = "/cv_inputs/denominator_note_cv",
  52. },
  53. }
  54. }
  55. folded_back = jbox.panel{
  56. backdrop = jbox.image{path="Reason_GUI_back_Fold"},
  57. cable_origin = {377,15},
  58. widgets = {
  59. }
  60. }