home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / PFONTM-A.DMS / in.adf / Chapter09 < prev    next >
Encoding:
Text File  |  1995-11-12  |  26.9 KB  |  497 lines

  1.  
  2.  "Personal Fonts Maker -  9. The Printer Driver Modifier"
  3.  
  4.  
  5.  9. The Printer Driver Modifier
  6.   9.1  How Printer Drivers Work
  7.   9.2  Problems with Standard Drivers
  8.   9.3  The PDM: General Description
  9.   9.4  The PDM: The Main Window
  10.        9.4.1  The "Number" Gadgets
  11.        9.4.2  The Editing Gadget
  12.        9.4.3  The "Command" Field
  13.        9.4.4  The "Character" Field
  14.        9.4.5  The "Maximum" Field
  15.        9.4.6  The "Function" Field
  16.  
  17. "Personal Fonts Maker -  9. The Printer Driver Modifier"
  18.  
  19.  
  20. 9.         The Printer Driver Modifier
  21.  
  22.    The Personal Fonts Maker package contains a program called Printer
  23. Driver Modifier. The program is stored in the "PFM_Tools" drawer of the
  24. disk containing the Personal Fonts Maker program. This chapter contains
  25. some general information on the environment in which the Printer Driver
  26. Modifier works. Chapters 10 and 11 describe the program's functions in
  27. detail, while appendix H explains the messages which may be displayed by
  28. the program, and appendix J lists all the shortcuts to the commands.
  29.  
  30.  
  31. 9.1        How Printer Drivers Work
  32.  
  33.    Printer drivers were developed to bring some unity to the babel of
  34. different printer standards, control codes, character sets and command
  35. sequences. If all printers could interpret the same data sent by the
  36. computer, there would be no need for printer drivers. Unfortunately,
  37. printers developed at different times, by different companies, and/or for
  38. different purposes cannot always be controlled in the same way.
  39.  
  40.    To work properly with different printers, a program would need a
  41. special module for each printer. This means that each program would have
  42. to contain the information about the character sets, the commands and
  43. other codes of every printer that might be used. If a new printer
  44. "standard" is developed after the program is finished, a new version of
  45. the program has to be written. Printer drivers remove this burden from
  46. software working with printers.
  47.  
  48.    On a system which uses printer drivers, like the Amiga, programs do not
  49. need to know about which printer is connected. The program's output goes
  50. to the printer driver, which in turn translates the data into the format
  51. required by the printer. The Amiga printer device governs all accesses to
  52. the drivers and controls the data flow. The user informs the system about
  53. the printer which is to be used through the Amiga Preferences. When the
  54. printer device receives data from a program, it re-routes it to the
  55. appropriate driver.
  56.  
  57.    Programs wishing to communicate with the printer device only need to be
  58. able to handle one, single, standard set of characters and control codes.
  59. The printer device acts as a filter which, depending on the printer
  60. selected by the user, either ignores the command sequences or perhaps
  61. translates them into entirely different sequences that this printer can
  62. actually understand and obey.
  63.  
  64.    The character set recognized by the Amiga printer device is the Amiga
  65. set, as in appendix D. Most control sequences are based either on the ANSI
  66. x3.64 rules defined by the International Standards Organization (ISO), or
  67. on control sequences defined by Digital Equipment Corporation. The Amiga
  68. documentation describes every control code in detail. This is all a
  69. program using printer drivers to print text needs to know. All
  70. printer-specific codes are handled by the printer drivers.
  71.  
  72.    When a program needs to print a text, it sends a flow of characters,
  73. with interspersed control codes wherever necessary. For example, if a word
  74. in the middle of a sentence needs to be underlined, the following sequence
  75. might be used.
  76.  
  77.    This is a sentence with an ESC \[ \4 \m underlined ESC \[ \2 \4 \m
  78. word.
  79.  
  80.    The standard FFDL syntax for constants was used in this example.
  81. Section 2.7 ("Programming the Output Format: the Cloanto FFDL") describes
  82. this format, which is used by the Printer Driver Modifier and in the
  83. examples regarding the program.
  84.  
  85.    The "ESC \[ \4 \m" sequence in the above example is interpreted by the
  86. printer driver as "Underline On", while "ESC \[ \2 \4 \m" means "Underline
  87. Off". These commands could mean nothing to the printer being used,
  88. therefore they have to be translated by the driver. For Epson, IBM
  89. Proprinter, NEC Pinwriter and compatible printers, for example, the two
  90. sequences would be translated as "ESC \- (1)" and "ESC \- (0)"
  91. respectively. If the printer selected through the Amiga Preferences cannot
  92. underline text (or if the driver cannot), the driver does not translate
  93. this command (and no command is sent to the printer).
  94.  
  95.    Single characters can also be translated by the driver. Most printers
  96. do not use the Amiga character set, but - for example - the IBM PC set
  97. (appendix C) or a variant thereof. The letters and punctuation signs
  98. normally used to write English text are shared by many different character
  99. sets, since they are defined by the original 7-bit ASCII character set
  100. standard (appendix E), incorporated by most 8-bit character sets. But for
  101. many non-English national characters, and signs like '½' (one half),
  102. things are not as straightforward. These codes need to be converted by the
  103. driver to the equivalent codes in the printer's character set. Section 2.8
  104. has more on character sets.
  105.  
  106.    There are some exceptions, of course. Some word processors do not use
  107. the Amiga drivers, but their own drivers and conversion tables. Other
  108. programs print text in graphics mode, which is normally slower and of
  109. lower quality compared to the letter quality modes of modern printers. The
  110. Personal Fonts Maker can download fonts to be used in text mode. Programs
  111. adopting the graphics mode can usually load these same fonts saved by the
  112. Personal Fonts Maker in the Amiga font format.
  113.  
  114.  
  115. 9.2        Problems with Standard Drivers
  116.  
  117.    Many users experimenting with printer control codes may have noticed
  118. that the Basic programming examples in the printer's handbooks often do
  119. not work as expected on the Amiga. This is because the "LPRINT" Basic
  120. command does not send the control sequences directly to the printer, but
  121. to the Amiga printer device, which expects a code in the Amiga format
  122. rather than a code in the printer's format. It is out of the scope of this
  123. manual to explain how to use the Amiga's Basic programming language, but
  124. since such experiments may be useful for a better understanding of the
  125. printer and the programs described in this guide, some possible solutions
  126. are explained here.
  127.  
  128.    There are at least three methods to send a control sequence from an
  129. Amiga Basic program. The easiest way is to consult the Amiga documentation
  130. and adopt the Amiga's control codes instead of the codes used by the
  131. printer. The second method is to bypass the driver, sending the data
  132. directly to the printer. To do this, the data has to be written to a file,
  133. named "PAR:" if the printer is connected to the parallel port, or "SER:"
  134. if the serial port is used instead. The third possibility is to use a
  135. special Amiga control sequence (to be sent to the driver), which means
  136. "Send the following n characters directly to the printer, without
  137. conversions", where 'n' indicates the number of characters of which the
  138. control sequence in the printer's format consists. The sequence is "ESC \[
  139. \n \" \r", followed by the data in the printer's format, where 'n' is
  140. written as a decimal number (one ASCII digit in this example).
  141.  
  142.    For example:
  143.  
  144.       LPRINT CHR$(27);"[3";CHR$(34);"r";CHR$(27);"-";CHR$(1)
  145.  
  146. sends the control sequence which activates the underlined print mode on an
  147. Epson, IBM Proprinter, NEC Pinwriter or compatible printer. The equivalent
  148. FFDL sequence is:
  149.  
  150.       ESC \[ \3 \" \r ESC \- (1)
  151.  
  152. where it should be noted that "\3" means "The (Amiga) code associated with
  153. the character '3'", which is 51, while the value "(1)" already indicates a
  154. code (one).
  155.  
  156.    Unfortunately, printer drivers cannot be changed as easily as a line in
  157. a Basic program. Sometimes a printer driver for a particular printer is
  158. not available, or the existing drivers do not work correctly. The Printer
  159. Driver Modifier was designed to help in similar situations. This section
  160. continues with the description of some problems which can be solved with
  161. the Printer Driver Modifier.
  162.  
  163.    A common problem is that no printer driver exactly matches all commands
  164. and/or character codes of a particular printer connected to the computer.
  165. The documentation enclosed with the printer usually contains a list of
  166. printer drivers designed for other printers, in order of preference. Even
  167. when the closest matching driver is used, it is likely that some control
  168. sequences will not be translated as required by the printer.
  169.  
  170.    Many of the drivers which come with the Amiga operating system were
  171. designed to work with a wide range of printers and data transmission
  172. modes. This has in some cases limited the possibility of exploiting
  173. features unique to a more restricted number of printers. Unfortunately,
  174. there is not one perfect printer driver for each different printer model.
  175. The Printer Driver Modifier can be used to custom-tailor an existing
  176. driver to the control sequences and character codes of the printer being
  177. used.
  178.  
  179.    A major limitation of some printer drivers is their inability to
  180. exploit the full set of 8-bit character codes used by most printers. This
  181. means that the characters which are coded by the ASCII 7-bit character set
  182. (appendix E) are sent correctly to the printer, while unexpeced
  183. transformations on characters whose code is greater than 127 (the maximum
  184. code representable with 7 bits) can be performed. This problem is well
  185. known to those Amiga users who need to write text in languages with
  186. national characters which are not part of the 7-bit ASCII set. Also, users
  187. who have printed some less-used characters like '¼' (one fourth) may have
  188. noticed that the printed output did not correspond to the characters shown
  189. in the printer's documentation or in the printer self-test.
  190.  
  191.    Many printer drivers do a lot of work in order not to have to send data
  192. with the 8th bit set (i.e. a value greater than 127). This ensures
  193. compatibility with printers configured for 7-bit data transmission, but
  194. places unnecessary restrictions on the users of other printers. For
  195. example, to print an 'à' letter (lower case 'a' with grave accent), many
  196. drivers (at the time of writing Epson X, Epson Q, NEC Pinwriter and
  197. others) instruct the printer to switch to the French 7-bit character set
  198. (appendix E), print the character whose decimal code is 64 (an 'à', in the
  199. French set) and then switch back to the USA 7-bit set. If a downloaded
  200. font is being used, this can cause the accented letter to be printed in
  201. the default printer font, with the text surrounding it printed with the
  202. downloaded font. The simplest solution would be to set the printer so that
  203. only the IBM PC set needs to be used, and send a decimal 133 code to print
  204. the 'à' (as in appendix C). This can be done with the Printer Driver
  205. Modifier.
  206.  
  207.    Exploring the drivers a bit more, many other interesting
  208. characteristics can be found. On the same drivers mentioned above, for
  209. example, the '±' (plus minus) sign is composed by printing a plus sign,
  210. followed by a backspace code, and finally overwritten by an underscore
  211. character ('_'). There is even more overhead involved in printing the '½'
  212. (one half). First, the superscript mode is activated, then a '1' (one) is
  213. printed, the normal characters are reselected, a backspace is output, a
  214. '-' (minus) sign is printed, another backspace output, the subscript mode
  215. is activated, the '2' (two) is printed, and finally the normal print mode
  216. is restored. If proportional characters are used, the result is almost
  217. unreadable, as the three characters used have different sizes, and the
  218. backspaces cause them to be printed at different horizontal positions. The
  219. Personal Fonts Maker could replace this long sequence with a single code
  220. of the PC set (decimal 171, for example, to print '½', as in appendix C).
  221.  
  222.    Some printer drivers, like the HP LaserJet driver (which works with the
  223. Roman8 character set), have conversion tables for most 8-bit characters.
  224. Unfortunately, the average Amiga user does not own such a printer. This is
  225. one of the reasons for which the Printer Driver Modifier was created.
  226. Perhaps after this handbook is printed many Amiga users will buy a new
  227. printer, or new drivers will be released. The Printer Driver Modifier will
  228. remain a useful tool to analyse printer drivers, understand how they work,
  229. and - whenever necessary - make some quick changes.
  230.  
  231.    Another problem may occur with some printers which do not accept the
  232. downloading of characters having codes greater than 127. The Personal
  233. Fonts Maker can be used to download the characters whose code is smaller
  234. than 128. In this case, the 7-bit philosophy of some drivers could be
  235. useful, if only the technique of switching to different 7-bit sets did not
  236. restore the printer's default font. The only solution is to assign a 7-bit
  237. code to those characters to be printed whose code would normally be
  238. greater than 127. This is exactly what the national 7-bit character sets
  239. (appendix E) do. Both the Personal Fonts Maker and the Printer Driver
  240. Modifier come with character set data files for 7-bit character sets.
  241.  
  242.  
  243. 9.3        The PDM: General Description
  244.  
  245.    The Printer Driver Modifier gives the user full access to any driver's
  246. conversion tables for characters having a code greater than 127 and
  247. control sequences. A control sequence or a character received by a printer
  248. driver are translated into a (usually) different set of one or more codes.
  249. These codes are displayed in the standard FFDL format for constants
  250. (section 2.7.1) and can be modified by the user.
  251.  
  252.    The Printer Driver Modifier can be used to modify existing control
  253. sequences of the printer driver, or add new ones. Switches to national
  254. 7-bit character sets to print a character can be replaced with a single
  255. 8-bit character code. The same can be done with those characters in the
  256. set available on the printer which are represented by the driver as a
  257. series of partial character images and backspaces. If a character is not
  258. available on the printer, it can be downloaded with the Personal Fonts
  259. Maker, and the printer driver can be updated with the PDM so that the new
  260. character is translated correctly. If a character cannot be downloaded
  261. because the printer being used does not accept the downloading of
  262. character having codes greater than 127, a new code (smaller than 128) can
  263. be assigned to the character, both in the downloaded font (with the
  264. Personal Fonts Maker) and in the printer driver (with the Printer Driver
  265. Modifier).
  266.  
  267.    Some functions of a printer driver are not representable as simple
  268. data-to-data translations. The graphics modes routines, for example, are
  269. procedures built into the drivers. These cannot be modified with the PDM.
  270. Characters whose code is smaller than 128 are not re-mapped by the
  271. drivers, as the standard 7-bit codes are common among most character sets.
  272. The Printer Driver Modifier can be used to assign a 7-bit code to a
  273. character whose code is greater than 127, but not vice versa. As described
  274. in section 11.5 ("Encoding Mode"), it is not possible to increase the
  275. total size reserved by a driver for the conversion tables' memory. This is
  276. usually not a problem, as the control sequences are generally either
  277. modified or replaced with a single 8-bit code, therefore occupying less
  278. memory. These limitations do not reduce the power and flexibility of the
  279. Printer Driver Modifier when the program is used in the environment it was
  280. designed for: text processing with the aid of the Personal Fonts Maker.
  281. This is probably the ideal field for the Printer Driver Modifier, which is
  282. likely to become a precious tool on several other occasions.
  283.  
  284.  
  285. 9.4        The PDM: The Main Window
  286.  
  287.    The Printer Driver Modifier can be loaded by double clicking on its
  288. Workbench icon, as described in section 1.11 for the Personal Fonts Maker.
  289. The program immediately presents itself with the main window, which is
  290. opened on the Workbench screen.
  291.  
  292.    The window can be moved around the screen dragging the title bar with
  293. the mouse. The gadget on the left of the title bar can be used to close
  294. the window and terminate the program, as described in section 10.10
  295. ("Quit").
  296.  
  297.    The following subsections describe the functions of the gadgets and
  298. fields which appear on the program's main window. Section 1.9.8 ("Menus"),
  299. chapters 10 ("PDM: The Project Menu") and 11  ("PDM: The Preferences
  300. Menu"), appendix H ("PDM Program Messages") and appendix J ("PDM Command
  301. Key Shortcuts") contain additional documentation on the Printer Driver
  302. Modifier.
  303.  
  304.  
  305. 9.4.1      The "Number" Gadgets
  306.  
  307.    This string gadget always displays the code associated with the current
  308. command or character. If the command mode is active, the code refers to an
  309. Amiga standard printer control code. Commands are numbered starting from
  310. 0. Each command has an associated name (section 9.4.3, "The 'Command'
  311. Field"), an extended function description (section 9.4.6, "The 'Function'
  312. Field"), and a control sequence in the printer format (section 9.4.2, "The
  313. Editing Gadget"). If the character mode is selected, the value displayed
  314. in the gadget refers to the code of the current character in the Amiga's
  315. character set (appendix D). The codes of the characters which can be
  316. accessed by the Printer Driver Modifier range from 160 (the first) to 255.
  317. The command codes are numbered from 0 (zero) to 75.
  318.  
  319.    A new value can be defined by the user either by selecting the string
  320. gadget and modifying the number with the keyboard, or using the two arrow
  321. gadgets on the right of the string gadget, which increase or decrease the
  322. displayed value by one unit at a time, as described in section 3.3 ("The
  323. "Character #" Gadgets"). The <+> and <-> keys can also be used instead of
  324. the two arrow gadgets (the <Amiga> key does not need to be held down).
  325.  
  326.    Section 10.7 ("Section") explains how to switch between the command
  327. mode and the character mode.
  328.  
  329.  
  330. 9.4.2      The Editing Gadget
  331.  
  332.    This string gadget, on the right of the "Number" gadgets, contains the
  333. FFDL sequence which describes the data to be sent by the driver to the
  334. printer when the Amiga control sequence associated with the command
  335. described in the "Function" field (section 9.4.6) or the character which
  336. appears in the "Character" field (section 9.4.4) is received by the
  337. driver.
  338.  
  339.    The FFDL language provides different representations for constants.
  340. Section 2.7.1 ("FFDL Constants") describes the different formats. The
  341. Printer Driver Modifier always accepts constants written by the user in
  342. any format defined by the FFDL. Section 11.4 ("Decoding Mode") explains
  343. how the data extracted from a printer driver can be represented by the
  344. Printer Driver Modifier. Section 11.1 ("Code Table") explains how to
  345. display a help window containing all ASCII shortnames for the codes from 0
  346. to 32.
  347.  
  348.    The Printer Driver Modifier accepts two special constant codes: NOAV
  349. and DLAY. These codes may appear in sequences associated with printer
  350. commands (not characters). NOAV stands for "NOt AVailable", and means that
  351. a particular command cannot be represented with a sequence of constant
  352. codes. This can also mean that the function is handled by a special
  353. procedure in the driver, which is not accessible through the Printer
  354. Driver Modifier. If NOAV is written by the user in the string gadget, then
  355. no other codes may be associated with that function. If a given command
  356. has no equivalent command sequence, a NOAV instruction should be placed in
  357. the string gadget, rather than leaving it empty.
  358.  
  359.    The other special code is DLAY, which means "DeLAY". DLAY may appear
  360. alone or in the middle of a sequence of codes. When the driver is sending
  361. the data associated with a function to the printer, it pauses before the
  362. remaining part of the control sequence or the following codes are output.
  363. The duration of the delay varies from printer driver to printer driver.
  364. Some printer drivers make intensive use of DLAY codes, especially in the
  365. printer's "Reset" function. The use of this code is mysterious, since the
  366. data sent by the driver is usually not processed immediately, but
  367. temporarily stored in the printer's buffer memory. This makes all delays
  368. useless, since the rate at which the printer reads and processes any data
  369. from its buffer is not linked to the timings defined by the computer, but
  370. depends on the speed at which the mechanical components of the printer can
  371. be moved. Delays are also lost when the data output by the driver is sent
  372. to a file, as can be done with the "Cmd" command supplied by Commodore, or
  373. when a printer spooler is buffering the data stream.
  374.  
  375.    Three constant codes are represented by printer drivers in a very
  376. particular format in their internal command-sequence tables. The codes are
  377. NOAV, DLAY and NUL (which is equivalent with the "(0)" FFDL sequence). The
  378. three decimal values 253, 254 and 255 (hexadecimal FD, FE and FF, octal
  379. 375, 376 and 377) are used in the printer driver's command table to
  380. represent DLAY, NUL and NOAV respectively. These codes were probably
  381. chosen by the designers of the drivers when 7 bits seemed sufficient to
  382. represent the data to be sent to the printer. Higher codes were reserved
  383. for the drivers' internal uses. This may explain why so many drivers are
  384. still 7-bit oriented. Unfortunately, the values 253, 254 and 255 are now
  385. excluded from the 8-bit codes which can be output by a printer driver to
  386. send a command to the printer.
  387.  
  388.    The user does not need to bother about these three special codes, as
  389. all conversions are automatically made by the Printer Driver Modifier when
  390. a driver is loaded or saved. The three FFDL sequences "(253)", "(254)" and
  391. "(255)" cannot, however, be written in the editing gadget associated with
  392. a printer command. These three values cannot be sent to the printer, even
  393. if the printer recognizes them as part of valid commands. The driver would
  394. interpret the three codes as one of either DLAY, NUL (or "(0)") or NOAV.
  395. To avoid any confusion, an error message is displayed by the Printer
  396. Driver Modifier if one of the three special codes is used in a control
  397. sequence associated with a command. The three values can, however, be used
  398. normally in any control sequence associated with a character.
  399.  
  400.    The three special cases mentioned above concern the command table.
  401. There is another peculiarity regarding the format used by printer drivers
  402. to store the control sequences in the character table. In the printer
  403. driver's table, the sequence of bytes associated with each character
  404. (codes ranging from decimal 160 to 255) or command is terminated with a
  405. byte whose value is zero. The so-called "zero-termination" of strings is a
  406. common practice in the Amiga environment, and is usually never a source of
  407. trouble. However, printer control codes often contain zero bytes which
  408. must be transmitted to the printer, rather than be interpreted as a
  409. string-terminator. As explained before, in the command table a zero is
  410. replaced with a single code whose decimal value is 254. A similar
  411. substitution in the codes associated with characters would be a cause of
  412. major problems, as the code 254 references a valid character in the
  413. character sets of most printers, and needs to be used as such. This
  414. problem was solved by expanding all zero codes (decimal 0) into the
  415. sequence '\'+ '0' (decimal 92 followed by decimal 48). This, however, led
  416. to another problem: how should the driver distinguish between a '\'+'0'
  417. sequence which should be converted to a zero byte, and another sequence
  418. which had to be sent "as is"? After all, it is not uncommon to send a
  419. backslash and a zero character to the printer. This second problem was
  420. solved by transforming all '\' (backslash, ASCII decimal code 92)
  421. characters into a sequence of two backslashes, all couples of backslashes
  422. into sets of four backslash characters, and so on. Furthermore, a zero
  423. byte followed by one or more other digits (range of ASCII codes from 48 to
  424. 57) needs an additional treatment. This drawback is caused by the fact
  425. that the parser of the printer device considers up to three digits
  426. following a backslash as a single octal code. In a similar case, a zero
  427. must be expanded into "\000" before it can be followed by other digits.
  428. Fortunately, users of the Printer Driver Modifier do not need to be able
  429. to handle these conversions, the explanation of which may sound like a
  430. very complex joke. The Printer Driver Modifier expands zero codes and
  431. backslashes followed by digits automatically when a printer driver is
  432. stored. It is important to know, however, that there can be such an
  433. expansion, as this may lead to an overflow in a character or in the entire
  434. character table, depending on the current encoding mode (section 11.5).
  435.  
  436.    The content of the string gadget can be edited by the user as described
  437. in section 1.9.6 ("String Gadgets"). The maximum size depends on whether
  438. the fixed location or the floating location encoding mode is selected
  439. (sections 11.5.1 and 11.5.2). In the fixed location mode, the "Maximum"
  440. field (section 9.4.5) indicates the maximum number of characters (in the
  441. printer's internal format) which the printer driver may store for that
  442. character or command. If the limit is 0 (zero), i.e. no characters can be
  443. written, the gadget is disabled by the program, and cannot be selected.
  444.  
  445.    Section 10.6 ("Check Definitions") explains how the program can
  446. automatically search the FFDL sequences written by the user for any
  447. errors. This is also verified before the driver is saved and when a new
  448. decoding mode is selected. Error messages are explained in appendix H.
  449.  
  450.  
  451. 9.4.3      The "Command" Field
  452.  
  453.    This field is displayed if the command mode (section 10.7.1) is active.
  454. The internal short name for the printer command currently being processed
  455. is displayed here. The Printer Driver Modifier uses the same names used in
  456. the Amiga's documentation and in the "include" files of different
  457. programming environments.
  458.  
  459.    For example, "aSHORP4" means "Condensed Fine On". This is one of the
  460. commands used to define the horizontal print pitch. The name itself comes
  461. from "Set HORizontal Pitch".
  462.  
  463.    The "Function" field (section 9.4.6) always contains an extended
  464. definition of the command.
  465.  
  466.  
  467. 9.4.4      The "Character" Field
  468.  
  469.    When the character mode (section 10.7.2) is active this field replaces
  470. the "Command" field. The Amiga default character image associated with the
  471. character currently being processed is displayed here.
  472.  
  473.  
  474. 9.4.5      The "Maximum" Field
  475.  
  476.    As described in section 9.4.2 ("The Editing Gadget"), the value
  477. displayed in this field indicates the maximum number of characters which
  478. the printer driver can associate with the current character or command.
  479. This only happens if the fixed location mode is selected (section 11.5.1).
  480. In the floating location mode (section 11.5.2) a '-' (dash) sign is
  481. displayed in the field, as the limit depends on the total number of
  482. characters used by all control sequences associated with the commands or
  483. characters, rather than on the single sequences.
  484.  
  485.    Section 10.6 ("Check Definitions") contains some additional information
  486. on the size occupied by the driver's internal representation of the
  487. codes.
  488.  
  489.  
  490. 9.4.6      The "Function" Field
  491.  
  492.    This field, which is displayed only in the command mode, contains the
  493. extended name of the printer function currently being processed. This name
  494. can be, for example, "Italics On" or "Condensed Fine On", just as it
  495. normally appears in the printer's documentation.
  496.  
  497.