extraOptionsTab.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "library" : "config/widgets/settings/library.json",
  3. "items":
  4. [
  5. {
  6. "name": "background",
  7. "type": "picture",
  8. "image": "ADVOPTBC",
  9. "position": {"x": 0, "y": 6}
  10. },
  11. {
  12. "name": "textureCampaignOverdraw",
  13. "type": "texture",
  14. "color" : "blue",
  15. "image": "DIBOXBCK",
  16. "rect": {"x": 391, "y": 14, "w": 82, "h": 569}
  17. },
  18. {
  19. "name": "labelTitle",
  20. "type": "label",
  21. "font": "big",
  22. "alignment": "center",
  23. "color": "yellow",
  24. "text": "vcmi.optionsTab.extraOptions.hover",
  25. "position": {"x": 222, "y": 36}
  26. },
  27. {
  28. "name": "labelSubTitle",
  29. "type": "multiLineLabel",
  30. "font": "small",
  31. "alignment": "center",
  32. "color": "white",
  33. "text": "vcmi.optionsTab.extraOptions.help",
  34. "rect": {"x": 60, "y": 48, "w": 320, "h": 0},
  35. "adoptHeight": true
  36. },
  37. {
  38. "name": "ExtraOptionsButtons",
  39. "type" : "verticalLayout",
  40. "customType" : "toggleButton",
  41. "position": {"x": 70, "y": 100},
  42. "items":
  43. [
  44. {
  45. "name": "buttonCheatAllowed",
  46. "image": "lobby/checkbox",
  47. "callback" : "setCheatAllowed",
  48. "help" : "vcmi.optionsTab.cheatAllowed",
  49. "selected" : true
  50. },
  51. {
  52. "name": "buttonUnlimitedReplay",
  53. "image": "lobby/checkbox",
  54. "callback" : "setUnlimitedReplay",
  55. "help" : "vcmi.optionsTab.unlimitedReplay",
  56. "selected" : true
  57. }
  58. ]
  59. },
  60. {
  61. "name": "ExtraOptionsLabels",
  62. "type" : "verticalLayout",
  63. "customType" : "label",
  64. "position": {"x": 110, "y": 103},
  65. "items":
  66. [
  67. {
  68. "name": "labelCheatAllowed",
  69. "font": "small",
  70. "alignment": "left",
  71. "color": "yellow",
  72. "text": "vcmi.optionsTab.cheatAllowed.hover"
  73. },
  74. {
  75. "name": "labelUnlimitedReplay",
  76. "font": "small",
  77. "alignment": "left",
  78. "color": "yellow",
  79. "text": "vcmi.optionsTab.unlimitedReplay.hover"
  80. }
  81. ]
  82. }
  83. ]
  84. }