Miraplacid Text Driver SDK 2010: Programming
| |
|
|
Miraplacid Text Driver SDK Programming Guide
Miraplacid Text Driver is actually a collection of ActiveX objects which communicate with
each other trough
well-defined COM interfaces. This model allows us to keep the system highly scalabe
and extensible.
Every component could be developed independently and base on different technologies
as long as it supports COM.
All examples provided in two separate folders: "examples.vb" containing project written in VB 6.0, and "examples.net" containing projects written in C#.
There are 5 different types of software modules in Text Driver:
- Driver components. These are system dll modules and settings files.
This is mandatory part of Text Driver.
- Core component (mtd_core.exe). This is the heart of the whole system.
It takes data from the driver,
keeps it in internal queue and manages all other components - plug-ins and UI.
- UI (mtd_ui.exe). This is User Interface component. This is COM client of Core component;
it uses Core methods and receives
COM events from Core. UI interacts with Core only; it have no direct access to other components.
User Interface module is not required for Text Driver Core and Driver, they can work fine without UI.
To display transport and rendering plug-ins user interfaces, UI loads its own set of plug-ins as an ActiveX components.
- Rendering plug-ins. Inproc dll ActiveX modules which performs text rendering (reconstruction)
from internal representation into particular text format.
Core component manages these modules.
- Transport plug-ins. Inproc dll ActiveX modules which allows to save resulting files to some locations.
Core component manages these modules.
This manual describes only Core and UI interaction details and registration services.
Transport and Rendering plug-ins interfaces are still subject of change and will be presented in the next version os SDK.
For simple solutions like scripting support or object creation from VB, please, refer to Scripting manual.
Miraplacid Text Driver Object Model
Text Driver Core component consists of two COM objects (coclasses):
- coclass MTD (MiraplacidSE.TextDriver {B2A1B097-BA0F-45d5-918E-E3585D214DB5}). This is the main part of Text Driver.
The folowing interfaces included:
- IMTD (default interface). Includes all methods and properties which control Text Driver functionality, including plug-ins.
- _IMTDEvents (default, source interface). This interface is collection of COM events and provided for Core and UI interoperability.
- Some other internal interfaces which are out of scope of current document. You do not have to learn them to build your system.
- coclass MTD_Register (MiraplacidSE.TextDriverRegistrator {106FEB4A-D696-4557-82CB-69BCECF76A61}).
This objects includes single interface IMTD_Register, which manages registration and verification services.
MTD_Register object will be always created and its interface will allow calling program
to verify Text Driver registration status and to register Text Driver.
MTD object will not be created successfully if trial period is expired.
Unlimited version of SDK does not contain MTD_Register coclass and object
MTD will be created always.
For C++ users: Number means long and String means BSTR in this guide.
Do not forget to add get_ (read) and put_ (write) prefixes for properties.
Miraplacid Text Driver IMTD Object Reference
This is a main Text Driver interface. Its IID is {D5FD471D-BAEC-4dfa-8C3C-CCD09050B3AA}.
Property |
Type |
Description |
Format |
String |
(Read / Write) Selects format plug-in ("Output Style"). PLug-ins should be named by their internal (short) names.
The following values are valid:
Formatted - "Formatted Text"
TWL - "Text with Layout"
XML - "XML"
RSS - "RSS"
Plain - "Plain Text"
|
FormatParam |
VARIANT(String PluginName, String ParameterName) |
(Read / Write) Format Plug-in Parameters.
All the parameters for all plug-ins are listed below. |
FormatParamNoCheck |
VARIANT(String PluginName, String ParameterName) |
(Write Only) Format Plug-in Parameters.
Use this option to set only appropriate property, without updating plug-in user interface and checking value.
This option is useful when you need to set all options in a batch, and some options affect others.
After all options are set, call FormatCheckSettings to update plug-in state correctly.
|
FormatPluginNames |
String Collection |
(Read Only) List of installed format plug-ins (XML, Plain Text and so on) |
Transport |
String |
(Read / Write) Selected Transport Plug-in names. If more than one transport plug-in selected, names should be comma delimited.
The following values are valid: Clipboard, FTP, File, HTTP. Mail, Printer.
|
TransportParam |
VARIANT(String PluginName, String ParameterName) |
(Read / Write) Transport Plug-in Parameters
All the parameters for all plug-ins are listed below. |
TransportParamNoCheck |
VARIANT(String PluginName, String ParameterName) |
(Write Only) Transport Plug-in Parameters.
Use this option to set only appropriate property, without updating plug-in user interface and checking value.
This option is useful when you need to set all options in a batch, and some options affect others.
After all options are set, call TransportCheckSettings to update plug-in state correctly.
|
TransportPluginNames |
String Collection |
(Read Only) List of installed transport plug-ins (File, FTP and so on) |
Charset |
Number |
(Read / Write) Character set (codepage number)
5 - UNICODE
437 - OEM American DOS
850 - OEM Latin-1 DOS
852 - OEM Eastern Europe DOS
866 - OEM Cyrillic DOS
932 - Japanese
936 - Chinese (Simplified")
949 - Korean
950 - Chinese (Traditional)"
1250 - ANSI Latin-1 Windows
1251 - ANSI Cyrillic Windows
1252 - ANSI Eastern Europe Windows
1257 - ANSI Baltic Windows
...etc...
|
UnixEOL |
Number |
(Read / Write) End Of Line style
0 means "Windows" EOL style (\r\n or 0x0D, 0x0A)
1 means "UNIX" EOL style (\n or 0x0A) |
AutoSave |
Number |
(Read / Write) 0 - interactive mode; 1 - Process and Auto-send to the specified destinations |
Identity |
Number |
(Read / Write) Identity value to replace {{IDENTITY}} tag |
PageBreak |
Number |
(Read / Write) 1 - insert page break symbols (0xc) between pages; 0 - don't. |
TotalPages |
Number |
(Read Only) Total estimated amount of pages in current print job |
RenderedPages |
Number |
(Read Only) Amount of rendered pages in current print job |
DocumentName |
String |
(Read Only) Original name of the printed document |
TotalJobs |
Number |
(Read Only) Number of printed documents spooled in Text Driver and waiting for processing |
JobStatus |
Number |
(Read Only) Current job status. Binary flags (ORed):
- 0 - Created, initial state just after StartJob event from driver.
- 1 - Opened for rendering. This may happen just after the job will be created, if not other jobs are in Text Driver queue,
or after it will be printed, when current job will be saved and cancelled.
- 2 - Started - configuration loaded, document name set, StartJob event set to UI, set after the job is opened.
- 4 - Printed - printer driver completed all operations with current job. After that, the job may still not be available for save,
it must be Opened, Started and Rendered first.
- 8 - Rendered - ready for save. All the job contents are processed by selected rendering plug-in.
|
Printer |
String |
(Read / Write) Name of the currently selected printer |
Printers |
String Collection |
(Read Only) List of all printers in Text Driver collection. |
RedirectPrinter |
String |
(Read / Write) Name of the currently selected printer for redirection. If empty, no redirection will be performed. |
SystemPrinters |
String Collection |
(Read Only) List of all printers installed in the system. Useful for user interface, this property allows UI to avoid using spooler API. |
DefaultPrinter |
String |
(Read Only) Name of the default printer in the system. |
UnicodePrefix |
Number |
(Read / Write) 1 - insert Unicode prefix (0xfeff) before Unicode content; 0 - don't. |
MainPrinter |
String |
(Read Only) Name of the default Text Driver printer. By default, its name is equal to Driver name |
RedirectEMFScaling |
Number |
(Read / Write) Scale factor, in percents, for EMF pages printed to RedirectPrinter |
RedirectEMFMargins |
Number |
(Read / Write) Turn on/off print margins for EMF redirection |
RedirectTextFont |
String |
(Read / Write) Name of font which will be used for text redirection |
RedirectTextSize |
Number |
(Read / Write) Text size which will be used for text redirection |
RedirectTextWeight |
Number |
(Read / Write) Font weight (100 - 900) which will be used for text redirection |
UILoaded (hidden) |
Number |
(Read / Write) 0 - UI not loaded; 1 - UI loaded.
UI should set this value when it loaded and initialized and clear (set to 0) on unload.
When you read from this property, it returns number of UIs loaded.
|
UILoadedWithEvents (hidden) |
Number |
(Write only) 0 - UI not loaded; 1 - UI loaded.
UI should set this value when it loaded and initialized and clear (set to 0) on unload.
UI chould use this value if it needs to receive all necessary print job events (StartJob, StartPage, EndJob) even if it started
in the middle of print job processing (see UI working scheme).
|
Listeners (hidden) |
Number |
(Read only) Number of processes/modules subscribed to events.
Text Driver may work with several UIs and ordinary listeners. UIs, in difference of listeners, registers themselves using UILoaded.
|
Method |
Parameters |
Description |
GetPage |
Number, returns String |
Get a rendered page by index. |
UpdatePage |
Number n, String s |
Replace contents of nth page by s. |
CancelJob |
None |
Cancel current Print Job. Returns immediately. |
CancelJobWait |
None |
Cancel current Print Job. Waits until current job will be cancelled and the new one will be opened, if any. |
CancelAllJobs |
None |
Cancel all jobs for this printer |
SaveConfiguration |
None |
Save current configuration for active user and active printer |
SaveCommonConfiguration |
None |
Save current configuration for all users (who do not have own configurations yet) and active printer |
SavePage |
Number page_number |
Send particular page through selected Transport Plug-Ins. Returns immediately. |
SaveAllPages |
None |
Send All through selected Transport Plug-Ins. Returns immediately. |
SavePageWait |
Number page_number |
Send particular page through selected Transport Plug-Ins. Waits until page will be saved. |
SaveAllPagesWait |
None |
Send All through selected Transport Plug-Ins. Waits until all pages will be saved. |
Stop |
None |
Unloads plug-ins, get ready for unloading from memory. System will unload Miraplacid Text Driver core form memory with 2-5 seconds delay. We recommend you to add this method call at the end of each script. |
FormatCheckSettings |
String plug-in |
Call this method after updating several plug-in settings in a batch (using FormatParamNoCheck).
Some settings may affect others, and this method guarantees that they will be updated in correct order.
|
TransportCheckSettings |
String plug-in |
Call this method after updating several plug-in settings in a batch (using TransportParamNoCheck).
Some settings may affect others, and this method guarantees that they will be updated in correct order.
|
Redirect |
String printer |
This method provides an alternative way to print a copy of print job to another printer. Unlike RedirectPrinter
property, which allows to set printer for automatic redirect, this method may be used in scripts or external programs
when additional analysis needed to decide, redirect this job to that printer or not. Returns immediately.
|
RedirectWait |
String printer |
The same as Redirect method, but waits until redirect process will be completed.
|
LoadUI |
None |
Loads user interface component if it is not already loaded. |
UnloadUI |
None |
Unloads user interface component, if it supports OnUnload event. |
Miraplacid Text Driver Send To (Transport plug-ins) parameters
To query or modify Transport plug-in parameters, use TransportParam property of Miraplacid Text Driver object.
obj.TransportParam("File","filename")="textout_{{PAGE}}.txt"
File |
Property |
Type |
Description |
path |
String |
Destination File Path. Special tags supported.
|
filename |
String |
Destination File Name. Special tags supported.
|
open |
Number |
Opens resulting text file with post-processor.
|
hide |
Number |
0 = show post-processor window. 1 = hide post-processor window.
Ignored if open=0.
|
exec |
String |
Post-processor filename with full path. Special tags supported.
Ignored if open=0.
|
param |
String |
additional parameters for post-processor. Special tags supported.
Ignored if open=0.
|
append |
Number |
Set it to 0 if you wish to overwrite resulting file. Set it to 1 if you wish to append current result to a previous file.
|
wait |
Number |
Set it to 1 if you wish to wait application termination before continue.
Ignored if open=0.
|
FTP |
Property |
Type |
Description |
url |
String |
Destination FTP directory URL. Special tags supported.
|
file |
String |
Destination File Name. Special tags supported.
|
passive |
Number |
0 = FTP passive mode OFF. 1 = FTP passive mode ON.
|
user |
String |
FTP server username.
|
password |
String |
FTP server password.
|
HTTP |
Property |
Type |
Description |
url |
String |
Destination HTTP URL. Special tags supported.
|
file |
String |
Destination File Name. Special tags supported.
|
put |
Number |
0 = use POST method. 1 = use PUT method.
|
user |
String |
username.
|
password |
String |
password.
|
Printer |
Property |
Type |
Description |
printer |
String |
Printer name. Can be a real printer name or "Default" string which means default printer.
|
font |
String |
Font family name to use in print output or "Default" string to not to use any specific font when printing.
|
charset |
Number |
Numeric code of character set or DEFAULT_CHARSET value (equal to 1).
|
weight |
Number |
Weight of characters to be used in print output.
The following values will be accepted:
0 - DONTCARE
100 - THIN
200 - EXTRALIGHT
300 - LIGHT
400 - NORMAL
500 - MEDIUM
600 - SEMIBOLD
700 - BOLD
800 - EXTRABOLD
900 - BLACK
|
height |
Number |
Height of characters to be used in print output.
|
italic |
Number |
Specifies an italic font if set to 1.
|
strikeout |
Number |
Specifies an strikeout font if set to 1.
|
underline |
Number |
Specifies an underline font if set to 1.
|
Mail |
Property |
Type |
Description |
mail |
String |
A set of email addresses of mail recipients, separated by semicolon. |
subject |
String |
Email subject. Special tags supported.
|
message |
String |
Email message body. This value will be used as a header before actual email content (printed pages).
Text Driver will place this message, separator line, then printed pages. Special tags supported.
|
attach |
Number |
Set it to 1 if you wish to send result as an attachment. |
filename |
String |
Name of file which will be used as an attachment. Special tags supported. |
Clipboard |
Property |
Type |
Description |
open |
Number |
Opens resulting text file with post-processor.
|
hide |
Number |
0 = show post-processor window. 1 = hide post-processor window.
Ignored if open=0.
|
exec |
String |
Post-processor filename with full path. Special tags supported.
Ignored if open=0.
|
param |
String |
additional parameters for post-processor. Special tags supported.
Ignored if open=0.
|
wait |
Number |
Set it to 1 if you wish to wait application termination before continue.
|
Miraplacid Text Driver Formatting Style (Rendering plug-ins) parameters
To query or modify Format plug-in parameters, use FormatParam property of Miraplacid Text Driver object.
obj.FormatParam("TWL","margins")=1
In the table below, plug-ins are provided in Description (Name) format. For FormatParam, use name values.
Plain Text (Plain) |
Property |
Type |
Description |
delim |
String |
Delimiter which will be used to separate text boxes during rendering.
This value may include the following escaped special characters: \s (whitespace), \t, \r, \n, \f, \\ (backslash itself) and \xnnnn (nnnn is a hexadecimal code of Unicode symbol).
|
Formatted Text (Formatted) |
Property |
Type |
Description |
margins |
Number |
1 - use printer margins in text rendering (at top and left side); 0 - don't.
|
space |
Number |
Value in percents of average symbol width (10 - 100).
|
Text with Layout (TWL) |
Property |
Type |
Description |
margins |
Number |
1 - use printer margins in text rendering (at top and left side); 0 - don't.
|
XML (XML) |
Property |
Type |
Description |
optimize |
Number |
1 - merge textboxes into whole words; 0 - don't.
|
space |
Number |
Value in percents of average symbol width (10 - 100).
|
RSS-Atom (RSS) |
Property |
Type |
Description |
author |
String |
Author attribute of RSS channel/Atom feed (document).
|
link |
String |
Link attribute of RSS channel/Atom feed (document).
|
description |
String |
Description attribute of RSS channel/Atom feed (document).
|
br |
Number |
1 - add <BR> tag to the end of description lines; 0 - don't. HTML content type for Atom feed.
|
Miraplacid Text Driver _IMTDEvents Events Reference.
This is connection point interface which UI uses to catch printing events from Core component.
Its IID is {95204725-F17E-43c0-A56B-784D7292D28F}.
Event |
Parameters |
Description |
OnStartJob |
None |
Called when Core receives start job signal from driver.
|
OnPageRendered |
Number |
Called when Core receives all text fragments for the current page and rendered it with currently selected Rendering plug-in.
|
OnAllPagesRendered |
None |
Called when Core receives end job signal from driver and rendered all job pages.
|
OnCancelJob |
None |
Called when Core finishes all activity with current job as an acknowledge
for CancelJob call from UI or after SendAll process end. The job is removed from MTD.
|
OnRewindJob |
None |
Called instead of OnCancelJob when SendAll finished with errors. The job is not destroyed and still active.
|
OnUnload |
None |
Called when AutoSend property is set to true. UI should unload upon receiving this event.
|
OnProgress |
String source, Number value |
Called when some lengthy process is taking place.
Source could be a name of transport plug-in - in this case it reflects sending progress for
this particular plug-in; or special value "redirect" which reflects the state of redirection to another printer.
Value is the value of progress indicator (0 - 100).
|
OnError |
Number code, String message |
Called when some error is happened. Message is textual representation of
the error. There are the folowing codes could be passed to this event:
- 1 - "Cannot get transport parameter"
- 2 - "Cannot select transport"
- 3 - "Cannot put transport parameter"
- 4 - "Cannot get format parameter"
- 5 - "Cannot select format plug-in"
- 6 - "Cannot put format parameter"
- 7 - "Invalid printer name"
- 8 - "Cannot change printer"
- 9 - "Cannot save configuration"
- 10 - "No transports selected"
- 11 - "Invalid format plug-in name"
- 12 - "Sorry, you are not allowed to print to this printer"
- 13 - "Invalid page number"
- 14 - "Trial period expired"
- 15 - "Cannot start driver engine"
- 16 - "There is no job ready for save"
- 17 - "Busy: processing is in progress"
- 18 - "Empty job - will be cancelled automatically"
- 19 - "User Interface component already loaded"
- 20 - "User Interface component is not loaded"
- 21 - "Transport Start failed"
- 22 - "Transport Process failed"
- 23 - "Transport End failed"
- 24 - "Redirect: Cannot open printer"
- 25 - "Redirect: OpenSpoolFile"
- 26 - "Redirect: CreateFileMapping"
- 27 - "Redirect: Malformed Spool File"
- 28 - "Redirect: StartDoc"
- 29 - "Redirect: Printer is not ready"
- 30 - "Redirect: ReadFile"
- 31 - "Redirect: WritePrinter"
- 32 - "Redirect: UnderWrite"
- 33 - "Redirect: Create Printer Font"
- 34 - "Redirect: GetTextMetrics"
- 35 - "Send thread initialization error"
- 36 - "Cannot set value"
- 0x100 - Transport plug-ins errors
|
OnSetDocName |
String |
Called when Core sets document name to let UI update its status line, etc.
|
OnChangePrinter |
None |
Called when Core receives print job for different printer or after initial configuration load. UI must re-read all the configuration from Core.
|
OnPageSaving |
Number |
Called when Core saves particular page. Parameter is a number of page. UI may use this value to update its page number.
|
OnAddRemovePrinter |
Number |
Core monitors printers add/remove operations and default printer change in the system. When this happen, it generates this event to let UI update lists of printers.
In responce to this event, UI must update its own printer lists and send update signal to its set of transport plug-ins to allow them update their printer lists,
by calling CheckSettings method with appropriate parameter.
Parameter may have the following values:
- 0 - Default printer changed.
- 1 - Some printer added/removed, not from MTD family and not redirect printer.
- 2 - Some printer from MTD family added/removed.
- 3 - Redirect printer removed.
|
OnSettingsAutoChanged |
Number |
If some configuration parameter has been changed incorrectly, or change in one parameter changes another settings, Core fires this event.
In responce to this event, UI must reload apporpriate blocks of settings.
Parameter may have the following values (may be OR'ed together):
- 1 - Text conversion options.
- 2 - System options.
- 4 - Redirect options.
- 8 - Format options (excluding plug-in options).
- 16 - Transport options (excluding plug-in options).
|
Miraplacid Text Driver IMTD_Register Object Reference.
When evaluation period is expired, object of the main interface (IMTD) will not be created
successfully.
Application should use IMTD_Register interface to register Text Driver.
Its IID is {F33D6725-86D8-401b-A5B9-9331DCE23125}.
Examples of registration utility are located at examples.vb\register and examples.net\MTD_SE_Reg folders at this package.
Property |
Type |
Description |
Valid |
Number |
(Read Only) May be used to examine current evaluation state. Has the following values:
- <=0 - Internal error happened in verification code. This could be caused by corrupted .key file, wrong permissions of .key file, etc.
- 1 - Text Driver is registered.
- 2 - Text Driver is unregistered but trial period is not expired.
- 3 - Trial periond is expired.
|
Users |
String Collection |
(Read / Write) List of users currently allowed to print to Text Driver. Implemented in Terminal Server version only.
|
UserLicenses |
Number |
(Read Only) Maximum number of end user licenses. Implemented in Terminal Server version only.
|
Method |
Parameters |
Returns |
Description |
SetLicense |
String FirtsName, String LastName, String Keycode |
Number |
This method is intended for registering Text Driver. Application must provide FirstName,
LastName and Keycode generated by Miraplacid to this method.
Resulting value is 1 if registration succeeded, 0 if not.
After 3 unsuccessful registration attempts this method will always return CLASS_E_NOTLICENSED
and will not actually try to register. Application should re-create the object to continue
registering.
|
LoadUI |
None |
None |
Method LoadUI allows application to force loading UI which will ask user for registration
information. This could be done if Valid property returns 2 or 3.
|
Miraplacid Text Driver UI working scheme.
You can see a live custom UI examples in examples.vb\customui and examples.net\MTD_SE_UI folders of SDK package.
- UI is launched by Core when it receives a new job and AutoSave property is in false state
or by user when he clicks on Text Driver icon
on Desktop or Programs folder.
- UI loads MTD object and obtains IMTD interface pointer.
- UI establishes a connection with Core and loads configuration (by reading properties).
After initialization steps (when it will be ready to receive events), UI must set UILoaded
property to 1 (true). This property counts active UIs, and, if UI was loaded and the last UI sets UILoaded=0, core
will save configuration automatically.
When Core launches UI, it looks for "WaitUILoaded" parameter in its registry folder (HKLM).
If WaitUILoaded = 0 (default value), Core does not wait for UI to be loaded. So, when UI will be ready to listen events, it will appear
in the middle of print job (OnStartJob + some page or whole job events may be missed).
And, even if user starts UI from Desktop, it may connect to Core with current print job already waiting for user input
(save or cancel).
To avoid this situation and get current status correctly, there are two possibilities exists:
- Get the current job status from core before subsribing to events, as did in .Net UI example. This is the most correct method.
- Use UILoadedWithEvents = 1 construction. This property will feed UI with all needed events for current job automatically, if Core has active job.
This is the most simple method, but it has one side-effect: if you use several applications listens events from Core, all them will receive
print job events missed by this UI. This is the only way for applications written in languages like VB, which creates objects and subscribes to events in one operation (Dim WithEvents).
In this case, you need to set UILoadedWithEvents right after object creation.
We recommend to use this method for UIs intended for interactive job with user.
If WaitUILoaded = 1, Core waits UI to be loaded (on StartJob) for 60 seconds maximum, then continues job processing. This method is convenient for UIs which perform job data processing
in automatic mode, without significant user intervention. UI should use any method of events subscription and UILoaded=1 and it will not miss any events from Core.
If you wish to use this mode, do not forget to set WaitUILoaded parameter to 1 in your installer.
Further steps (4 - 6) make an event-driven loop.
Core generates events in two modes: syncronous and asyncronous. To control this mode, installer may set "AsyncEvents" parameter in MTD registry folder (HKLM).
When Core users asyncronous events mode, it sends events from separate thread and does not wait for UI to return. So, if your UI performs some
processing on events (not just mirror Core state), we recommend you to use asyncronous mode - the printing process will be faster.
Core may collect print jobs with its maximal speed, and UI will process them with its own speed.
But, please, be careful when your UI works in asyncronous mode and Core is in autosave mode. If your UI slower than Core and it makes
some actions with print job (getting/setting pages, saving particular pages/all pages, etc), these actions in autosave mode may affect
wrong print job because in autosave mode Core does not wait the job to be calcelled from UI - it saves a job automatically and get the next one from queue.
In this case, you need to ensure that Core is not in autosave mode.
- OnStartJob: On this event UI may prepare internal structures for a new job and examine print job status.
Job may already be completed (printed) if next job was printed on background before finalizing
previous one. Together with this event, Core sends OnChangePrinter (for printer name and configuration update) and OnSetDocName (for transports update).
- OnPageRendered: This event will be generated for every page of the job during rendering process even if actual print
job was completed. On this event, its possible to get the page with Pages Core property and update UI state.
- OnAllPagesPrinted: This is informational event which allows UI to update its internal state
(and interface elements like SaveAll button).
The following stage is interactive job with end user.
- User can change settings.
Appropriate Core properties must be set by UI. During this process, OnError event might be raised
in response to incorrect property change.
- User can change active printer, save its configuration for current user or for all users.
- User can save current page. UI shall call SendPage method.
- User can change current page. UI shall call UpdatePage method with new contents of the page.
- User may want to save all pages. UI shall call SendAllPages method.
In response to this call, Core will notify UI by raising OnCancelJob event when saving is done.
On this event, UI must get ready for the next job.
If some transports fail, Core raises OnRewindJob event (but does not cancels the
job). On this event UI can rewind the job to the first page,
show some (additional) error message, etc.
- User can cancel the job. UI must call CancelJob method. In response,
Core generates OnCancelJob event.
- During saving process, Core will generate OnPageSaving and OnProgress events or OnError if some error happened.
At any time, Core may send OnAddRemovePrinter event if some printer configuration changed in the system.
Dependent from this event argument, UI should take appropriate measures - reload printer lists, configuration, etc.
Miraplacid Text Driver Rendering plug-ins.
Rendering plug-ins are Text Driver components intended for text pages creation from text boxes collected by driver engine.
Rendering plug-ins are AcitveX components which implements all standard visual ActiveX component interfaces.
Additionally, it must obey the following requirements:
- It must be included into "Miraplacid Text Driver Rendering Plug-ins" COM category (844F0FA2-6FCF-4DDC-8028-EA9B2678D549), but not create it.
- It must implement IMTD_FPLUGIN interface (769FF02D-AD79-4b0e-9DC7-0CD85C896520) and realize _IMTD_FPlugin_Events connection point dispinterface (79EADD1F-C31C-44ef-8287-267CB278E60B).
- It must not register its own type library. Ready for use type library provided in imtd_plugin.dll.
IMTD_FPLUGIN interface:
Property |
Type |
Description |
Value |
Variant |
(Read/Write) Any properties that your plug-in may have. Some of them (listed in Layout) will be saved into configuration in registry and restored from it.
|
ValueNoCheck |
Variant |
(Write Only) The same as Value, but does not check value itself or against other values and does not update UI.
Use to prevent update relative settings in a wrong order. When all the settings updated, call CheckSettings method.
|
Name |
String |
(Read Only) Plug-in name for internal use.
|
Descirption |
String |
(Read Only) Plug-in name use in user interface or so (full name).
|
Layout |
String |
(Read Only) This string contains a list of properties (Values) which should be saved inconfiguration or restored from it.
Format of this string is: "Bparam1,Lparam2,BParam3", where "B" and "L" are prefixes meaning type of parameter (BSTR and Long accordingly). Parameter names should be separated by commas. Spaces are not allowed.
|
Extension |
String |
(Read Only) File extension corresponding current rendering plug-in, without leading period, i.e. "xml", "rss".
|
Method |
Parameters |
Description |
StartDoc |
Number DPI; returns String |
MTD Core call this member when it performs SaveAll procedure (saves whole document). DPI is print job resolution.
This will happen after all rendering has completed.
Plug-in should return document header to Core.
If document has no special header, plug-in should return E_NOTIMPL.
|
EndDoc |
no parameterts; returns String |
MTD Core call this member when it performs SaveAll procedure (saves whole document).
This method will be called directly after StartDoc.
Plug-in should return document footer to Core.
If document has no special footer, plug-in should return E_NOTIMPL.
|
StartPage |
Number PageNo, Number Xsize, Number Ysize |
MTD Core call this member before rendering each page. PageNo is page number (0-based), XSize is X dimension in "dots", Ysize is Y dimension.
|
Add |
Number X0, Number X1, Number Y0, Number Y1, String text, String font |
With this method, MTD Core feeds rendering plug-in with textboxes for rendering. X0, X1, Y0, Y1 are textbox coordinates, "text" is a text itself, "font" is a font name.
|
Render |
no parameterts; returns String |
MTD Core call this member when it finishes adding all textboxes of the page to rendering plug-in.
Plug-in should render the text and return it to Core.
|
CheckSettings |
no parameterts; returns nothing |
Call this method after a series of ValueNoCheck done to perform values (mutual) check and update plug-in UI state.
|
InitSettings |
no parameterts; returns nothing |
Core calls this method when there is no configuration for current printer loaded. Plug-in must update its internal settings and UI.
|
_IMTD_FPlugin_Events interface:
Method |
Parameters |
Description |
OnChangeParam |
String plugin, String param, VARIANT val |
When some plug-in parameter has changed via user interface, plug-in informs about that with OnChangeParam event.
"plugin" is internal name of plug-in, "param" is a name of changed parameter, "val" is a new value of parameter.
|
Rendering plug-in working scheme
- UI starts and loads plug-ins. It subscribes to _IMTD_FPlugin_Events events interface.
- UI gets Layout property. According to Layout parameters, it reads appropriate FormatParam properties from Core and sets
as a Values of plug-in (using ValueNoCheck property and calls CheckSettings).
- Core creates plug-ins too, but it does not subscribe to events.
- Core gets Layout property. According to Layout parameters, it reads saved values from configuration (registry) and sets
as Values of plug-in (using ValueNoCheck property and calls CheckSettings). If configuration for current printer does not exist, Core calls InitSettings.
Remark: UI and Core may start each other, but the final situation does not change: Core reads settings and sets plug-in properties first, then
UI reads these properties and sets them to its "own" plug-ins.
There are two sets of plug-ins exists in the scheme, because UI and Core are separate processes.
Interactive job cycle:
- User changes settings of plug-in. Plug-in updates its internal state and raises OnChangeParam to UI.
- In responce, UI sets appropriate Core property with FormatParam. In result, all parameters are in sync.
Rendering job cycle. Job of rendering plug-in is page-oriented.
- When Core has complete page to render, it calls StartPage method.
- After that, it feeds plug-in with all textboxes belonging to this page.
- Finally, Core calls Render method and gets rendered text to its storage.
- If Core performs SaveAll procedure, after rendering all pages, it calls StartDoc and EndDoc, inserts these pages into its internal storage
and saves its contents to chosen destinations.
Miraplacid Text Driver Transport plug-ins.
Transport plug-ins are Text Driver components intended saving rendered text pages to some destination (file, URL) using some transport protocol (file, FTP, HTTP).
Transport plug-ins are AcitveX components which implements all standard visual ActiveX component interfaces.
Additionally, it must obey the following requirements:
- It must be included into "Miraplacid Text Driver Transport Plug-ins" COM category (3B71E527-6CFD-41d3-ABDF-280EF6BB077C), but not create it.
- It must implement IMTD_TPLUGIN interface (515485DA-9BDB-4552-9D00-FA5C11A9FB6C) and realize _IMTD_TPlugin_Events connection point dispinterface (05EBA977-C40C-47f7-9A9E-6CED35615557).
- It must not register its own type library. Ready for use type library provided in imtd_tplugin.dll.
- Default write-only property docname may be used in transport plug-in to capture this setting from UI.
IMTD_TPLUGIN interface:
Property |
Type |
Description |
Value |
Variant |
(Read/Write) Any properties that your plug-in may have. Some of them may be saved into configuration in registry and restored from it.
|
ValueNoCheck |
Variant |
(Write Only) The same as Value, but does not check value itself or against other values and does not update UI.
Use to prevent update relative settings in a wrong order. When all the settings updated, call CheckSettings method.
|
Name |
String |
(Read Only) Plug-in name (short).
|
Layout |
String |
(Read Only) This string contains a list of properties (Values) which should be saved inconfiguration or restored from it.
Format of this string is: "Bparam1,Lparam2,BParam3", where "B" and "L" are prefixes meaning type of parameter (BSTR and Long accordingly). Parameter names should be separated by commas. Spaces are not allowed.
|
Method |
Parameters |
Description |
Start |
None |
MTD Core call this member when it begins saving text page(s). Plug-in may update its internal state and prepare resources.
|
Process |
IRenderedCollection coll, BOOL saveall, Number page_id |
MTD Core calls this method once regardless of number of pages to save. "coll" parameter is an interface provided by Core which allows plug-in to retrieve pages from Core storage.
"saveall" = true - save all pages into destination; otherwise plug-in must use page_id to retrieve particular page.
"page_id" is current page number for save if saveall is false.
|
End |
None |
MTD Core call this member on end of saving to let plug-in free used resources and update its state.
|
CheckSettings |
Number |
Call this method with parameter = 0 after a series of ValueNoCheck done to perform values (mutual) check and update plug-in UI state.
Other values of parameter is for plug-ins which deals with printers. If some plug-in will not need this information, it may ignore calls with values
other than 0 and return immediately.
If parameter = 1 - default printer changed. Plug-in may just update visual representation of its printer list.
If parameter = 2 - some printer added/removed. Plug-in must reload printer list and update all settings.
|
InitSettings |
no parameterts; returns nothing |
Core calls this method when there is no configuration for current printer loaded. Plug-in must update its internal settings and UI.
|
_IMTD_TPlugin_Events interface:
Method |
Parameters |
Description |
OnChangeParam |
String plugin, String param, VARIANT val |
When some plug-in parameter has changed via user interface, plug-in informs about that with OnChangeParam event.
"plugin" is internal name of plug-in, "param" is a name of changed parameter, "val" is a new value of parameter.
|
OnError |
String plugin, String error_message |
When some error happens during saving the text, plug-in should raise OnError event.
|
OnProgress |
String plugin, Number value |
Plug-in should raise this event periodically during saving process.
Value is the value of progress indicator (0 - 100).
|
IRenderedCollection Core interface:
Property |
Type |
Description |
Count |
Number |
(Read Only) Number of pages in document.
|
Unicode |
Number |
(Read Only) Returns TRUE if the current codepage is Unicode and Unicode prefix option is ON.
Plug-ins should use this property before saving all the pages, i.e. should send Unicode prefix (0xfeff) into its output stream before all other content.
|
Method |
Parameters |
Description |
Item |
Number index; returns VARIANT |
With this method, plug-in receives page content identified by "index".
Methods makes all necessary processing with page (end-of-line conversion, translation into needed codepage and page breaks insertion)
and provides a result as a VARIANT containing one-dimension SAFEARRAY of bytes.
|
GetItem |
Number index; returns String |
In some cases, plug-in does not need to have processed result.
In this case, it should call GetItem method to get just Unicode string of rendered page.
Examples of such plug-ins are Clipboard and Printer.
|
ItemSize |
Number index; returns Number |
Some plug-ins need to know page size before sending actual content to destination because
transport protocol requires size to be indicated before body; for example, HTTP plug-in.
This method returns size of particular page in bytes, taking into account all necessary transformations.
|
TranslateString |
String input, Number page_id, Number translate_flag; returns Number page_flag (actually fills pointer to long) and String output (out, retval) value |
Translates string possibly containing special tags and replaces these tags with their actual values.
page_id provided by caller because several plug-ins may work with different pages simultaneously. If translate_flag is not 0, this method changes unsafe characters (which cannot be used in filenames) to underscores when replaces tags.
|
Transport plug-in working scheme
- UI starts and loads plug-ins. It subscribes to _IMTD_TPlugin_Events events interface.
- UI gets Layout property. According to Layout parameters, it reads appropriate TransportParam properties from Core and sets
as a Values of plug-in (using ValueNoCheck property and calls CheckSettings).
- Core creates plug-ins and subscribes to events. UI listens OnParamChange event; Core listens other events: OnError and OnProgress.
- Core gets Layout property. According to Layout parameters, it reads saved values from configuration (registry) and sets
as Values of plug-in (using ValueNoCheck property and calls CheckSettings). If configuration for current printer does not exist, Core calls InitSettings.
Remark: UI and Core may start each other, but the final situation does not change: Core reads settings and sets plug-in properties first, then
UI reads these properties and sets them to its "own" plug-ins.
There are two sets of plug-ins exists in the scheme, because UI and Core are separate processes.
Interactive job cycle:
- User changes settings of plug-in. Plug-in updates its internal state and raises OnChangeParam to UI.
- In responce, UI sets appropriate Core property with TrandportParam. In result, all parameters are in sync.
Saving job cycle.
- In response to Save or SaveAll method call, Core initiates saving procedure. Several plug-ins may work at the same time.
Care calls Start method of each plug-in.
- After that, it calls Process method with appropriate parameters. During this call, plug-ins may call TranslateString method provided by Core.
- Finally, Core calls End method.
See also:
|
|
|