xref: /aosp_15_r20/external/libcups/examples/laserjet-basic.drv (revision 5e7646d21f1134fb0638875d812ef646c12ab91e)
1*5e7646d2SAndroid Build Coastguard Worker// Include standard font and media definitions
2*5e7646d2SAndroid Build Coastguard Worker#include <font.defs>
3*5e7646d2SAndroid Build Coastguard Worker#include <media.defs>
4*5e7646d2SAndroid Build Coastguard Worker
5*5e7646d2SAndroid Build Coastguard Worker// Include HP-PCL driver definitions
6*5e7646d2SAndroid Build Coastguard Worker#include <pcl.h>
7*5e7646d2SAndroid Build Coastguard Worker
8*5e7646d2SAndroid Build Coastguard Worker// Specify that this driver uses the HP-PCL driver...
9*5e7646d2SAndroid Build Coastguard WorkerDriverType pcl
10*5e7646d2SAndroid Build Coastguard Worker
11*5e7646d2SAndroid Build Coastguard Worker// Specify the driver options via the model number...
12*5e7646d2SAndroid Build Coastguard WorkerModelNumber ($PCL_PAPER_SIZE $PCL_PJL $PCL_PJL_RESOLUTION)
13*5e7646d2SAndroid Build Coastguard Worker
14*5e7646d2SAndroid Build Coastguard Worker// List the fonts that are supported, in this case all standard
15*5e7646d2SAndroid Build Coastguard Worker// fonts...
16*5e7646d2SAndroid Build Coastguard WorkerFont *
17*5e7646d2SAndroid Build Coastguard Worker
18*5e7646d2SAndroid Build Coastguard Worker// Manufacturer and driver version
19*5e7646d2SAndroid Build Coastguard WorkerManufacturer "HP"
20*5e7646d2SAndroid Build Coastguard WorkerVersion 1.0
21*5e7646d2SAndroid Build Coastguard Worker
22*5e7646d2SAndroid Build Coastguard Worker// Supported page sizes and their margins
23*5e7646d2SAndroid Build Coastguard WorkerHWMargins 18 12 18 12
24*5e7646d2SAndroid Build Coastguard Worker*MediaSize Letter
25*5e7646d2SAndroid Build Coastguard WorkerMediaSize Legal
26*5e7646d2SAndroid Build Coastguard WorkerMediaSize Executive
27*5e7646d2SAndroid Build Coastguard WorkerMediaSize Monarch
28*5e7646d2SAndroid Build Coastguard WorkerMediaSize Statement
29*5e7646d2SAndroid Build Coastguard WorkerMediaSize FanFoldGermanLegal
30*5e7646d2SAndroid Build Coastguard Worker
31*5e7646d2SAndroid Build Coastguard WorkerHWMargins 18 12.72 18 12.72
32*5e7646d2SAndroid Build Coastguard WorkerMediaSize Env10
33*5e7646d2SAndroid Build Coastguard Worker
34*5e7646d2SAndroid Build Coastguard WorkerHWMargins 9.72 12 9.72 12
35*5e7646d2SAndroid Build Coastguard WorkerMediaSize A4
36*5e7646d2SAndroid Build Coastguard WorkerMediaSize A5
37*5e7646d2SAndroid Build Coastguard WorkerMediaSize B5
38*5e7646d2SAndroid Build Coastguard WorkerMediaSize EnvC5
39*5e7646d2SAndroid Build Coastguard WorkerMediaSize EnvDL
40*5e7646d2SAndroid Build Coastguard WorkerMediaSize EnvISOB5
41*5e7646d2SAndroid Build Coastguard WorkerMediaSize Postcard
42*5e7646d2SAndroid Build Coastguard WorkerMediaSize DoublePostcard
43*5e7646d2SAndroid Build Coastguard Worker
44*5e7646d2SAndroid Build Coastguard Worker// Only black-and-white output with mode 3 compression...
45*5e7646d2SAndroid Build Coastguard WorkerColorModel Gray k chunky 3
46*5e7646d2SAndroid Build Coastguard Worker
47*5e7646d2SAndroid Build Coastguard Worker// Supported resolutions
48*5e7646d2SAndroid Build Coastguard WorkerResolution - 1 0 0 0 "300dpi/300 DPI"
49*5e7646d2SAndroid Build Coastguard Worker*Resolution - 8 0 0 0 "600dpi/600 DPI"
50*5e7646d2SAndroid Build Coastguard Worker
51*5e7646d2SAndroid Build Coastguard Worker// Supported input slots
52*5e7646d2SAndroid Build Coastguard Worker*InputSlot 7 "Auto/Automatic Selection"
53*5e7646d2SAndroid Build Coastguard WorkerInputSlot 2 "Manual/Tray 1 - Manual Feed"
54*5e7646d2SAndroid Build Coastguard WorkerInputSlot 4 "Upper/Tray 1"
55*5e7646d2SAndroid Build Coastguard WorkerInputSlot 1 "Lower/Tray 2"
56*5e7646d2SAndroid Build Coastguard WorkerInputSlot 5 "LargeCapacity/Tray 3"
57*5e7646d2SAndroid Build Coastguard Worker
58*5e7646d2SAndroid Build Coastguard Worker// Tray 3 is an option...
59*5e7646d2SAndroid Build Coastguard WorkerInstallable "OptionLargeCapacity/Tray 3 Installed"
60*5e7646d2SAndroid Build Coastguard WorkerUIConstraints "*OptionLargeCapacity False *InputSlot LargeCapacity"
61*5e7646d2SAndroid Build Coastguard Worker
62*5e7646d2SAndroid Build Coastguard Worker{
63*5e7646d2SAndroid Build Coastguard Worker  // HP LaserJet 2100 Series
64*5e7646d2SAndroid Build Coastguard Worker  Throughput 10
65*5e7646d2SAndroid Build Coastguard Worker  ModelName "LaserJet 2100 Series"
66*5e7646d2SAndroid Build Coastguard Worker  PCFileName "hpljt211.ppd"
67*5e7646d2SAndroid Build Coastguard Worker}
68*5e7646d2SAndroid Build Coastguard Worker
69*5e7646d2SAndroid Build Coastguard Worker{
70*5e7646d2SAndroid Build Coastguard Worker  // LaserJet 2200 and 2300 series have duplexer option...
71*5e7646d2SAndroid Build Coastguard Worker  Duplex normal
72*5e7646d2SAndroid Build Coastguard Worker  Installable "OptionDuplex/Duplexer Installed"
73*5e7646d2SAndroid Build Coastguard Worker  UIConstraints "*OptionDuplex False *Duplex"
74*5e7646d2SAndroid Build Coastguard Worker
75*5e7646d2SAndroid Build Coastguard Worker  {
76*5e7646d2SAndroid Build Coastguard Worker    // HP LaserJet 2200 Series
77*5e7646d2SAndroid Build Coastguard Worker    Throughput 19
78*5e7646d2SAndroid Build Coastguard Worker    ModelName "LaserJet 2200 Series"
79*5e7646d2SAndroid Build Coastguard Worker    PCFileName "hpljt221.ppd"
80*5e7646d2SAndroid Build Coastguard Worker  }
81*5e7646d2SAndroid Build Coastguard Worker
82*5e7646d2SAndroid Build Coastguard Worker  {
83*5e7646d2SAndroid Build Coastguard Worker    // HP LaserJet 2300 Series
84*5e7646d2SAndroid Build Coastguard Worker    Throughput 25
85*5e7646d2SAndroid Build Coastguard Worker    ModelName "LaserJet 2300 Series"
86*5e7646d2SAndroid Build Coastguard Worker    PCFileName "hpljt231.ppd"
87*5e7646d2SAndroid Build Coastguard Worker  }
88*5e7646d2SAndroid Build Coastguard Worker}
89