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.

301 lines
10 KiB

  1. *PPD-Adobe: "4.0"
  2. *% Adobe Systems PostScript(R) Printer Description File
  3. *% Copyright 1987-1992 Adobe Systems Incorporated.
  4. *% All Rights Reserved.
  5. *% Permission is granted for redistribution of this file as
  6. *% long as this copyright notice is intact and the contents
  7. *% of the file is not altered in any way from its original form.
  8. *% End of Copyright statement
  9. *FormatVersion: "4.0"
  10. *FileVersion: "3.1"
  11. *PCFileName: "QUME_470.PPD"
  12. *LanguageVersion: English
  13. *Product: "(Qume ScripTEN)"
  14. *PSVersion: "(47.0) 2"
  15. *ModelName: "Qume ScripTEN"
  16. *NickName: "Qume ScripTEN v47.0"
  17. *% General Information and Defaults ===============
  18. *ColorDevice: False
  19. *DefaultColorSpace: Gray
  20. *FreeVM: "963324"
  21. *LanguageLevel: "1"
  22. *VariablePaperSize: False
  23. *FileSystem: False
  24. *Throughput: "10"
  25. *Password: "0"
  26. *ExitServer: "
  27. count 0 eq { % is the password on the stack?
  28. true
  29. }{
  30. dup % potential password
  31. statusdict /checkpassword get exec not
  32. } ifelse
  33. { % if no password or not valid
  34. (WARNING : Cannot perform the exitserver command.) =
  35. (Password supplied is not valid.) =
  36. (Please contact the author of this software.) = flush
  37. quit
  38. } if
  39. serverdict /exitserver get exec
  40. "
  41. *End
  42. *Reset: "
  43. count 0 eq { % is the password on the stack?
  44. true
  45. }{
  46. dup % potential password
  47. statusdict /checkpassword get exec not
  48. } ifelse
  49. { % if no password or not valid
  50. (WARNING : Cannot reset printer.) =
  51. (Password supplied is not valid.) =
  52. (Please contact the author of this software.) = flush
  53. quit
  54. } if
  55. serverdict /exitserver get exec
  56. systemdict /quit get exec
  57. (WARNING : Printer Reset Failed.) = flush
  58. "
  59. *End
  60. *DefaultResolution: 300dpi
  61. *?Resolution: "
  62. save
  63. initgraphics
  64. 0 0 moveto currentpoint matrix defaultmatrix transform
  65. 0 72 lineto currentpoint matrix defaultmatrix transform
  66. 3 -1 roll sub dup mul
  67. 3 1 roll exch sub dup mul
  68. add sqrt round cvi
  69. ( ) cvs print (dpi) = flush
  70. restore
  71. "
  72. *End
  73. *% Halftone Information ===============
  74. *ScreenFreq: "50.0"
  75. *ScreenAngle: "45.0"
  76. *DefaultScreenProc: Dot
  77. *ScreenProc Dot: "
  78. {abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
  79. sub }{dup mul exch dup mul add 1 exch sub }ifelse }
  80. "
  81. *End
  82. *ScreenProc Line: "{ pop }"
  83. *ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
  84. *DefaultTransfer: Null
  85. *Transfer Null: "{ }"
  86. *Transfer Null.Inverse: "{ 1 exch sub }"
  87. *% Paper Handling ===================
  88. *% Use these entries to set paper size most of the time, unless there is
  89. *% specific reason to use PageRegion.
  90. *OpenUI *PageSize: PickOne
  91. *OrderDependency: 30 AnySetup *PageSize
  92. *DefaultPageSize: Letter
  93. *PageSize Letter: "statusdict /lettertray get exec"
  94. *PageSize Legal: "statusdict /legaltray get exec"
  95. *PageSize A4: "statusdict /a4tray get exec"
  96. *PageSize B5: "statusdict /b5tray get exec"
  97. *CloseUI: *PageSize
  98. *% These entries will set up the frame buffer. Usually used with manual feed.
  99. *OpenUI *PageRegion: PickOne
  100. *OrderDependency: 40 AnySetup *PageRegion
  101. *DefaultPageRegion: Letter
  102. *PageRegion Letter: "letter"
  103. *PageRegion Legal: "legal"
  104. *PageRegion A4: "a4"
  105. *PageRegion B5: "b5"
  106. *CloseUI: *PageRegion
  107. *% The following entries provide information about specific paper keywords.
  108. *DefaultImageableArea: Letter
  109. *ImageableArea Letter: "18 19 593 774"
  110. *ImageableArea Legal: "18 19 593 990"
  111. *ImageableArea A4: "10 19 585 823"
  112. *ImageableArea B5: "9 19 507 710"
  113. *?ImageableArea: "
  114. save
  115. /cvp {( ) cvs print ( ) print } bind def
  116. /upperright {10000 mul floor 10000 div} bind def
  117. /lowerleft {10000 mul ceiling 10000 div} bind def
  118. newpath clippath pathbbox
  119. 4 -2 roll exch 2 {lowerleft cvp} repeat
  120. exch 2 {upperright cvp} repeat flush
  121. restore
  122. "
  123. *End
  124. *% These provide the physical dimensions of the paper (by keyword)
  125. *DefaultPaperDimension: Letter
  126. *PaperDimension Letter: "612 792"
  127. *PaperDimension Legal: "612 1008"
  128. *PaperDimension A4: "595 842"
  129. *PaperDimension B5: "516 729"
  130. *RequiresPageRegion All: True
  131. *OpenUI *InputSlot: PickOne
  132. *OrderDependency: 20 AnySetup *InputSlot
  133. *DefaultInputSlot: Cassette
  134. *InputSlot Cassette: ""
  135. *CloseUI: *InputSlot
  136. *OpenUI *ManualFeed: Boolean
  137. *OrderDependency: 20 AnySetup *ManualFeed
  138. *DefaultManualFeed: False
  139. *ManualFeed True: "statusdict /manualfeed true put"
  140. *ManualFeed False: "statusdict /manualfeed false put"
  141. *?ManualFeed: "
  142. save
  143. statusdict /manualfeed get {(True)}{(False)}ifelse = flush
  144. restore
  145. "
  146. *End
  147. *CloseUI: *ManualFeed
  148. *DefaultOutputOrder: Normal
  149. *% Font Information =====================
  150. *DefaultFont: Courier
  151. *Font AvantGarde-Book: Standard "(001.002)" Standard ROM
  152. *Font AvantGarde-BookOblique: Standard "(001.001)" Standard ROM
  153. *Font AvantGarde-Demi: Standard "(001.001)" Standard ROM
  154. *Font AvantGarde-DemiOblique: Standard "(001.001)" Standard ROM
  155. *Font Bookman-Demi: Standard "(001.001)" Standard ROM
  156. *Font Bookman-DemiItalic: Standard "(001.001)" Standard ROM
  157. *Font Bookman-Light: Standard "(001.001)" Standard ROM
  158. *Font Bookman-LightItalic: Standard "(001.001)" Standard ROM
  159. *Font Courier: Standard "(001.004)" Standard ROM
  160. *Font Courier-Bold: Standard "(001.004)" Standard ROM
  161. *Font Courier-BoldOblique: Standard "(001.004)" Standard ROM
  162. *Font Courier-Oblique: Standard "(001.004)" Standard ROM
  163. *Font Helvetica: Standard "(001.001)" Standard ROM
  164. *Font Helvetica-Bold: Standard "(001.001)" Standard ROM
  165. *Font Helvetica-BoldOblique: Standard "(001.001)" Standard ROM
  166. *Font Helvetica-Narrow: Standard "(001.000)" Standard ROM
  167. *Font Helvetica-Narrow-Bold: Standard "(001.000)" Standard ROM
  168. *Font Helvetica-Narrow-BoldOblique: Standard "(001.000)" Standard ROM
  169. *Font Helvetica-Narrow-Oblique: Standard "(001.000)" Standard ROM
  170. *Font Helvetica-Oblique: Standard "(001.001)" Standard ROM
  171. *Font NewCenturySchlbk-Bold: Standard "(001.002)" Standard ROM
  172. *Font NewCenturySchlbk-BoldItalic: Standard "(001.001)" Standard ROM
  173. *Font NewCenturySchlbk-Italic: Standard "(001.001)" Standard ROM
  174. *Font NewCenturySchlbk-Roman: Standard "(001.002)" Standard ROM
  175. *Font Palatino-Bold: Standard "(001.001)" Standard ROM
  176. *Font Palatino-BoldItalic: Standard "(001.001)" Standard ROM
  177. *Font Palatino-Italic: Standard "(001.002)" Standard ROM
  178. *Font Palatino-Roman: Standard "(001.001)" Standard ROM
  179. *Font Symbol: Special "(001.001)" Special ROM
  180. *Font Times-Bold: Standard "(001.001)" Standard ROM
  181. *Font Times-BoldItalic: Standard "(001.001)" Standard ROM
  182. *Font Times-Italic: Standard "(001.001)" Standard ROM
  183. *Font Times-Roman: Standard "(001.001)" Standard ROM
  184. *Font ZapfChancery-MediumItalic: Standard "(001.002)" Standard ROM
  185. *Font ZapfDingbats: Special "(001.000)" Special ROM
  186. *?FontQuery: "
  187. save
  188. /str 100 string dup 0 (fonts/) putinterval def
  189. {
  190. count 1 gt
  191. {
  192. exch dup str 6 94 getinterval cvs
  193. (/) print print (:) print
  194. FontDirectory exch known
  195. {(Yes)}{(No)} ifelse =
  196. }
  197. {exit} ifelse
  198. }bind loop
  199. (*) = flush
  200. restore
  201. "
  202. *End
  203. *?FontList: "
  204. save
  205. FontDirectory { pop == } bind forall flush
  206. (*) = flush
  207. restore
  208. "
  209. *End
  210. *% Printer Messages (verbatim from printer):
  211. *Message: "%%[ exitserver: permanent state may be changed ]%%"
  212. *Message: "%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%"
  213. *Message: "\FontName\ not found, using Courier"
  214. *% Status (format: %%[ status: <one of these> ]%% )
  215. *Status: "idle"
  216. *Status: "busy"
  217. *Status: "waiting"
  218. *Status: "printing"
  219. *Status: "warming up"
  220. *Status: "PrinterError: warming up"
  221. *Status: "PrinterError: toner empty"
  222. *Status: "PrinterError: paper entry misfeed"
  223. *Status: "PrinterError: toner collection bottle full"
  224. *Status: "PrinterError: no toner cartridge"
  225. *% Input Sources (format: %%[ status: <stat>; source: <one of these> ]%% )
  226. *Source: "serial9"
  227. *Source: "serial25"
  228. *Source: "AppleTalk"
  229. *Source: "Centronics"
  230. *% Printer Error (format: %%[ PrinterError: <one of these> ]%%)
  231. *PrinterError: "warming up"
  232. *PrinterError: "toner empty"
  233. *PrinterError: "paper entry misfeed"
  234. *PrinterError: "toner collection bottle full"
  235. *PrinterError: "no toner cartridge"
  236. *%DeviceAdjustMatrix: "[1 0 0 1 0 0]"
  237. *% Color Separation Information =====================
  238. *DefaultColorSep: ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi
  239. *InkName: ProcessBlack/Process Black
  240. *InkName: CustomColor/Custom Color
  241. *InkName: ProcessCyan/Process Cyan
  242. *InkName: ProcessMagenta/Process Magenta
  243. *InkName: ProcessYellow/Process Yellow
  244. *% For 60 lpi / 300 dpi =====================================================
  245. *ColorSepScreenAngle ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "45"
  246. *ColorSepScreenAngle CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "45"
  247. *ColorSepScreenAngle ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "15"
  248. *ColorSepScreenAngle ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "75"
  249. *ColorSepScreenAngle ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "0"
  250. *ColorSepScreenFreq ProcessBlack.60lpi.300dpi/60 lpi / 300 dpi: "60"
  251. *ColorSepScreenFreq CustomColor.60lpi.300dpi/60 lpi / 300 dpi: "60"
  252. *ColorSepScreenFreq ProcessCyan.60lpi.300dpi/60 lpi / 300 dpi: "60"
  253. *ColorSepScreenFreq ProcessMagenta.60lpi.300dpi/60 lpi / 300 dpi: "60"
  254. *ColorSepScreenFreq ProcessYellow.60lpi.300dpi/60 lpi / 300 dpi: "60"
  255. *% For 53 lpi / 300 dpi =====================================================
  256. *ColorSepScreenAngle ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
  257. *ColorSepScreenAngle CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "45.0"
  258. *ColorSepScreenAngle ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "71.5651"
  259. *ColorSepScreenAngle ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "18.4349"
  260. *ColorSepScreenAngle ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "0.0"
  261. *ColorSepScreenFreq ProcessBlack.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
  262. *ColorSepScreenFreq CustomColor.53lpi.300dpi/53 lpi / 300 dpi: "53.033"
  263. *ColorSepScreenFreq ProcessCyan.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
  264. *ColorSepScreenFreq ProcessMagenta.53lpi.300dpi/53 lpi / 300 dpi: "47.4342"
  265. *ColorSepScreenFreq ProcessYellow.53lpi.300dpi/53 lpi / 300 dpi: "50.0"
  266. *% For "Qume ScripTEN" version 47.0
  267. *% Produced by "GETapd.ps" version 2.0 edit 47
  268. *% Converted to meet 4.0 specification
  269. *% Last Edit Date: Sep 15 1992
  270. *% The byte count of this file should be exactly 010205 or 010506
  271. *% depending on the filesystem it resides in.
  272. *% end of PPD file for Qume ScripTEN