#include <gdi.h>
Link against: gdi.lib
class CPrinterDriver : public CBase |
Public Member Functions | |
---|---|
~CPrinterDriver() | |
IMPORT_C void | Close() |
IMPORT_C CPrinterDevice * | CreatePrinterDeviceL(TUid) |
IMPORT_C CPrinterDriverUI * | CreatePrinterDriverUIL() |
IMPORT_C TPrinterModelEntry | Model(TInt) |
IMPORT_C CPrinterDriver * | NewL() |
IMPORT_C TInt | NumModels() |
IMPORT_C void | OpenPdrL(const TDesC &) |
CPrinterDevice * | PrinterDevice() |
Provides access to a store containing printer specification data.
Printer specification data is held as a direct file store, and usually has a .pdr file type.
A printer driver is implemented as two files: a PDR file containing the printer specification data and a PDL file containing the code to link the printer with the graphics printing system.
The printer specification data is generated by compiling a text file (a .pd file type) using the pdrtran tool. Printer specification data defines:
the name of the associated PDL
a list of one or more models supported by this driver, identified by name and UID
device information such as the size of the device, typeface information for each model, including which typefaces are supported, the heights available in each typeface and the width of each character in a font.
See also: CPrinterDriverUI
IMPORT_C | ~CPrinterDriver | ( | ) |
Destructor.
It frees all resources owned by the object, prior to its destruction. In particular, it closes the printer specification data store and any open session with the file server.
IMPORT_C void | Close | ( | ) |
Closes the printer specification data store and frees resources.
An open session with the file server remains open.
IMPORT_C CPrinterDevice * | CreatePrinterDeviceL | ( | TUid | aModelUid | ) |
Creates the physical graphics device to be used for printing.
Parameters | |
---|---|
aModelUid | The UID of a specific model which is defined in the printer specification data. |
IMPORT_C CPrinterDriverUI * | CreatePrinterDriverUIL | ( | ) |
Constructs a printer specific user interface.
The user interface object is optional, but if it exists, it is implemented as part of a UDL (i.e. a UI DLL).
IMPORT_C TPrinterModelEntry | Model | ( | TInt | aNum | ) | const |
Gets the specified printer model.
Parameters | |
---|---|
aNum | An index into the list of printer models defined in the printer specification data. |
IMPORT_C CPrinterDriver * | NewL | ( | ) | [static] |
Constructs, and returns a pointer to a new instance for accessing a printer specification data store.
IMPORT_C TInt | NumModels | ( | ) | const |
Gets the number of printer models defined by the printer specification.
IMPORT_C void | OpenPdrL | ( | const TDesC & | aName | ) |
Opens the specified printer specification data store.
CPrinterDevice * | PrinterDevice | ( | ) | [inline] |
Gets the associated graphics printer device.