Search in sources :

Example 11 with HeadlessException

use of java.awt.HeadlessException in project jdk8u_jdk by JetBrains.

the class ServiceUI method printDialog.

/**
     * Presents a dialog to the user for selecting a print service (printer).
     * It is displayed at the location specified by the application and
     * is modal.
     * If the specification is invalid or would make the dialog not visible it
     * will be displayed at a location determined by the implementation.
     * The dialog blocks its calling thread and is application modal.
     * <p>
     * The dialog may include a tab panel with custom UI lazily obtained from
     * the PrintService's ServiceUIFactory when the PrintService is browsed.
     * The dialog will attempt to locate a MAIN_UIROLE first as a JComponent,
     * then as a Panel. If there is no ServiceUIFactory or no matching role
     * the custom tab will be empty or not visible.
     * <p>
     * The dialog returns the print service selected by the user if the user
     * OK's the dialog and null if the user cancels the dialog.
     * <p>
     * An application must pass in an array of print services to browse.
     * The array must be non-null and non-empty.
     * Typically an application will pass in only PrintServices capable
     * of printing a particular document flavor.
     * <p>
     * An application may pass in a PrintService to be initially displayed.
     * A non-null parameter must be included in the array of browsable
     * services.
     * If this parameter is null a service is chosen by the implementation.
     * <p>
     * An application may optionally pass in the flavor to be printed.
     * If this is non-null choices presented to the user can be better
     * validated against those supported by the services.
     * An application must pass in a PrintRequestAttributeSet for returning
     * user choices.
     * On calling the PrintRequestAttributeSet may be empty, or may contain
     * application-specified values.
     * <p>
     * These are used to set the initial settings for the initially
     * displayed print service. Values which are not supported by the print
     * service are ignored. As the user browses print services, attributes
     * and values are copied to the new display. If a user browses a
     * print service which does not support a particular attribute-value, the
     * default for that service is used as the new value to be copied.
     * <p>
     * If the user cancels the dialog, the returned attributes will not reflect
     * any changes made by the user.
     *
     * A typical basic usage of this method may be :
     * <pre>{@code
     * PrintService[] services = PrintServiceLookup.lookupPrintServices(
     *                            DocFlavor.INPUT_STREAM.JPEG, null);
     * PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet();
     * if (services.length > 0) {
     *    PrintService service =  ServiceUI.printDialog(null, 50, 50,
     *                                               services, services[0],
     *                                               null,
     *                                               attributes);
     *    if (service != null) {
     *     ... print ...
     *    }
     * }
     * }</pre>
     * <p>

     * @param gc used to select screen. null means primary or default screen.
     * @param x location of dialog including border in screen coordinates
     * @param y location of dialog including border in screen coordinates
     * @param services to be browsable, must be non-null.
     * @param defaultService - initial PrintService to display.
     * @param flavor - the flavor to be printed, or null.
     * @param attributes on input is the initial application supplied
     * preferences. This cannot be null but may be empty.
     * On output the attributes reflect changes made by the user.
     * @return print service selected by the user, or null if the user
     * cancelled the dialog.
     * @throws HeadlessException if GraphicsEnvironment.isHeadless()
     * returns true.
     * @throws IllegalArgumentException if services is null or empty,
     * or attributes is null, or the initial PrintService is not in the
     * list of browsable services.
     */
public static PrintService printDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, PrintService defaultService, DocFlavor flavor, PrintRequestAttributeSet attributes) throws HeadlessException {
    int defaultIndex = -1;
    if (GraphicsEnvironment.isHeadless()) {
        throw new HeadlessException();
    } else if ((services == null) || (services.length == 0)) {
        throw new IllegalArgumentException("services must be non-null " + "and non-empty");
    } else if (attributes == null) {
        throw new IllegalArgumentException("attributes must be non-null");
    }
    if (defaultService != null) {
        for (int i = 0; i < services.length; i++) {
            if (services[i].equals(defaultService)) {
                defaultIndex = i;
                break;
            }
        }
        if (defaultIndex < 0) {
            throw new IllegalArgumentException("services must contain " + "defaultService");
        }
    } else {
        defaultIndex = 0;
    }
    // For now we set owner to null. In the future, it may be passed
    // as an argument.
    Window owner = null;
    Rectangle gcBounds = (gc == null) ? GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration().getBounds() : gc.getBounds();
    ServiceDialog dialog;
    if (owner instanceof Frame) {
        dialog = new ServiceDialog(gc, x + gcBounds.x, y + gcBounds.y, services, defaultIndex, flavor, attributes, (Frame) owner);
    } else {
        dialog = new ServiceDialog(gc, x + gcBounds.x, y + gcBounds.y, services, defaultIndex, flavor, attributes, (Dialog) owner);
    }
    Rectangle dlgBounds = dialog.getBounds();
    // get union of all GC bounds
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gs = ge.getScreenDevices();
    for (int j = 0; j < gs.length; j++) {
        gcBounds = gcBounds.union(gs[j].getDefaultConfiguration().getBounds());
    }
    // if portion of dialog is not within the gc boundary
    if (!gcBounds.contains(dlgBounds)) {
        // put in the center relative to parent frame/dialog
        dialog.setLocationRelativeTo(owner);
    }
    dialog.show();
    if (dialog.getStatus() == ServiceDialog.APPROVE) {
        PrintRequestAttributeSet newas = dialog.getAttributes();
        Class dstCategory = Destination.class;
        Class amCategory = SunAlternateMedia.class;
        Class fdCategory = Fidelity.class;
        if (attributes.containsKey(dstCategory) && !newas.containsKey(dstCategory)) {
            attributes.remove(dstCategory);
        }
        if (attributes.containsKey(amCategory) && !newas.containsKey(amCategory)) {
            attributes.remove(amCategory);
        }
        attributes.addAll(newas);
        Fidelity fd = (Fidelity) attributes.get(fdCategory);
        if (fd != null) {
            if (fd == Fidelity.FIDELITY_TRUE) {
                removeUnsupportedAttributes(dialog.getPrintService(), flavor, attributes);
            }
        }
    }
    return dialog.getPrintService();
}
Also used : Window(java.awt.Window) ServiceDialog(sun.print.ServiceDialog) Destination(javax.print.attribute.standard.Destination) Fidelity(javax.print.attribute.standard.Fidelity) Frame(java.awt.Frame) HeadlessException(java.awt.HeadlessException) Rectangle(java.awt.Rectangle) SunAlternateMedia(sun.print.SunAlternateMedia) GraphicsEnvironment(java.awt.GraphicsEnvironment) Point(java.awt.Point) PrintRequestAttributeSet(javax.print.attribute.PrintRequestAttributeSet) GraphicsDevice(java.awt.GraphicsDevice) ServiceDialog(sun.print.ServiceDialog) Dialog(java.awt.Dialog)

Example 12 with HeadlessException

use of java.awt.HeadlessException in project jdk8u_jdk by JetBrains.

the class PSPrinterJob method printDialog.

/* Instance Methods */
/**
     * Presents the user a dialog for changing properties of the
     * print job interactively.
     * @returns false if the user cancels the dialog and
     *          true otherwise.
     * @exception HeadlessException if GraphicsEnvironment.isHeadless()
     * returns true.
     * @see java.awt.GraphicsEnvironment#isHeadless
     */
public boolean printDialog() throws HeadlessException {
    if (GraphicsEnvironment.isHeadless()) {
        throw new HeadlessException();
    }
    if (attributes == null) {
        attributes = new HashPrintRequestAttributeSet();
    }
    attributes.add(new Copies(getCopies()));
    attributes.add(new JobName(getJobName(), null));
    boolean doPrint = false;
    DialogTypeSelection dts = (DialogTypeSelection) attributes.get(DialogTypeSelection.class);
    if (dts == DialogTypeSelection.NATIVE) {
        // Remove DialogTypeSelection.NATIVE to prevent infinite loop in
        // RasterPrinterJob.
        attributes.remove(DialogTypeSelection.class);
        doPrint = printDialog(attributes);
        // restore attribute
        attributes.add(DialogTypeSelection.NATIVE);
    } else {
        doPrint = printDialog(attributes);
    }
    if (doPrint) {
        JobName jobName = (JobName) attributes.get(JobName.class);
        if (jobName != null) {
            setJobName(jobName.getValue());
        }
        Copies copies = (Copies) attributes.get(Copies.class);
        if (copies != null) {
            setCopies(copies.getValue());
        }
        Destination dest = (Destination) attributes.get(Destination.class);
        if (dest != null) {
            try {
                mDestType = RasterPrinterJob.FILE;
                mDestination = (new File(dest.getURI())).getPath();
            } catch (Exception e) {
                mDestination = "out.ps";
            }
        } else {
            mDestType = RasterPrinterJob.PRINTER;
            PrintService pServ = getPrintService();
            if (pServ != null) {
                mDestination = pServ.getName();
                if (isMac) {
                    PrintServiceAttributeSet psaSet = pServ.getAttributes();
                    if (psaSet != null) {
                        mDestination = psaSet.get(PrinterName.class).toString();
                    }
                }
            }
        }
    }
    return doPrint;
}
Also used : Destination(javax.print.attribute.standard.Destination) HeadlessException(java.awt.HeadlessException) Copies(javax.print.attribute.standard.Copies) JobName(javax.print.attribute.standard.JobName) File(java.io.File) HashPrintRequestAttributeSet(javax.print.attribute.HashPrintRequestAttributeSet) HeadlessException(java.awt.HeadlessException) CharConversionException(java.io.CharConversionException) PrinterException(java.awt.print.PrinterException) PrinterIOException(java.awt.print.PrinterIOException) IOException(java.io.IOException) PrintServiceAttributeSet(javax.print.attribute.PrintServiceAttributeSet) DialogTypeSelection(javax.print.attribute.standard.DialogTypeSelection) PrintService(javax.print.PrintService) StreamPrintService(javax.print.StreamPrintService)

Example 13 with HeadlessException

use of java.awt.HeadlessException in project jdk8u_jdk by JetBrains.

the class RasterPrinterJob method pageDialog.

/**
     * Display a dialog to the user allowing the modification of a
     * PageFormat instance.
     * The <code>page</code> argument is used to initialize controls
     * in the page setup dialog.
     * If the user cancels the dialog, then the method returns the
     * original <code>page</code> object unmodified.
     * If the user okays the dialog then the method returns a new
     * PageFormat object with the indicated changes.
     * In either case the original <code>page</code> object will
     * not be modified.
     * @param     page    the default PageFormat presented to the user
     *                    for modification
     * @return    the original <code>page</code> object if the dialog
     *            is cancelled, or a new PageFormat object containing
     *            the format indicated by the user if the dialog is
     *            acknowledged
     * @exception HeadlessException if GraphicsEnvironment.isHeadless()
     * returns true.
     * @see java.awt.GraphicsEnvironment#isHeadless
     * @since     1.2
     */
public PageFormat pageDialog(PageFormat page) throws HeadlessException {
    if (GraphicsEnvironment.isHeadless()) {
        throw new HeadlessException();
    }
    final GraphicsConfiguration gc = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration();
    PrintService service = (PrintService) java.security.AccessController.doPrivileged(new java.security.PrivilegedAction() {

        public Object run() {
            PrintService service = getPrintService();
            if (service == null) {
                ServiceDialog.showNoPrintService(gc);
                return null;
            }
            return service;
        }
    });
    if (service == null) {
        return page;
    }
    updatePageAttributes(service, page);
    PageFormat newPage = null;
    DialogTypeSelection dts = (DialogTypeSelection) attributes.get(DialogTypeSelection.class);
    if (dts == DialogTypeSelection.NATIVE) {
        // Remove DialogTypeSelection.NATIVE to prevent infinite loop in
        // RasterPrinterJob.
        attributes.remove(DialogTypeSelection.class);
        newPage = pageDialog(attributes);
        // restore attribute
        attributes.add(DialogTypeSelection.NATIVE);
    } else {
        newPage = pageDialog(attributes);
    }
    if (newPage == null) {
        return page;
    } else {
        return newPage;
    }
}
Also used : PageFormat(java.awt.print.PageFormat) HeadlessException(java.awt.HeadlessException) GraphicsConfiguration(java.awt.GraphicsConfiguration) PrintService(javax.print.PrintService) StreamPrintService(javax.print.StreamPrintService) DialogTypeSelection(javax.print.attribute.standard.DialogTypeSelection)

Example 14 with HeadlessException

use of java.awt.HeadlessException in project jdk8u_jdk by JetBrains.

the class WPrinterJob method pageDialog.

/* Instance Methods */
/**
     * Display a dialog to the user allowing the modification of a
     * PageFormat instance.
     * The <code>page</code> argument is used to initialize controls
     * in the page setup dialog.
     * If the user cancels the dialog, then the method returns the
     * original <code>page</code> object unmodified.
     * If the user okays the dialog then the method returns a new
     * PageFormat object with the indicated changes.
     * In either case the original <code>page</code> object will
     * not be modified.
     * @param     page    the default PageFormat presented to the user
     *                    for modification
     * @return    the original <code>page</code> object if the dialog
     *            is cancelled, or a new PageFormat object containing
     *            the format indicated by the user if the dialog is
     *            acknowledged
     * @exception HeadlessException if GraphicsEnvironment.isHeadless()
     * returns true.
     * @see java.awt.GraphicsEnvironment#isHeadless
     * @since     JDK1.2
     */
@Override
public PageFormat pageDialog(PageFormat page) throws HeadlessException {
    if (GraphicsEnvironment.isHeadless()) {
        throw new HeadlessException();
    }
    if (!(getPrintService() instanceof Win32PrintService)) {
        return super.pageDialog(page);
    }
    PageFormat pageClone = (PageFormat) page.clone();
    boolean result = false;
    /*
         * Fix for 4507585: show the native modal dialog the same way printDialog() does so
         * that it won't block event dispatching when called on EventDispatchThread.
         */
    WPageDialog dialog = new WPageDialog((Frame) null, this, pageClone, null);
    dialog.setRetVal(false);
    dialog.setVisible(true);
    result = dialog.getRetVal();
    dialog.dispose();
    // myService => current PrintService
    if (result && (myService != null)) {
        // It's possible that current printer is changed through
        // the "Printer..." button so we query again from native.
        String printerName = getNativePrintService();
        if (!myService.getName().equals(printerName)) {
            // we update the current PrintService
            try {
                setPrintService(Win32PrintServiceLookup.getWin32PrintLUS().getPrintServiceByName(printerName));
            } catch (PrinterException e) {
            }
        }
        // Update attributes, this will preserve the page settings.
        //  - same code as in RasterPrinterJob.java
        updatePageAttributes(myService, pageClone);
        return pageClone;
    } else {
        return page;
    }
}
Also used : Win32PrintService(sun.print.Win32PrintService) PageFormat(java.awt.print.PageFormat) HeadlessException(java.awt.HeadlessException) PrinterException(java.awt.print.PrinterException)

Example 15 with HeadlessException

use of java.awt.HeadlessException in project jgnash by ccavanaugh.

the class CursorUtils method getCursor.

/**
     * Returns a custom cursor object of the type specified.
     *
     * @param type the type of the custom cursor as defined in this class
     * @return the specified custom cursor
     * @throws IllegalArgumentException if the specified cursor type is
     *                                  invalid
     */
public static Cursor getCursor(int type) {
    if (type < ZOOM_IN || type > ZOOM_OUT) {
        throw new IllegalArgumentException("illegal cursor type");
    }
    if (predefined[type] == null) {
        try {
            // See comment above the static variable.
            final Object[] props = cursorProperties[type];
            final String name = (String) props[0];
            final String resource = (String) props[1];
            final int[] spot = (int[]) props[2];
            final Point point = new Point(spot[0], spot[1]);
            final Toolkit tk = Toolkit.getDefaultToolkit();
            Image image = IconUtils.getImage(resource);
            predefined[type] = tk.createCustomCursor(image, point, name);
        } catch (IndexOutOfBoundsException | HeadlessException e) {
            // this would be an error in the properties
            predefined[type] = Cursor.getDefaultCursor();
            throw new RuntimeException(e);
        }
    }
    return predefined[type];
}
Also used : HeadlessException(java.awt.HeadlessException) Toolkit(java.awt.Toolkit) Point(java.awt.Point) Image(java.awt.Image)

Aggregations

HeadlessException (java.awt.HeadlessException)29 IOException (java.io.IOException)9 File (java.io.File)6 GraphicsConfiguration (java.awt.GraphicsConfiguration)5 Point (java.awt.Point)5 PrintService (javax.print.PrintService)5 StreamPrintService (javax.print.StreamPrintService)5 Rectangle (java.awt.Rectangle)4 PrinterException (java.awt.print.PrinterException)4 DialogTypeSelection (javax.print.attribute.standard.DialogTypeSelection)4 RandomString (edu.umass.cs.gnscommon.utils.RandomString)3 GraphicsDevice (java.awt.GraphicsDevice)3 GraphicsEnvironment (java.awt.GraphicsEnvironment)3 PageFormat (java.awt.print.PageFormat)3 Destination (javax.print.attribute.standard.Destination)3 Channel (com.jcraft.jsch.Channel)2 JSch (com.jcraft.jsch.JSch)2 JSchException (com.jcraft.jsch.JSchException)2 Session (com.jcraft.jsch.Session)2 UserInfo (com.jcraft.jsch.UserInfo)2