options.rml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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: 350px;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. icon-image-s: 230px 281px;
  15. icon-image-t: 152px 191px;
  16. display: none;
  17. }
  18. form div
  19. {
  20. width: 200px;
  21. margin: auto;
  22. }
  23. </style>
  24. </head>
  25. <body template="window" onload="restore">
  26. <form onsubmit="store; goto main_menu">
  27. <div>
  28. <p>
  29. Graphics:<br />
  30. <input id="good" type="radio" name="graphics" value="good" /> Good<br />
  31. <input id="ok" type="radio" name="graphics" value="ok" checked="true" /> OK<br />
  32. <input id="bad" type="radio" name="graphics" value="bad" onchange="bad_graphics" /> Bad<br />
  33. </p>
  34. <p id="bad_warning" style="display: none;">Are you sure about this? Bad graphics are just plain <em>bad.</em></p>
  35. <p>
  36. Audio:<br />
  37. <input id="reverb" type="checkbox" name="reverb" value="true" checked="true" /> Reverb<br />
  38. <input id="3d" type="checkbox" name="3d" value="true" /> 3D Spatialisation
  39. </p>
  40. </div>
  41. <input type="submit" value="accept">Accept</input>
  42. <input type="submit" value="cancel">Cancel</input>
  43. </form>
  44. </body>
  45. </rml>