From: <doc...@us...> - 2007-07-25 19:45:23
|
Revision: 117 http://openpcl.svn.sourceforge.net/openpcl/?rev=117&view=rev Author: documentsystems Date: 2007-07-25 12:45:22 -0700 (Wed, 25 Jul 2007) Log Message: ----------- Howard Hoagland. In IPluginHooksOpenPCL, added getFormNameForTreeNode() to implement "Print Form Names" on the print setup dialog. Modified Paths: -------------- openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java Modified: openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java =================================================================== --- openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java 2007-07-25 19:14:16 UTC (rev 116) +++ openpcl/src/com/openpcl/viewer/api/IPluginHooksOpenPCL.java 2007-07-25 19:45:22 UTC (rev 117) @@ -76,6 +76,9 @@ /** Get the PCL bytes for a tree node page. This is used for "Print PCL Direct" to send the actual PCL bytes to the printer. */ public byte[] getPclBytesForTreeNode(PosTreeNode pPosTreeNode); + /** Get the Form Name for a tree node page. Used for both print "PCL Direct" and for "Windows Print". */ + public String getFormNameForTreeNode(PosTreeNode pPosTreeNode); + /** Render the BufferedImage from the tree node */ public BufferedImage renderImageForPrintingFromTreeNode(PosTreeNode pPosTreeNode); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |