I need to support multiple monitors, but the printDialog and pageDialog methods in PrinterJob do not have arguments to either a GraphicContext or a Window/Frame/Dialog.
There is however a new method to popup a print dialog in 1.4 that could work on multiple monitors (haven't tried it yet). Which is ;
javax.print.ServiceUI.printDialog(GraphicsConfiguration gc, int x, int y,
PrintService[] services, PrintService defaultService,
DocFlavor flavor, PrintRequestAttributeSet attributes)However, there is no Page Setup dialog !
If you take a look at the code, there is a pageDialog() in there with similar arguments that is commented out which says. POSSIBLE FUTURE API.
Also, none of these dialogs take as an argument a Frame/Window/Dialog wihch would be nice for modality and ensuring the print window is always on top of your application.
Is this a bug, RFE, or I'm just missing something here?
Thanks
=========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA2D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
