-
Bug
-
Resolution: Fixed
-
P4
-
1.2.0
-
None
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2019991 | 1.2.0 | David Mendenhall | P4 | Resolved | Fixed | 1.2beta4 |
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);
}
}
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);
}
}
- backported by
-
JDK-2019991 Toolkit.getPrintJob() returns a valid reference even when cancel was clicked
-
- Resolved
-