From: <doc...@us...> - 2007-06-18 21:35:54
|
Revision: 90 http://openpcl.svn.sourceforge.net/openpcl/?rev=90&view=rev Author: documentsystems Date: 2007-06-18 14:35:52 -0700 (Mon, 18 Jun 2007) Log Message: ----------- Howard Hoagland. Added 2 ints in 2 classes that will be used for "Print Legal first then Letter" Modified Paths: -------------- openpcl/src/com/openpcl/viewer/printing/PosPrintBufferedImage.java openpcl/src/com/openpcl/viewer/printing/PosPrintPages.java Modified: openpcl/src/com/openpcl/viewer/printing/PosPrintBufferedImage.java =================================================================== --- openpcl/src/com/openpcl/viewer/printing/PosPrintBufferedImage.java 2007-06-15 05:07:43 UTC (rev 89) +++ openpcl/src/com/openpcl/viewer/printing/PosPrintBufferedImage.java 2007-06-18 21:35:52 UTC (rev 90) @@ -39,6 +39,8 @@ private static final String sProgressBarBaseString = "Generating page: "; private static final String sCantAllocate = "Can't allocate memory for temporary image used for printing."; private double mPrintScale = 72.0d / 300.0d; // making width and height using 72 / 300 scale + private int mNumberOfPrintPasses = 1; + private int mCurrentPrintPassNumber = 1; public PosPrintBufferedImage(PosView pPosView) { super(); Modified: openpcl/src/com/openpcl/viewer/printing/PosPrintPages.java =================================================================== --- openpcl/src/com/openpcl/viewer/printing/PosPrintPages.java 2007-06-15 05:07:43 UTC (rev 89) +++ openpcl/src/com/openpcl/viewer/printing/PosPrintPages.java 2007-06-18 21:35:52 UTC (rev 90) @@ -71,6 +71,8 @@ public static byte sbFF = 0xC; // Form Feed ( char(12) ) private PriModifyPclBytes mPriModifyPclBytes = null; private PclParser mPclParser = null; + private int mNumberOfPrintPasses = 1; + private int mCurrentPrintPassNumber = 1; /** * Constructor This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |