options.rml 1.2 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: 350px;
  9. height: 330px;
  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: 200px;
  20. margin: auto;
  21. }
  22. </style>
  23. </head>
  24. <body template="window" onload="restore">
  25. <form onsubmit="store; goto main_menu" onchange="enable_accept">
  26. <div>
  27. <p>
  28. Graphics:<br />
  29. <input id="good" type="radio" name="graphics" value="good" /> Good<br />
  30. <input id="ok" type="radio" name="graphics" value="ok" checked="true" /> OK<br />
  31. <input id="bad" type="radio" name="graphics" value="bad" onchange="bad_graphics" /> Bad<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. <input id="reverb" type="checkbox" name="reverb" value="true" checked="true" /> Reverb<br />
  37. <input id="3d" type="checkbox" name="3d" value="true" /> 3D Spatialisation
  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>