0N/A/*
2362N/A * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage sun.print;
0N/A
0N/Aimport java.awt.Graphics;
0N/Aimport java.awt.PrintGraphics;
0N/Aimport java.awt.PrintJob;
0N/A
0N/A/**
0N/A * A subclass of Graphics that can be printed to. The
0N/A * graphics calls are forwared to another Graphics instance
0N/A * that does the actual rendering.
0N/A */
0N/A
0N/Apublic class ProxyPrintGraphics extends ProxyGraphics
0N/A implements PrintGraphics {
0N/A
0N/A private PrintJob printJob;
0N/A
0N/A public ProxyPrintGraphics(Graphics graphics, PrintJob thePrintJob) {
0N/A super(graphics);
0N/A printJob = thePrintJob;
0N/A }
0N/A
0N/A /**
0N/A * Returns the PrintJob object from which this PrintGraphics
0N/A * object originated.
0N/A */
0N/A public PrintJob getPrintJob() {
0N/A return printJob;
0N/A }
0N/A
0N/A /**
0N/A * Creates a new <code>Graphics</code> object that is
0N/A * a copy of this <code>Graphics</code> object.
0N/A * @return a new graphics context that is a copy of
0N/A * this graphics context.
0N/A */
0N/A public Graphics create() {
0N/A return new ProxyPrintGraphics(getGraphics().create(), printJob);
0N/A }
0N/A
0N/A
0N/A /**
0N/A * Creates a new <code>Graphics</code> object based on this
0N/A * <code>Graphics</code> object, but with a new translation and
0N/A * clip area.
0N/A * Refer to
0N/A * {@link sun.print.ProxyGraphics#createGraphics}
0N/A * for a complete description of this method.
0N/A * <p>
0N/A * @param x the <i>x</i> coordinate.
0N/A * @param y the <i>y</i> coordinate.
0N/A * @param width the width of the clipping rectangle.
0N/A * @param height the height of the clipping rectangle.
0N/A * @return a new graphics context.
0N/A * @see java.awt.Graphics#translate
0N/A * @see java.awt.Graphics#clipRect
0N/A */
0N/A public Graphics create(int x, int y, int width, int height) {
0N/A Graphics g = getGraphics().create(x, y, width, height);
0N/A return new ProxyPrintGraphics(g, printJob);
0N/A }
0N/A
0N/A public Graphics getGraphics() {
0N/A return super.getGraphics();
0N/A }
0N/A
0N/A
0N/A /* Spec implies dispose() should flush the page, but the implementation
0N/A * has in fact always done this on the getGraphics() call, thereby
0N/A * ensuring that multiple pages are cannot be rendered simultaneously.
0N/A * We will preserve that behaviour and there is consqeuently no need
0N/A * to take any action in this dispose method.
0N/A */
0N/A public void dispose() {
0N/A super.dispose();
0N/A }
0N/A
0N/A}