Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4128031

Toolkit.getPrintJob() returns a valid reference even when cancel was clicked

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.1.7
    • 1.2.0
    • client-libs
    • None
    • b01
    • b01
    • x86
    • windows_nt
    • Verified

        On Win32 the getPrintJob() call will bring up a dialog. Even after 'cancel' was clicked on this dialog the method returns with something valid. This makes it impossible to figure out when 'cancel' was selected.

        Run the attached test case. Even after clicking 'cancel', the dimensions are being printed to the screen.

        Here is a test case:

        import java.awt.*;

        public class TestApp {
        public static void main(String args[]) {
        Frame f = new Frame("Test Case");
        f.pack();

        PrintJob pj =
        f.getToolkit().getPrintJob(f, "PrintJob1", null);

        if (pj != null) {
        System.out.println("Page dimensions: " +
        pj.getPageDimension());
        Graphics g = pj.getGraphics();
        g.fillOval(50, 50, 150, 100);
        g.dispose();
        pj.end();
        }
        System.exit(0);
        }
        }

              dmendenhsunw David Mendenhall (Inactive)
              rkarsunw Ralph Kar (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: