An instance of the JawsMako PRN input class. More...
#include <prninput.h>
Public Member Functions | |
virtual void | setIgnorePrescribe (bool ignorePrescribe)=0 |
Set whether to ignore Kyocera PRESCRIBE commands. | |
![]() | |
virtual IDocumentAssemblyPtr | open (const U8String &pathToFile)=0 |
Open a file on disk, returning the IDocumentAssembly representing the contents. | |
virtual IDocumentAssemblyPtr | open (const String &pathToFile)=0 |
Open a file on disk, returning the IDocumentAssembly representing the contents. Takes a wide character string. | |
virtual IDocumentAssemblyPtr | open (const IInputStreamPtr &inputStream)=0 |
Open a stream, returning the IDocumentAssembly representing the contents. | |
virtual void | setSequentialMode (bool sequential)=0 |
Set/unset sequential mode on this input. | |
virtual void | setParameter (const U8String ¶m, const U8String &value)=0 |
Apply a key value pair output parameter with a string value. The parameter name is case-insensitive. Please refer to the supplied documentation for the details of the available parameters and their ranges. | |
![]() | |
virtual void | addRef () const =0 |
Increases the reference count of the actual object pointed to. This would take place during an assignment or copying. | |
virtual bool | decRef () const =0 |
Decreases the reference count of the actual object pointed to. When the reference count falls to Zero, it deletes the actual object pointed to. | |
virtual int32 | getRefCount () const =0 |
Retrieve the current reference count of the actual object pointed to. | |
Static Public Member Functions | |
static JAWSMAKO_API IPRNInputPtr | create (const IJawsMakoPtr &jawsMako) |
Create an input for reading printer (PRN) source documents. | |
![]() | |
static JAWSMAKO_API IInputPtr | create (const IJawsMakoPtr &jawsMako, eFileFormat format, const IProgressMonitorPtr &progressMonitor=IProgressMonitorPtr()) |
Create an input for reading source documents in the given format. The following formats are currently supported: | |
Additional Inherited Members | |
![]() | |
virtual | ~IRCObject () |
Virtual destructor. | |
An instance of the JawsMako PRN input class.
|
static |
Create an input for reading printer (PRN) source documents.
The IPRNInput interface allows PRN documents to be imported into JawsMako. These are files that have a PJL header and one or more documents in a given PDL, immediately preceded by a @PJL ENTER LANGUAGE
tag. The language tags that are currently recognized are PCL, PCLXL, HPGL2, POSTSCRIPT and PDF.
jawsMako | The IJawsMako object |
|
pure virtual |
Set whether to ignore Kyocera PRESCRIBE commands.
When enabled, an attempt will be made to ignore Kyocera PRESCRIBE commands in PCL5 streams by skipping data from the start sequence !R! to the end sequence EXIT;
Note that !R! may appear in PCL5 data as text and so this parameter should only be enabled when opening PCL5 streams with Kyocera PRESCRIBE.
The default is false.
ignorePrescribe | Whether to ignore PRESCRIBE commands. |