Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

330 lines
8.5 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. uihelp.h
  5. Abstract:
  6. DriverUI driver help indices
  7. [Environment:]
  8. Win32 subsystem, PostScript driver
  9. Revision History:
  10. 10/05/95 -davidx-
  11. Created it.
  12. dd-mm-yy -author-
  13. description
  14. --*/
  15. #ifndef _UIHELP_H_
  16. #define _UIHELP_H_
  17. ////////////////////////////////////
  18. // For document properties dialog //
  19. ////////////////////////////////////
  20. // Select page orientation
  21. // Portrait
  22. // Landscape (90 degrees clockwise)
  23. // Rotated landscape (90 degrees counterclockwise)
  24. #define HELP_INDEX_ORIENTATION 1001
  25. // Select scale factor (1-1000%)
  26. #define HELP_INDEX_SCALE 1002
  27. // Select number of copies to print. Also decide whether to turn on
  28. // collation if more than one copy is requested and the printer
  29. // supports collation.
  30. #define HELP_INDEX_COPIES_COLLATE 1003
  31. // Select color or monochrome option
  32. #define HELP_INDEX_COLOR 1004
  33. // Bring up halftone color adjustment dialog
  34. #define HELP_INDEX_HALFTONE_COLORADJ 1005
  35. // Select duplex options
  36. // Simplex / None
  37. // Horizontal / Tumble
  38. // Vertical / NoTuble
  39. #define HELP_INDEX_DUPLEX 1006
  40. // Select output resolution
  41. #define HELP_INDEX_RESOLUTION 1007
  42. // Select input slot
  43. #define HELP_INDEX_INPUT_SLOT 1008
  44. // Select a form to use
  45. #define HELP_INDEX_FORMNAME 1009
  46. // Select TrueType font options
  47. // Substitute TrueType font with device font
  48. // (according to the font substitution table)
  49. // Download TrueType font to the printer as softfont
  50. #define HELP_INDEX_TTOPTION 1010
  51. // Enable/Disable metafile spooling
  52. #define HELP_INDEX_METAFILE_SPOOLING 1011
  53. // Select PostScript options
  54. #define HELP_INDEX_PSOPTIONS 1012
  55. // Whether the output is mirrored
  56. #define HELP_INDEX_MIRROR 1013
  57. // Whether the output is printed negative
  58. #define HELP_INDEX_NEGATIVE 1014
  59. // Whether to keep the output pages independent of each other.
  60. // This is normally turned off when you're printing directly
  61. // to a printer. But if you're generating PostScript output
  62. // files and doing post-processing on it, you should turn on
  63. // this option.
  64. #define HELP_INDEX_PAGEINDEP 1015
  65. // Whether to compress bitmaps (only available on level 2 printers)
  66. #define HELP_INDEX_COMPRESSBMP 1016
  67. // Whether to prepend a ^D character before each job
  68. #define HELP_INDEX_CTRLD_BEFORE 1017
  69. // Whether to append a ^D character after each job
  70. #define HELP_INDEX_CTRLD_AFTER 1018
  71. // Select printer-specific features
  72. #define HELP_INDEX_PRINTER_FEATURES 1019
  73. ///////////////////////////////////
  74. // For printer properties dialog //
  75. ///////////////////////////////////
  76. // Set amount of PostScript virtual memory
  77. // This is different from the total amount of printer memory.
  78. // For example, a printer might have 4MB RAM, but the amount
  79. // allocated for printer VM could be 700KB.
  80. // Most of the time, you don't have to enter the number yourself.
  81. // PS driver can figure it out from the PPD file. Or if there
  82. // is an installable option for printer memory configurations,
  83. // choose it there and a correct number will be filled in.
  84. #define HELP_INDEX_PRINTER_VM 1020
  85. // Whether to do halftone on the host computer or do it inside
  86. // the printer. For PostScript printers, this should always be
  87. // left at the default setting, i.e. to let the printer do the
  88. // halftone.
  89. #define HELP_INDEX_HOST_HALFTONE 1021
  90. // Bring up halftone setup dialog
  91. #define HELP_INDEX_HALFTONE_SETUP 1022
  92. // Ignore device fonts
  93. // This option is only available on non-1252 code page systems.
  94. // Since fonts on most printers used 1252 code page, you can't
  95. // use them with non-1252 systems.
  96. #define HELP_INDEX_IGNORE_DEVFONT 1023
  97. // Font substitution option
  98. // This option is only available on 1252 code page systems.
  99. // You should leave it at the default setting "Normal".
  100. // If you notice character spacing problems in your text output,
  101. // you can try to set it to "Slower but more accurate". This
  102. // will direct the driver to place each character invididually,
  103. // resulting in more accurate character positioning.
  104. #define HELP_INDEX_FONTSUB_OPTION 1024
  105. // Edit TrueType font substitution table
  106. #define HELP_INDEX_FONTSUB_TABLE 1025
  107. // Substitute a TrueType with a device font.
  108. #define HELP_INDEX_TTTODEV 1026
  109. // Edit form-to-tray assignment table
  110. #define HELP_INDEX_FORMTRAYASSIGN 1027
  111. // Assign a form to a tray. If "Draw selected form only from this tray"
  112. // is checked, then any time the user requests for the selected form,
  113. // it will be drawn from this tray.
  114. #define HELP_INDEX_TRAY_ITEM 1028
  115. // Set PostScript timeout values
  116. #define HELP_INDEX_PSTIMEOUTS 1029
  117. // Set PostScript job timeout value
  118. // Number of seconds a job is allowed to run on the printer
  119. // before it's automatically terminated. This is to prevent
  120. // run-away jobs from tying up the printer indefinitely.
  121. // Set it to 0 if jobs are allowed to run forever.
  122. #define HELP_INDEX_JOB_TIMEOUT 1030
  123. // Set PostScript wait timeout value
  124. // Number of seconds the printer will wait for data before it
  125. // considers a job is completed. This is intended for non-network
  126. // communication channels such as serial or parallel ports where
  127. // there is no job control protocol.
  128. #define HELP_INDEX_WAIT_TIMEOUT 1031
  129. // Configure printer installable options
  130. #define HELP_INDEX_INSTALLABLE_OPTIONS 1032
  131. // Whether to generate job control code in the output
  132. #define HELP_INDEX_JOB_CONTROL 1033
  133. // Text as Graphics
  134. #define HELP_INDEX_TEXTASGRX 1034
  135. // Page Protection
  136. #define HELP_INDEX_PAGE_PROTECT 1035
  137. // Media Type
  138. #define HELP_INDEX_MEDIA_TYPE 1036
  139. // Font cartridges
  140. #define HELP_INDEX_FONTSLOT_TYPE 1037
  141. // Color Mode
  142. #define HELP_INDEX_COLORMODE_TYPE 1038
  143. // Halftoning
  144. #define HELP_INDEX_HALFTONING_TYPE 1039
  145. // PostScript communication protocol
  146. #define HELP_INDEX_PSPROTOCOL 1040
  147. // Download PostScript error handler with each job
  148. #define HELP_INDEX_PSERROR_HANDLER 1042
  149. // Minimum font size to download as outline
  150. #define HELP_INDEX_PSMINOUTLINE 1043
  151. // Maximum font size to download as bitmap
  152. #define HELP_INDEX_PSMAXBITMAP 1044
  153. // PostScript output option
  154. #define HELP_INDEX_PSOUTPUT_OPTION 1045
  155. // PostScript TrueType download option
  156. #define HELP_INDEX_PSTT_DLFORMAT 1046
  157. // N-up option
  158. #define HELP_INDEX_NUPOPTION 1047
  159. // PostScript language level
  160. #define HELP_INDEX_PSLEVEL 1048
  161. // ICM methods
  162. #define HELP_INDEX_ICMMETHOD 1049
  163. // ICM intents
  164. #define HELP_INDEX_ICMINTENT 1050
  165. // Reverse-order printing option
  166. #define HELP_INDEX_REVPRINT 1051
  167. // Quality Macro settings
  168. #define HELP_INDEX_QUALITY_SETTINGS 1052
  169. // Soft font settings
  170. #define HELP_INDEX_SOFTFONT_SETTINGS 1053
  171. // Soft font dialog help
  172. #define HELP_INDEX_SOFTFONT_DIALOG 1054
  173. // Whether to detect TrueGray
  174. #define HELP_INDEX_TRUE_GRAY_TEXT 1055
  175. #define HELP_INDEX_TRUE_GRAY_GRAPH 1056
  176. // Whether to augment device fonts with the Euro character
  177. #define HELP_INDEX_ADD_EURO 1057
  178. //
  179. // Help indices for PostScript custom page size dialog
  180. //
  181. #define IDH_PSCUST_Width 2000
  182. #define IDH_PSCUST_Height 2010
  183. #define IDH_PSCUST_Unit_Inch 2020
  184. #define IDH_PSCUST_Unit_Millimeter 2030
  185. #define IDH_PSCUST_Unit_Point 2040
  186. #define IDH_PSCUST_PaperFeed_Direction 2050
  187. #define IDH_PSCUST_Paper_CutSheet 2060
  188. #define IDH_PSCUST_Paper_RollFeed 2070
  189. #define IDH_PSCUST_Offset_Perpendicular 2080
  190. #define IDH_PSCUST_Offset_Parallel 2090
  191. #define IDH_PSCUST_OK 2100
  192. #define IDH_PSCUST_Cancel 2110
  193. #define IDH_PSCUST_Restore_Defaults 2120
  194. //
  195. // Help indices for Unidrv Font Installer dialog
  196. //
  197. #define IDH_SOFT_FONT_DIRECTORY 3000
  198. #define IDH_SOFT_FONT_NEW_LIST 3010
  199. #define IDH_SOFT_FONT_INSTALLED_LIST 3020
  200. #define IDH_SOFT_FONT_OPEN_BTN 3030
  201. #define IDH_SOFT_FONT_ADD_BTN 3040
  202. #define IDH_SOFT_FONT_DELETE_BTN 3050
  203. #endif //!_UIHELP_H_