Lines Matching refs:pageAttributes

212     private PageAttributes pageAttributes;  field in PrintJob2D
302 this.pageAttributes = new PageAttributes(); in PrintJob2D()
305 this.jobAttributes, this.pageAttributes); in PrintJob2D()
310 PageAttributes pageAttributes) { in PrintJob2D() argument
311 initPrintJob2D(frame, doctitle, jobAttributes, pageAttributes); in PrintJob2D()
316 PageAttributes pageAttributes) { in initPrintJob2D() argument
333 this.pageAttributes = (pageAttributes != null) in initPrintJob2D()
334 ? pageAttributes : new PageAttributes(); in initPrintJob2D()
348 int[] res = this.pageAttributes.getPrinterResolution(); in initPrintJob2D()
466 if (pageAttributes.getOrigin()==OriginType.PRINTABLE) { in printDialog()
572 pageAttributes.setColor(ColorType.COLOR); in updateAttributes()
574 pageAttributes.setColor(ColorType.MONOCHROME); in updateAttributes()
580 pageAttributes.setOrientationRequested( in updateAttributes()
583 pageAttributes.setOrientationRequested( in updateAttributes()
589 pageAttributes.setPrintQuality(PrintQualityType.DRAFT); in updateAttributes()
591 pageAttributes.setPrintQuality(PrintQualityType.HIGH); in updateAttributes()
593 pageAttributes.setPrintQuality(PrintQualityType.NORMAL); in updateAttributes()
601 pageAttributes.setMedia(mType); in updateAttributes()
626 pageAttributes.getColor()+ in debugPrintAttributes()
628 pageAttributes.getOrientationRequested()+ in debugPrintAttributes()
629 "\nquality "+pageAttributes.getPrintQuality()+ in debugPrintAttributes()
630 "\nMedia2 "+pageAttributes.getMedia() in debugPrintAttributes()
737 if (pageAttributes.getColor() == ColorType.COLOR) { in copyAttributes()
744 if (pageAttributes.getOrientationRequested() == in copyAttributes()
753 MediaType media = pageAttributes.getMedia(); in copyAttributes()
760 pageAttributes.getPrintQuality(); in copyAttributes()
867 if (pageAttributes != null && in getPageDimension()
868 pageAttributes.getOrigin()==OriginType.PRINTABLE) { in getPageDimension()
880 if (pageAttributes != null) { in getPageResolutionInternal()
881 int []res = pageAttributes.getPrinterResolution(); in getPageResolutionInternal()
1204 pageAttributes.setOrientationRequested( in translateInputProps()
1207 pageAttributes.setOrientationRequested( in translateInputProps()
1214 pageAttributes.setMedia(SIZES[MediaType.LETTER.hashCode()]); in translateInputProps()
1216 pageAttributes.setMedia(SIZES[MediaType.LEGAL.hashCode()]); in translateInputProps()
1218 pageAttributes.setMedia(SIZES[MediaType.EXECUTIVE.hashCode()]); in translateInputProps()
1220 pageAttributes.setMedia(SIZES[MediaType.A4.hashCode()]); in translateInputProps()
1252 (pageAttributes.getOrientationRequested() == in translateOutputProps()
1255 MediaType media = SIZES[pageAttributes.getMedia().hashCode()]; in translateOutputProps()