file.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <html>
  2. <head>
  3. <title>The File menu</title>
  4. </head>
  5. <body bgcolor="FFFFFF">
  6. <h1>The File menu</h1>
  7. <dl>
  8. <dt><strong>New</strong></dt>
  9. <dd><p>Opens a new project in a new window. The project will
  10. initially be a copy of <a href="../prefs/template.html">the
  11. currently selected template</a>.</p></dd>
  12. <dt><strong>Open...</strong></dt>
  13. <dd><p>Opens an existing file as a project in a new window.</p></dd>
  14. <dt><strong>Open Recent</strong></dt>
  15. <dd><p>Opens a recently opened project in a new window
  16. without prompting the user to navigate through a file selection dialog.</p></dd>
  17. <dt><strong>Close</strong></dt>
  18. <dd><p>Closes all windows associated with the currently viewed
  19. project.</p></dd>
  20. <dt><strong>Save</strong></dt>
  21. <dd><p>Saves the currently viewed project, overwriting what was
  22. previously in the file.</p></dd>
  23. <dt><strong>Save As...</strong></dt>
  24. <dd><p>Saves the currently viewed project, prompting the user to
  25. save into a different file than before.</p></dd>
  26. <dt><strong>Export Image...</strong></dt>
  27. <dd><p>Creates image file(s) corresponding to circuits.
  28. The configuration dialog box is described below.</p></dd>
  29. <dt><strong>Print...</strong></dt>
  30. <dd><p>Sends circuit(s) to a printer. The configuration dialog box
  31. is described below.</p></dd>
  32. <dt><strong>Preferences...</strong></dt>
  33. <dd><p>Displays the <a href="../prefs/index.html">application
  34. preferences</a> window. (On Mac OS systems, this will appear
  35. in the Logisim menu.)</p></dd>
  36. <dt><strong>Exit</strong></dt>
  37. <dd><p>Closes all currently open projects and terminates Logisim.
  38. (On Mac OS systems, this will appear
  39. as Quit in the Logisim menu.)</p></dd>
  40. </dl>
  41. <h2>Configuring Export</h2>
  42. <p>When you select Export Image..., Logisim displays a dialog box
  43. with four options.</P>
  44. <ul>
  45. <li><b>Circuits:</b> A list where you can select one or more circuits
  46. that should be exported into image files. (Empty circuits are not
  47. displayed as options.)</li>
  48. <li><b>Image Format:</b> You can create PNG, GIF, and JPEG files. I would
  49. recommend PNG files: The GIF format is quite dated, and the JPEG format will
  50. introduce artifacts into the image, as the JPEG format is
  51. really meant for photographic images.</li>
  52. <li><b>Scale Factor:</b> You can scale the images as they are dumped
  53. into image files using this slider.</li>
  54. <li><b>Printer View:</b> Whether to use
  55. "<a href="../prefs/layout.html">printer view</a>" in exporting
  56. the circuits.</li>
  57. </ul>
  58. <p>After clicking OK, Logisim will display a file selection dialog
  59. box. If you have selected one circuit, select the file into which
  60. the image should be placed. If you have selected multiple circuits,
  61. select a directory where the files should be placed; Logisim will
  62. name the images based on the circuits' names (<tt>main.png</tt>,
  63. for example).</p>
  64. <h2>Configuring Print</h2>
  65. <p>When you choose Print..., Logisim displays a dialog box for
  66. configuring what is printed.</p>
  67. <ul>
  68. <li><b>Circuits:</b> A list where you can select one or more circuits
  69. to be printed. (Empty circuits are not
  70. displayed as options.) Logisim will print one circuit per page. If the circuit is too
  71. large for the page, the image will be scaled down to fit.</li>
  72. <li><b>Header:</b> Text that should appear centered at the top of
  73. each page. The following substitutions will be made into the text.
  74. <center><table>
  75. <tr><td><tt>%n</tt></td><td>Name of circuit on page</td></tr>
  76. <tr><td><tt>%p</tt></td><td>Page number</td></tr>
  77. <tr><td><tt>%P</tt></td><td>Total page count</td></tr>
  78. <tr><td><tt>%%</tt></td><td>A single percent sign ('%')</td></tr>
  79. </table></center></li>
  80. <li><b>Rotate To Fit:</b> If checked, then Logisim will rotate
  81. each circuit by 90 degrees when the circuit is too large to
  82. fit onto the page and it does not need to be scaled as
  83. small when rotated 90 degrees.</li>
  84. <li><b>Printer View:</b> Whether to use
  85. "<a href="../prefs/layout.html">printer view</a>" in printing
  86. the circuits.</li>
  87. </ul>
  88. <p>After clicking OK, Logisim will display the standard page setup
  89. dialog box before printing the circuits.</p>
  90. <p><strong>Next:</strong> <a href="edit.html">The Edit menu</a>.</p>
  91. </body>
  92. </html>