options.rml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <rml>
  2. <head>
  3. <title>Options</title>
  4. <link type="text/template" href="../../assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 350dp;
  9. height: 330dp;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. decorator: image( icon-game );
  15. display: none;
  16. }
  17. form div
  18. {
  19. width: 200dp;
  20. margin: auto;
  21. }
  22. </style>
  23. </head>
  24. <body template="window" onload="restore" onkeydown="onescape goto main_menu">
  25. <form onsubmit="store; goto main_menu" onchange="enable_accept">
  26. <div>
  27. <p>
  28. Graphics<br />
  29. <label><input id="good" type="radio" name="graphics" value="good" /> Good</label><br />
  30. <label><input id="ok" type="radio" name="graphics" value="ok" checked="true" /> OK</label><br />
  31. <label><input id="bad" type="radio" name="graphics" value="bad" onchange="bad_graphics" /> Bad</label><br />
  32. </p>
  33. <p id="bad_warning" style="display: none;">Are you sure about this? Bad graphics are just plain <em>bad.</em></p>
  34. <p>
  35. Audio<br />
  36. <label><input id="reverb" type="checkbox" name="reverb" value="true" checked="true" /> Reverb</label><br />
  37. <label><input id="3d" type="checkbox" name="3d" value="true" /> 3D Spatialisation</label>
  38. </p>
  39. </div>
  40. <input type="submit" id="accept" value="accept" disabled>Accept</input>
  41. <input type="submit" value="cancel">Cancel</input>
  42. </form>
  43. </body>
  44. </rml>