Lines Matching refs:paper

231      * Used to check if the paper size has changed such that the
232 * implementation needs to emit the new paper size information
235 * Its strictly the dimensions of the paper that we will check.
338 * Not adjusted for orientation of the paper.
345 * Not adjusted for orientation of the paper.
352 * Not adjusted for orientation of the paper.
359 * Not adjusted for orientation of the paper.
366 * Not adjusted for orientation of the paper.
373 * Not adjusted for orientation of the paper.
730 Paper paper = new Paper();
734 paper.setSize(w, h);
768 paper.setImageableArea(ix, iy, iw, ih);
769 page.setPaper(paper);
1171 Paper paper = pf.getPaper();
1209 paper.setSize(paperWid, paperHgt);
1211 paper.setImageableArea(72.0, 72.0,
1226 paper.setImageableArea(printableArea[0], printableArea[1],
1230 pf.setPaper(paper);
1235 // we need to save paper info
1486 * paper size and imageable area for that paper size.
1504 /* Assume any +ve values are legal. Overall paper dimensions
1505 * take precedence. Make sure imageable area fits on the paper.
1538 * Platform subclasses which can access the actual default paper size
1570 /* Default to A4 paper outside North America.
1848 Paper paper = page.getPaper();
1853 double left = paper.getImageableX();
1854 double top = paper.getImageableY();
1855 double width = paper.getImageableWidth();
1856 double height = paper.getImageableHeight();
1857 paper.setImageableArea(paper.getWidth()-left-width,
1858 paper.getHeight()-top-height,
1860 page.setPaper(paper);
1875 new Rectangle2D.Double(paper.getImageableX() * xScale,
1876 paper.getImageableY() * yScale,
1877 paper.getImageableWidth() * xScale,
1878 paper.getImageableHeight() * yScale);
1915 int deviceLeft = (int)Math.rint(paper.getImageableX() * xScale);
1916 int deviceTop = (int)Math.rint(paper.getImageableY() * yScale);
1956 peekGraphics.translate(-getPhysicalPrintableX(paper) / xScale,
1957 -getPhysicalPrintableY(paper) / yScale);
1967 * those of the paper, not the page format, as we want to describe
1972 paper.getWidth(), paper.getHeight());
1978 /* We need to check if the paper size is changed.
1981 * skipped. So we have to look at the actual last paper size used.
2004 pathGraphics.translate(-getPhysicalPrintableX(paper) / xScale,
2005 -getPhysicalPrintableY(paper) / yScale);
2074 int deviceAddressableX = (int)getPhysicalPrintableX(paper);
2075 int deviceAddressableY = (int)getPhysicalPrintableY(paper);