Lines Matching refs:pageAttributes

211     private PageAttributes pageAttributes;  field in PrintJob2D
301 this.pageAttributes = new PageAttributes(); in PrintJob2D()
304 this.jobAttributes, this.pageAttributes); in PrintJob2D()
309 PageAttributes pageAttributes) { in PrintJob2D() argument
310 initPrintJob2D(frame, doctitle, jobAttributes, pageAttributes); in PrintJob2D()
315 PageAttributes pageAttributes) { in initPrintJob2D() argument
332 this.pageAttributes = (pageAttributes != null) in initPrintJob2D()
333 ? pageAttributes : new PageAttributes(); in initPrintJob2D()
347 int[] res = this.pageAttributes.getPrinterResolution(); in initPrintJob2D()
465 if (pageAttributes.getOrigin()==OriginType.PRINTABLE) { in printDialog()
549 pageAttributes.setColor(ColorType.COLOR); in updateAttributes()
551 pageAttributes.setColor(ColorType.MONOCHROME); in updateAttributes()
557 pageAttributes.setOrientationRequested( in updateAttributes()
560 pageAttributes.setOrientationRequested( in updateAttributes()
566 pageAttributes.setPrintQuality(PrintQualityType.DRAFT); in updateAttributes()
568 pageAttributes.setPrintQuality(PrintQualityType.HIGH); in updateAttributes()
570 pageAttributes.setPrintQuality(PrintQualityType.NORMAL); in updateAttributes()
578 pageAttributes.setMedia(mType); in updateAttributes()
603 pageAttributes.getColor()+ in debugPrintAttributes()
605 pageAttributes.getOrientationRequested()+ in debugPrintAttributes()
606 "\nquality "+pageAttributes.getPrintQuality()+ in debugPrintAttributes()
607 "\nMedia2 "+pageAttributes.getMedia() in debugPrintAttributes()
714 if (pageAttributes.getColor() == ColorType.COLOR) { in copyAttributes()
721 if (pageAttributes.getOrientationRequested() == in copyAttributes()
730 MediaType media = pageAttributes.getMedia(); in copyAttributes()
737 pageAttributes.getPrintQuality(); in copyAttributes()
844 if (pageAttributes != null && in getPageDimension()
845 pageAttributes.getOrigin()==OriginType.PRINTABLE) { in getPageDimension()
857 if (pageAttributes != null) { in getPageResolutionInternal()
858 int []res = pageAttributes.getPrinterResolution(); in getPageResolutionInternal()
1179 pageAttributes.setOrientationRequested( in translateInputProps()
1182 pageAttributes.setOrientationRequested( in translateInputProps()
1189 pageAttributes.setMedia(SIZES[MediaType.LETTER.hashCode()]); in translateInputProps()
1191 pageAttributes.setMedia(SIZES[MediaType.LEGAL.hashCode()]); in translateInputProps()
1193 pageAttributes.setMedia(SIZES[MediaType.EXECUTIVE.hashCode()]); in translateInputProps()
1195 pageAttributes.setMedia(SIZES[MediaType.A4.hashCode()]); in translateInputProps()
1227 (pageAttributes.getOrientationRequested() == in translateOutputProps()
1230 MediaType media = SIZES[pageAttributes.getMedia().hashCode()]; in translateOutputProps()