1 /*
   2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package sun.print;
  27 
  28 import java.awt.BorderLayout;
  29 import java.awt.Color;
  30 import java.awt.Component;
  31 import java.awt.Container;
  32 import java.awt.Dialog;
  33 import java.awt.FlowLayout;
  34 import java.awt.Frame;
  35 import java.awt.GraphicsConfiguration;
  36 import java.awt.GridBagLayout;
  37 import java.awt.GridBagConstraints;
  38 import java.awt.GridLayout;
  39 import java.awt.Insets;
  40 import java.awt.Toolkit;
  41 import java.awt.event.ActionEvent;
  42 import java.awt.event.ActionListener;
  43 import java.awt.event.FocusEvent;
  44 import java.awt.event.FocusListener;
  45 import java.awt.event.ItemEvent;
  46 import java.awt.event.ItemListener;
  47 import java.awt.event.WindowEvent;
  48 import java.awt.event.WindowAdapter;
  49 import java.awt.print.PrinterJob;
  50 import java.io.File;
  51 import java.io.FilePermission;
  52 import java.io.IOException;
  53 import java.net.URI;
  54 import java.net.URL;
  55 import java.text.DecimalFormat;
  56 import java.util.Locale;
  57 import java.util.ResourceBundle;
  58 import java.util.Vector;
  59 import javax.print.*;
  60 import javax.print.attribute.*;
  61 import javax.print.attribute.standard.*;
  62 import javax.swing.*;
  63 import javax.swing.border.Border;
  64 import javax.swing.border.EmptyBorder;
  65 import javax.swing.border.TitledBorder;
  66 import javax.swing.event.ChangeEvent;
  67 import javax.swing.event.ChangeListener;
  68 import javax.swing.event.DocumentEvent;
  69 import javax.swing.event.DocumentListener;
  70 import javax.swing.event.PopupMenuEvent;
  71 import javax.swing.event.PopupMenuListener;
  72 import javax.swing.text.NumberFormatter;
  73 import sun.print.SunPageSelection;
  74 import java.awt.event.KeyEvent;
  75 import java.net.URISyntaxException;
  76 import java.lang.reflect.Field;
  77 
  78 
  79 /**
  80  * A class which implements a cross-platform print dialog.
  81  *
  82  * @author  Chris Campbell
  83  */
  84 @SuppressWarnings("serial") // Superclass is not serializable across versions
  85 public class ServiceDialog extends JDialog implements ActionListener {
  86 
  87     /**
  88      * Waiting print status (user response pending).
  89      */
  90     public static final int WAITING = 0;
  91 
  92     /**
  93      * Approve print status (user activated "Print" or "OK").
  94      */
  95     public static final int APPROVE = 1;
  96 
  97     /**
  98      * Cancel print status (user activated "Cancel");
  99      */
 100     public static final int CANCEL = 2;
 101 
 102     private static final String strBundle = "sun.print.resources.serviceui";
 103     private static final Insets panelInsets = new Insets(6, 6, 6, 6);
 104     private static final Insets compInsets = new Insets(3, 6, 3, 6);
 105 
 106     private static ResourceBundle messageRB;
 107     private JTabbedPane tpTabs;
 108     private JButton btnCancel, btnApprove;
 109     private PrintService[] services;
 110     private int defaultServiceIndex;
 111     private PrintRequestAttributeSet asOriginal;
 112     private HashPrintRequestAttributeSet asCurrent;
 113     private PrintService psCurrent;
 114     private DocFlavor docFlavor;
 115     private int status;
 116 
 117     private ValidatingFileChooser jfc;
 118 
 119     private GeneralPanel pnlGeneral;
 120     private PageSetupPanel pnlPageSetup;
 121     private AppearancePanel pnlAppearance;
 122 
 123     private boolean isAWT = false;
 124     static {
 125         initResource();
 126     }
 127 
 128 
 129     /**
 130      * Constructor for the "standard" print dialog (containing all relevant
 131      * tabs)
 132      */
 133     public ServiceDialog(GraphicsConfiguration gc,
 134                          int x, int y,
 135                          PrintService[] services,
 136                          int defaultServiceIndex,
 137                          DocFlavor flavor,
 138                          PrintRequestAttributeSet attributes,
 139                          Dialog dialog)
 140     {
 141         super(dialog, getMsg("dialog.printtitle"), true, gc);
 142         initPrintDialog(x, y, services, defaultServiceIndex,
 143                         flavor, attributes);
 144     }
 145 
 146 
 147 
 148     /**
 149      * Constructor for the "standard" print dialog (containing all relevant
 150      * tabs)
 151      */
 152     public ServiceDialog(GraphicsConfiguration gc,
 153                          int x, int y,
 154                          PrintService[] services,
 155                          int defaultServiceIndex,
 156                          DocFlavor flavor,
 157                          PrintRequestAttributeSet attributes,
 158                          Frame frame)
 159     {
 160         super(frame, getMsg("dialog.printtitle"), true, gc);
 161         initPrintDialog(x, y, services, defaultServiceIndex,
 162                         flavor, attributes);
 163     }
 164 
 165 
 166     /**
 167      * Initialize print dialog.
 168      */
 169     void initPrintDialog(int x, int y,
 170                          PrintService[] services,
 171                          int defaultServiceIndex,
 172                          DocFlavor flavor,
 173                          PrintRequestAttributeSet attributes)
 174     {
 175         this.services = services;
 176         this.defaultServiceIndex = defaultServiceIndex;
 177         this.asOriginal = attributes;
 178         this.asCurrent = new HashPrintRequestAttributeSet(attributes);
 179         this.psCurrent = services[defaultServiceIndex];
 180         this.docFlavor = flavor;
 181         SunPageSelection pages =
 182             (SunPageSelection)attributes.get(SunPageSelection.class);
 183         if (pages != null) {
 184             isAWT = true;
 185         }
 186 
 187         Container c = getContentPane();
 188         c.setLayout(new BorderLayout());
 189 
 190         tpTabs = new JTabbedPane();
 191         tpTabs.setBorder(new EmptyBorder(5, 5, 5, 5));
 192 
 193         String gkey = getMsg("tab.general");
 194         int gmnemonic = getVKMnemonic("tab.general");
 195         pnlGeneral = new GeneralPanel();
 196         tpTabs.add(gkey, pnlGeneral);
 197         tpTabs.setMnemonicAt(0, gmnemonic);
 198 
 199         String pkey = getMsg("tab.pagesetup");
 200         int pmnemonic = getVKMnemonic("tab.pagesetup");
 201         pnlPageSetup = new PageSetupPanel();
 202         tpTabs.add(pkey, pnlPageSetup);
 203         tpTabs.setMnemonicAt(1, pmnemonic);
 204 
 205         String akey = getMsg("tab.appearance");
 206         int amnemonic = getVKMnemonic("tab.appearance");
 207         pnlAppearance = new AppearancePanel();
 208         tpTabs.add(akey, pnlAppearance);
 209         tpTabs.setMnemonicAt(2, amnemonic);
 210 
 211         c.add(tpTabs, BorderLayout.CENTER);
 212 
 213         updatePanels();
 214 
 215         JPanel pnlSouth = new JPanel(new FlowLayout(FlowLayout.TRAILING));
 216         btnApprove = createExitButton("button.print", this);
 217         pnlSouth.add(btnApprove);
 218         getRootPane().setDefaultButton(btnApprove);
 219         btnCancel = createExitButton("button.cancel", this);
 220         handleEscKey(btnCancel);
 221         pnlSouth.add(btnCancel);
 222         c.add(pnlSouth, BorderLayout.SOUTH);
 223 
 224         addWindowListener(new WindowAdapter() {
 225             public void windowClosing(WindowEvent event) {
 226                 dispose(CANCEL);
 227             }
 228         });
 229 
 230         getAccessibleContext().setAccessibleDescription(getMsg("dialog.printtitle"));
 231         setResizable(false);
 232         setLocation(x, y);
 233         pack();
 234     }
 235 
 236    /**
 237      * Constructor for the solitary "page setup" dialog
 238      */
 239     public ServiceDialog(GraphicsConfiguration gc,
 240                          int x, int y,
 241                          PrintService ps,
 242                          DocFlavor flavor,
 243                          PrintRequestAttributeSet attributes,
 244                          Dialog dialog)
 245     {
 246         super(dialog, getMsg("dialog.pstitle"), true, gc);
 247         initPageDialog(x, y, ps, flavor, attributes);
 248     }
 249 
 250     /**
 251      * Constructor for the solitary "page setup" dialog
 252      */
 253     public ServiceDialog(GraphicsConfiguration gc,
 254                          int x, int y,
 255                          PrintService ps,
 256                          DocFlavor flavor,
 257                          PrintRequestAttributeSet attributes,
 258                          Frame frame)
 259     {
 260         super(frame, getMsg("dialog.pstitle"), true, gc);
 261         initPageDialog(x, y, ps, flavor, attributes);
 262     }
 263 
 264 
 265     /**
 266      * Initialize "page setup" dialog
 267      */
 268     void initPageDialog(int x, int y,
 269                          PrintService ps,
 270                          DocFlavor flavor,
 271                          PrintRequestAttributeSet attributes)
 272     {
 273         this.psCurrent = ps;
 274         this.docFlavor = flavor;
 275         this.asOriginal = attributes;
 276         this.asCurrent = new HashPrintRequestAttributeSet(attributes);
 277 
 278         Container c = getContentPane();
 279         c.setLayout(new BorderLayout());
 280 
 281         pnlPageSetup = new PageSetupPanel();
 282         c.add(pnlPageSetup, BorderLayout.CENTER);
 283 
 284         pnlPageSetup.updateInfo();
 285 
 286         JPanel pnlSouth = new JPanel(new FlowLayout(FlowLayout.TRAILING));
 287         btnApprove = createExitButton("button.ok", this);
 288         pnlSouth.add(btnApprove);
 289         getRootPane().setDefaultButton(btnApprove);
 290         btnCancel = createExitButton("button.cancel", this);
 291         handleEscKey(btnCancel);
 292         pnlSouth.add(btnCancel);
 293         c.add(pnlSouth, BorderLayout.SOUTH);
 294 
 295         addWindowListener(new WindowAdapter() {
 296             public void windowClosing(WindowEvent event) {
 297                 dispose(CANCEL);
 298             }
 299         });
 300 
 301         getAccessibleContext().setAccessibleDescription(getMsg("dialog.pstitle"));
 302         setResizable(false);
 303         setLocation(x, y);
 304         pack();
 305     }
 306 
 307     /**
 308      * Performs Cancel when Esc key is pressed.
 309      */
 310     private void handleEscKey(JButton btnCancel) {
 311         @SuppressWarnings("serial") // anonymous class
 312         Action cancelKeyAction = new AbstractAction() {
 313             public void actionPerformed(ActionEvent e) {
 314                 dispose(CANCEL);
 315             }
 316         };
 317         KeyStroke cancelKeyStroke =
 318             KeyStroke.getKeyStroke((char)KeyEvent.VK_ESCAPE, 0);
 319         InputMap inputMap =
 320             btnCancel.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
 321         ActionMap actionMap = btnCancel.getActionMap();
 322 
 323         if (inputMap != null && actionMap != null) {
 324             inputMap.put(cancelKeyStroke, "cancel");
 325             actionMap.put("cancel", cancelKeyAction);
 326         }
 327     }
 328 
 329 
 330     /**
 331      * Returns the current status of the dialog (whether the user has selected
 332      * the "Print" or "Cancel" button)
 333      */
 334     public int getStatus() {
 335         return status;
 336     }
 337 
 338     /**
 339      * Returns an AttributeSet based on whether or not the user cancelled the
 340      * dialog.  If the user selected "Print" we return their new selections,
 341      * otherwise we return the attributes that were passed in initially.
 342      */
 343     public PrintRequestAttributeSet getAttributes() {
 344         if (status == APPROVE) {
 345             return asCurrent;
 346         } else {
 347             return asOriginal;
 348         }
 349     }
 350 
 351     /**
 352      * Returns a PrintService based on whether or not the user cancelled the
 353      * dialog.  If the user selected "Print" we return the user's selection
 354      * for the PrintService, otherwise we return null.
 355      */
 356     public PrintService getPrintService() {
 357         if (status == APPROVE) {
 358             return psCurrent;
 359         } else {
 360             return null;
 361         }
 362     }
 363 
 364     /**
 365      * Sets the current status flag for the dialog and disposes it (thus
 366      * returning control of the parent frame back to the user)
 367      */
 368     public void dispose(int status) {
 369         this.status = status;
 370 
 371         super.dispose();
 372     }
 373 
 374     public void actionPerformed(ActionEvent e) {
 375         Object source = e.getSource();
 376         boolean approved = false;
 377 
 378         if (source == btnApprove) {
 379             approved = true;
 380 
 381             if (pnlGeneral != null) {
 382                 if (pnlGeneral.isPrintToFileRequested()) {
 383                     approved = showFileChooser();
 384                 } else {
 385                     asCurrent.remove(Destination.class);
 386                 }
 387             }
 388         }
 389 
 390         dispose(approved ? APPROVE : CANCEL);
 391     }
 392 
 393     /**
 394      * Displays a JFileChooser that allows the user to select the destination
 395      * for "Print To File"
 396      */
 397     private boolean showFileChooser() {
 398         Class<Destination> dstCategory = Destination.class;
 399 
 400         Destination dst = (Destination)asCurrent.get(dstCategory);
 401         if (dst == null) {
 402             dst = (Destination)asOriginal.get(dstCategory);
 403             if (dst == null) {
 404                 dst = (Destination)psCurrent.getDefaultAttributeValue(dstCategory);
 405                 // "dst" should not be null. The following code
 406                 // is only added to safeguard against a possible
 407                 // buggy implementation of a PrintService having a
 408                 // null default Destination.
 409                 if (dst == null) {
 410                     try {
 411                         dst = new Destination(new URI("file:out.prn"));
 412                     } catch (URISyntaxException e) {
 413                     }
 414                 }
 415             }
 416         }
 417 
 418         File fileDest;
 419         if (dst != null) {
 420             try {
 421                 fileDest = new File(dst.getURI());
 422             } catch (Exception e) {
 423                 // all manner of runtime exceptions possible
 424                 fileDest = new File("out.prn");
 425             }
 426         } else {
 427             fileDest = new File("out.prn");
 428         }
 429 
 430         ValidatingFileChooser jfc = new ValidatingFileChooser();
 431         jfc.setApproveButtonText(getMsg("button.ok"));
 432         jfc.setDialogTitle(getMsg("dialog.printtofile"));
 433         jfc.setDialogType(JFileChooser.SAVE_DIALOG);
 434         jfc.setSelectedFile(fileDest);
 435 
 436         int returnVal = jfc.showDialog(this, null);
 437         if (returnVal == JFileChooser.APPROVE_OPTION) {
 438             fileDest = jfc.getSelectedFile();
 439 
 440             try {
 441                 asCurrent.add(new Destination(fileDest.toURI()));
 442             } catch (Exception e) {
 443                 asCurrent.remove(dstCategory);
 444             }
 445         } else {
 446             asCurrent.remove(dstCategory);
 447         }
 448 
 449         return (returnVal == JFileChooser.APPROVE_OPTION);
 450     }
 451 
 452     /**
 453      * Updates each of the top level panels
 454      */
 455     private void updatePanels() {
 456         pnlGeneral.updateInfo();
 457         pnlPageSetup.updateInfo();
 458         pnlAppearance.updateInfo();
 459     }
 460 
 461     /**
 462      * Initialize ResourceBundle
 463      */
 464     public static void initResource() {
 465         java.security.AccessController.doPrivileged(
 466             new java.security.PrivilegedAction<Object>() {
 467                 public Object run() {
 468                     try {
 469                         messageRB = ResourceBundle.getBundle(strBundle);
 470                         return null;
 471                     } catch (java.util.MissingResourceException e) {
 472                         throw new Error("Fatal: Resource for ServiceUI " +
 473                                         "is missing");
 474                     }
 475                 }
 476             }
 477         );
 478     }
 479 
 480     /**
 481      * Returns message string from resource
 482      */
 483     public static String getMsg(String key) {
 484         try {
 485             return removeMnemonics(messageRB.getString(key));
 486         } catch (java.util.MissingResourceException e) {
 487             throw new Error("Fatal: Resource for ServiceUI is broken; " +
 488                             "there is no " + key + " key in resource");
 489         }
 490     }
 491 
 492     private static String removeMnemonics(String s) {
 493         int i = s.indexOf('&');
 494         int len = s.length();
 495         if (i < 0 || i == (len - 1)) {
 496             return s;
 497         }
 498         int j = s.indexOf('&', i+1);
 499         if (j == i+1) {
 500             if (j+1 == len) {
 501                 return s.substring(0, i+1);  // string ends with &&
 502             } else {
 503                 return s.substring(0, i+1) + removeMnemonics(s.substring(j+1));
 504             }
 505         }
 506         // ok first & not double &&
 507         if (i == 0) {
 508             return removeMnemonics(s.substring(1));
 509         } else {
 510             return (s.substring(0, i) + removeMnemonics(s.substring(i+1)));
 511         }
 512     }
 513 
 514 
 515     /**
 516      * Returns mnemonic character from resource
 517      */
 518     private static char getMnemonic(String key) {
 519         String str = messageRB.getString(key).replace("&&", "");
 520         int index = str.indexOf('&');
 521         if (0 <= index && index < str.length() - 1) {
 522             char c = str.charAt(index + 1);
 523             return Character.toUpperCase(c);
 524         } else {
 525             return (char)0;
 526         }
 527     }
 528 
 529     /**
 530      * Returns the mnemonic as a KeyEvent.VK constant from the resource.
 531      */
 532     static Class<?> _keyEventClazz = null;
 533     private static int getVKMnemonic(String key) {
 534         String s = String.valueOf(getMnemonic(key));
 535         if ( s == null || s.length() != 1) {
 536             return 0;
 537         }
 538         String vkString = "VK_" + s.toUpperCase();
 539 
 540         try {
 541             if (_keyEventClazz == null) {
 542                 _keyEventClazz= Class.forName("java.awt.event.KeyEvent",
 543                                  true, (ServiceDialog.class).getClassLoader());
 544             }
 545             Field field = _keyEventClazz.getDeclaredField(vkString);
 546             int value = field.getInt(null);
 547             return value;
 548         } catch (Exception e) {
 549         }
 550         return 0;
 551     }
 552 
 553     /**
 554      * Returns URL for image resource
 555      */
 556     private static URL getImageResource(final String key) {
 557         URL url = java.security.AccessController.doPrivileged(
 558                        new java.security.PrivilegedAction<URL>() {
 559                 public URL run() {
 560                     URL url = ServiceDialog.class.getResource(
 561                                                   "resources/" + key);
 562                     return url;
 563                 }
 564         });
 565 
 566         if (url == null) {
 567             throw new Error("Fatal: Resource for ServiceUI is broken; " +
 568                             "there is no " + key + " key in resource");
 569         }
 570 
 571         return url;
 572     }
 573 
 574     /**
 575      * Creates a new JButton and sets its text, mnemonic, and ActionListener
 576      */
 577     private static JButton createButton(String key, ActionListener al) {
 578         JButton btn = new JButton(getMsg(key));
 579         btn.setMnemonic(getMnemonic(key));
 580         btn.addActionListener(al);
 581 
 582         return btn;
 583     }
 584 
 585     /**
 586      * Creates a new JButton and sets its text, and ActionListener
 587      */
 588     private static JButton createExitButton(String key, ActionListener al) {
 589         String str = getMsg(key);
 590         JButton btn = new JButton(str);
 591         btn.addActionListener(al);
 592         btn.getAccessibleContext().setAccessibleDescription(str);
 593         return btn;
 594     }
 595 
 596     /**
 597      * Creates a new JCheckBox and sets its text, mnemonic, and ActionListener
 598      */
 599     private static JCheckBox createCheckBox(String key, ActionListener al) {
 600         JCheckBox cb = new JCheckBox(getMsg(key));
 601         cb.setMnemonic(getMnemonic(key));
 602         cb.addActionListener(al);
 603 
 604         return cb;
 605     }
 606 
 607     /**
 608      * Creates a new JRadioButton and sets its text, mnemonic,
 609      * and ActionListener
 610      */
 611     private static JRadioButton createRadioButton(String key,
 612                                                   ActionListener al)
 613     {
 614         JRadioButton rb = new JRadioButton(getMsg(key));
 615         rb.setMnemonic(getMnemonic(key));
 616         rb.addActionListener(al);
 617 
 618         return rb;
 619     }
 620 
 621   /**
 622    * Creates a  pop-up dialog for "no print service"
 623    */
 624     public static void showNoPrintService(GraphicsConfiguration gc)
 625     {
 626         Frame dlgFrame = new Frame(gc);
 627         JOptionPane.showMessageDialog(dlgFrame,
 628                                       getMsg("dialog.noprintermsg"));
 629         dlgFrame.dispose();
 630     }
 631 
 632     /**
 633      * Sets the constraints for the GridBagLayout and adds the Component
 634      * to the given Container
 635      */
 636     private static void addToGB(Component comp, Container cont,
 637                                 GridBagLayout gridbag,
 638                                 GridBagConstraints constraints)
 639     {
 640         gridbag.setConstraints(comp, constraints);
 641         cont.add(comp);
 642     }
 643 
 644     /**
 645      * Adds the AbstractButton to both the given ButtonGroup and Container
 646      */
 647     private static void addToBG(AbstractButton button, Container cont,
 648                                 ButtonGroup bg)
 649     {
 650         bg.add(button);
 651         cont.add(button);
 652     }
 653 
 654 
 655 
 656 
 657     /**
 658      * The "General" tab.  Includes the controls for PrintService,
 659      * PageRange, and Copies/Collate.
 660      */
 661     @SuppressWarnings("serial") // Superclass is not serializable across versions
 662     private class GeneralPanel extends JPanel {
 663 
 664         private PrintServicePanel pnlPrintService;
 665         private PrintRangePanel pnlPrintRange;
 666         private CopiesPanel pnlCopies;
 667 
 668         public GeneralPanel() {
 669             super();
 670 
 671             GridBagLayout gridbag = new GridBagLayout();
 672             GridBagConstraints c = new GridBagConstraints();
 673 
 674             setLayout(gridbag);
 675 
 676             c.fill = GridBagConstraints.BOTH;
 677             c.insets = panelInsets;
 678             c.weightx = 1.0;
 679             c.weighty = 1.0;
 680 
 681             c.gridwidth = GridBagConstraints.REMAINDER;
 682             pnlPrintService = new PrintServicePanel();
 683             addToGB(pnlPrintService, this, gridbag, c);
 684 
 685             c.gridwidth = GridBagConstraints.RELATIVE;
 686             pnlPrintRange = new PrintRangePanel();
 687             addToGB(pnlPrintRange, this, gridbag, c);
 688 
 689             c.gridwidth = GridBagConstraints.REMAINDER;
 690             pnlCopies = new CopiesPanel();
 691             addToGB(pnlCopies, this, gridbag, c);
 692         }
 693 
 694         public boolean isPrintToFileRequested() {
 695             return (pnlPrintService.isPrintToFileSelected());
 696         }
 697 
 698         public void updateInfo() {
 699             pnlPrintService.updateInfo();
 700             pnlPrintRange.updateInfo();
 701             pnlCopies.updateInfo();
 702         }
 703     }
 704 
 705     @SuppressWarnings("serial") // Superclass is not serializable across versions
 706     private class PrintServicePanel extends JPanel
 707         implements ActionListener, ItemListener, PopupMenuListener
 708     {
 709         private final String strTitle = getMsg("border.printservice");
 710         private FilePermission printToFilePermission;
 711         private JButton btnProperties;
 712         private JCheckBox cbPrintToFile;
 713         private JComboBox<String> cbName;
 714         private JLabel lblType, lblStatus, lblInfo;
 715         private ServiceUIFactory uiFactory;
 716         private boolean changedService = false;
 717         private boolean filePermission;
 718 
 719         public PrintServicePanel() {
 720             super();
 721 
 722             uiFactory = psCurrent.getServiceUIFactory();
 723 
 724             GridBagLayout gridbag = new GridBagLayout();
 725             GridBagConstraints c = new GridBagConstraints();
 726 
 727             setLayout(gridbag);
 728             setBorder(BorderFactory.createTitledBorder(strTitle));
 729 
 730             String[] psnames = new String[services.length];
 731             for (int i = 0; i < psnames.length; i++) {
 732                 psnames[i] = services[i].getName();
 733             }
 734             cbName = new JComboBox<>(psnames);
 735             cbName.setSelectedIndex(defaultServiceIndex);
 736             cbName.addItemListener(this);
 737             cbName.addPopupMenuListener(this);
 738 
 739             c.fill = GridBagConstraints.BOTH;
 740             c.insets = compInsets;
 741 
 742             c.weightx = 0.0;
 743             JLabel lblName = new JLabel(getMsg("label.psname"), JLabel.TRAILING);
 744             lblName.setDisplayedMnemonic(getMnemonic("label.psname"));
 745             lblName.setLabelFor(cbName);
 746             addToGB(lblName, this, gridbag, c);
 747             c.weightx = 1.0;
 748             c.gridwidth = GridBagConstraints.RELATIVE;
 749             addToGB(cbName, this, gridbag, c);
 750             c.weightx = 0.0;
 751             c.gridwidth = GridBagConstraints.REMAINDER;
 752             btnProperties = createButton("button.properties", this);
 753             addToGB(btnProperties, this, gridbag, c);
 754 
 755             c.weighty = 1.0;
 756             lblStatus = addLabel(getMsg("label.status"), gridbag, c);
 757             lblStatus.setLabelFor(null);
 758 
 759             lblType = addLabel(getMsg("label.pstype"), gridbag, c);
 760             lblType.setLabelFor(null);
 761 
 762             c.gridwidth = 1;
 763             addToGB(new JLabel(getMsg("label.info"), JLabel.TRAILING),
 764                     this, gridbag, c);
 765             c.gridwidth = GridBagConstraints.RELATIVE;
 766             lblInfo = new JLabel();
 767             lblInfo.setLabelFor(null);
 768 
 769             addToGB(lblInfo, this, gridbag, c);
 770 
 771             c.gridwidth = GridBagConstraints.REMAINDER;
 772             cbPrintToFile = createCheckBox("checkbox.printtofile", this);
 773             addToGB(cbPrintToFile, this, gridbag, c);
 774 
 775             filePermission = allowedToPrintToFile();
 776         }
 777 
 778         public boolean isPrintToFileSelected() {
 779             return cbPrintToFile.isSelected();
 780         }
 781 
 782         private JLabel addLabel(String text,
 783                                 GridBagLayout gridbag, GridBagConstraints c)
 784         {
 785             c.gridwidth = 1;
 786             addToGB(new JLabel(text, JLabel.TRAILING), this, gridbag, c);
 787 
 788             c.gridwidth = GridBagConstraints.REMAINDER;
 789             JLabel label = new JLabel();
 790             addToGB(label, this, gridbag, c);
 791 
 792             return label;
 793         }
 794 
 795         @SuppressWarnings("deprecation")
 796         public void actionPerformed(ActionEvent e) {
 797             Object source = e.getSource();
 798 
 799             if (source == btnProperties) {
 800                 if (uiFactory != null) {
 801                     JDialog dialog = (JDialog)uiFactory.getUI(
 802                                                ServiceUIFactory.MAIN_UIROLE,
 803                                                ServiceUIFactory.JDIALOG_UI);
 804 
 805                     if (dialog != null) {
 806                         dialog.show();
 807                     } else {
 808                         DocumentPropertiesUI docPropertiesUI = null;
 809                         try {
 810                             docPropertiesUI =
 811                                 (DocumentPropertiesUI)uiFactory.getUI
 812                                 (DocumentPropertiesUI.DOCUMENTPROPERTIES_ROLE,
 813                                  DocumentPropertiesUI.DOCPROPERTIESCLASSNAME);
 814                         } catch (Exception ex) {
 815                         }
 816                         if (docPropertiesUI != null) {
 817                             PrinterJobWrapper wrapper = (PrinterJobWrapper)
 818                                 asCurrent.get(PrinterJobWrapper.class);
 819                             if (wrapper == null) {
 820                                 return; // should not happen, defensive only.
 821                             }
 822                             PrinterJob job = wrapper.getPrinterJob();
 823                             if (job == null) {
 824                                 return;  // should not happen, defensive only.
 825                             }
 826                             PrintRequestAttributeSet newAttrs =
 827                                docPropertiesUI.showDocumentProperties
 828                                (job, ServiceDialog.this, psCurrent, asCurrent);
 829                             if (newAttrs != null) {
 830                                 asCurrent.addAll(newAttrs);
 831                                 updatePanels();
 832                             }
 833                         }
 834                     }
 835                 }
 836             }
 837         }
 838 
 839         public void itemStateChanged(ItemEvent e) {
 840             if (e.getStateChange() == ItemEvent.SELECTED) {
 841                 int index = cbName.getSelectedIndex();
 842 
 843                 if ((index >= 0) && (index < services.length)) {
 844                     if (!services[index].equals(psCurrent)) {
 845                         psCurrent = services[index];
 846                         uiFactory = psCurrent.getServiceUIFactory();
 847                         changedService = true;
 848 
 849                         Destination dest =
 850                             (Destination)asOriginal.get(Destination.class);
 851                         // to preserve the state of Print To File
 852                         if ((dest != null || isPrintToFileSelected())
 853                             && psCurrent.isAttributeCategorySupported(
 854                                                         Destination.class)) {
 855 
 856                             if (dest != null) {
 857                                 asCurrent.add(dest);
 858                             } else {
 859                                 dest = (Destination)psCurrent.
 860                                     getDefaultAttributeValue(Destination.class);
 861                                 // "dest" should not be null. The following code
 862                                 // is only added to safeguard against a possible
 863                                 // buggy implementation of a PrintService having a
 864                                 // null default Destination.
 865                                 if (dest == null) {
 866                                     try {
 867                                         dest =
 868                                             new Destination(new URI("file:out.prn"));
 869                                     } catch (URISyntaxException ue) {
 870                                     }
 871                                 }
 872 
 873                                 if (dest != null) {
 874                                     asCurrent.add(dest);
 875                                 }
 876                             }
 877                         } else {
 878                             asCurrent.remove(Destination.class);
 879                         }
 880                     }
 881                 }
 882             }
 883         }
 884 
 885         public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
 886             changedService = false;
 887         }
 888 
 889         public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {
 890             if (changedService) {
 891                 changedService = false;
 892                 updatePanels();
 893             }
 894         }
 895 
 896         public void popupMenuCanceled(PopupMenuEvent e) {
 897         }
 898 
 899         /**
 900          * We disable the "Print To File" checkbox if this returns false
 901          */
 902         private boolean allowedToPrintToFile() {
 903             try {
 904                 throwPrintToFile();
 905                 return true;
 906             } catch (SecurityException e) {
 907                 return false;
 908             }
 909         }
 910 
 911         /**
 912          * Break this out as it may be useful when we allow API to
 913          * specify printing to a file. In that case its probably right
 914          * to throw a SecurityException if the permission is not granted.
 915          */
 916         private void throwPrintToFile() {
 917             SecurityManager security = System.getSecurityManager();
 918             if (security != null) {
 919                 if (printToFilePermission == null) {
 920                     printToFilePermission =
 921                         new FilePermission("<<ALL FILES>>", "read,write");
 922                 }
 923                 security.checkPermission(printToFilePermission);
 924             }
 925         }
 926 
 927         public void updateInfo() {
 928             Class<Destination> dstCategory = Destination.class;
 929             boolean dstSupported = false;
 930             boolean dstSelected = false;
 931             boolean dstAllowed = filePermission ?
 932                 allowedToPrintToFile() : false;
 933 
 934             // setup Destination (print-to-file) widgets
 935             if (psCurrent.isAttributeCategorySupported(dstCategory)) {
 936                 dstSupported = true;
 937             }
 938             Destination dst = (Destination)asCurrent.get(dstCategory);
 939             if (dst != null) {
 940                 dstSelected = true;
 941             }
 942             cbPrintToFile.setEnabled(dstSupported && dstAllowed);
 943             cbPrintToFile.setSelected(dstSelected && dstAllowed
 944                                       && dstSupported);
 945 
 946             // setup PrintService information widgets
 947             Attribute type = psCurrent.getAttribute(PrinterMakeAndModel.class);
 948             if (type != null) {
 949                 lblType.setText(type.toString());
 950             }
 951             Attribute status =
 952                 psCurrent.getAttribute(PrinterIsAcceptingJobs.class);
 953             if (status != null) {
 954                 lblStatus.setText(getMsg(status.toString()));
 955             }
 956             Attribute info = psCurrent.getAttribute(PrinterInfo.class);
 957             if (info != null) {
 958                 lblInfo.setText(info.toString());
 959             }
 960             btnProperties.setEnabled(uiFactory != null);
 961         }
 962     }
 963 
 964     @SuppressWarnings("serial") // Superclass is not serializable across versions
 965     private class PrintRangePanel extends JPanel
 966         implements ActionListener, FocusListener
 967     {
 968         private final String strTitle = getMsg("border.printrange");
 969         private final PageRanges prAll = new PageRanges(1, Integer.MAX_VALUE);
 970         private JRadioButton rbAll, rbPages, rbSelect;
 971         private JFormattedTextField tfRangeFrom, tfRangeTo;
 972         private JLabel lblRangeTo;
 973         private boolean prSupported;
 974 
 975         public PrintRangePanel() {
 976             super();
 977 
 978             GridBagLayout gridbag = new GridBagLayout();
 979             GridBagConstraints c = new GridBagConstraints();
 980 
 981             setLayout(gridbag);
 982             setBorder(BorderFactory.createTitledBorder(strTitle));
 983 
 984             c.fill = GridBagConstraints.BOTH;
 985             c.insets = compInsets;
 986             c.gridwidth = GridBagConstraints.REMAINDER;
 987 
 988             ButtonGroup bg = new ButtonGroup();
 989             JPanel pnlTop = new JPanel(new FlowLayout(FlowLayout.LEADING));
 990             rbAll = createRadioButton("radiobutton.rangeall", this);
 991             rbAll.setSelected(true);
 992             bg.add(rbAll);
 993             pnlTop.add(rbAll);
 994             addToGB(pnlTop, this, gridbag, c);
 995 
 996             // Selection never seemed to work so I'm commenting this part.
 997             /*
 998             if (isAWT) {
 999                 JPanel pnlMiddle  =
1000                     new JPanel(new FlowLayout(FlowLayout.LEADING));
1001                 rbSelect =
1002                     createRadioButton("radiobutton.selection", this);
1003                 bg.add(rbSelect);
1004                 pnlMiddle.add(rbSelect);
1005                 addToGB(pnlMiddle, this, gridbag, c);
1006             }
1007             */
1008 
1009             JPanel pnlBottom = new JPanel(new FlowLayout(FlowLayout.LEADING));
1010             rbPages = createRadioButton("radiobutton.rangepages", this);
1011             bg.add(rbPages);
1012             pnlBottom.add(rbPages);
1013             DecimalFormat format = new DecimalFormat("####0");
1014             format.setMinimumFractionDigits(0);
1015             format.setMaximumFractionDigits(0);
1016             format.setMinimumIntegerDigits(0);
1017             format.setMaximumIntegerDigits(5);
1018             format.setParseIntegerOnly(true);
1019             format.setDecimalSeparatorAlwaysShown(false);
1020             NumberFormatter nf = new NumberFormatter(format);
1021             nf.setMinimum(1);
1022             nf.setMaximum(Integer.MAX_VALUE);
1023             nf.setAllowsInvalid(true);
1024             nf.setCommitsOnValidEdit(true);
1025             tfRangeFrom = new JFormattedTextField(nf);
1026             tfRangeFrom.setColumns(4);
1027             tfRangeFrom.setEnabled(false);
1028             tfRangeFrom.addActionListener(this);
1029             tfRangeFrom.addFocusListener(this);
1030             tfRangeFrom.setFocusLostBehavior(
1031                 JFormattedTextField.PERSIST);
1032             tfRangeFrom.getAccessibleContext().setAccessibleName(
1033                                           getMsg("radiobutton.rangepages"));
1034             pnlBottom.add(tfRangeFrom);
1035             lblRangeTo = new JLabel(getMsg("label.rangeto"));
1036             lblRangeTo.setEnabled(false);
1037             pnlBottom.add(lblRangeTo);
1038             NumberFormatter nfto;
1039             try {
1040                 nfto = (NumberFormatter)nf.clone();
1041             } catch (CloneNotSupportedException e) {
1042                 nfto = new NumberFormatter();
1043             }
1044             tfRangeTo = new JFormattedTextField(nfto);
1045             tfRangeTo.setColumns(4);
1046             tfRangeTo.setEnabled(false);
1047             tfRangeTo.addFocusListener(this);
1048             tfRangeTo.getAccessibleContext().setAccessibleName(
1049                                           getMsg("label.rangeto"));
1050             pnlBottom.add(tfRangeTo);
1051             addToGB(pnlBottom, this, gridbag, c);
1052         }
1053 
1054         public void actionPerformed(ActionEvent e) {
1055             Object source = e.getSource();
1056             SunPageSelection select = SunPageSelection.ALL;
1057 
1058             setupRangeWidgets();
1059 
1060             if (source == rbAll) {
1061                 asCurrent.add(prAll);
1062             } else if (source == rbSelect) {
1063                 select = SunPageSelection.SELECTION;
1064             } else if (source == rbPages ||
1065                        source == tfRangeFrom ||
1066                        source == tfRangeTo) {
1067                 updateRangeAttribute();
1068                 select = SunPageSelection.RANGE;
1069             }
1070 
1071             if (isAWT) {
1072                 asCurrent.add(select);
1073             }
1074         }
1075 
1076         public void focusLost(FocusEvent e) {
1077             Object source = e.getSource();
1078 
1079             if ((source == tfRangeFrom) || (source == tfRangeTo)) {
1080                 updateRangeAttribute();
1081             }
1082         }
1083 
1084         public void focusGained(FocusEvent e) {}
1085 
1086         private void setupRangeWidgets() {
1087             boolean rangeEnabled = (rbPages.isSelected() && prSupported);
1088             tfRangeFrom.setEnabled(rangeEnabled);
1089             tfRangeTo.setEnabled(rangeEnabled);
1090             lblRangeTo.setEnabled(rangeEnabled);
1091         }
1092 
1093         private void updateRangeAttribute() {
1094             String strFrom = tfRangeFrom.getText();
1095             String strTo = tfRangeTo.getText();
1096 
1097             int min;
1098             int max;
1099 
1100             try {
1101                 min = Integer.parseInt(strFrom);
1102             } catch (NumberFormatException e) {
1103                 min = 1;
1104             }
1105 
1106             try {
1107                 max = Integer.parseInt(strTo);
1108             } catch (NumberFormatException e) {
1109                 max = min;
1110             }
1111 
1112             if (min < 1) {
1113                 min = 1;
1114                 tfRangeFrom.setValue(1);
1115             }
1116 
1117             if (max < min) {
1118                 max = min;
1119                 tfRangeTo.setValue(min);
1120             }
1121 
1122             PageRanges pr = new PageRanges(min, max);
1123             asCurrent.add(pr);
1124         }
1125 
1126         public void updateInfo() {
1127             Class<PageRanges> prCategory = PageRanges.class;
1128             prSupported = false;
1129 
1130             if (psCurrent.isAttributeCategorySupported(prCategory) ||
1131                    isAWT) {
1132                 prSupported = true;
1133             }
1134 
1135             SunPageSelection select = SunPageSelection.ALL;
1136             int min = 1;
1137             int max = 1;
1138 
1139             PageRanges pr = (PageRanges)asCurrent.get(prCategory);
1140             if (pr != null) {
1141                 if (!pr.equals(prAll)) {
1142                     select = SunPageSelection.RANGE;
1143 
1144                     int[][] members = pr.getMembers();
1145                     if ((members.length > 0) &&
1146                         (members[0].length > 1)) {
1147                         min = members[0][0];
1148                         max = members[0][1];
1149                     }
1150                 }
1151             }
1152 
1153             if (isAWT) {
1154                 select = (SunPageSelection)asCurrent.get(
1155                                                 SunPageSelection.class);
1156             }
1157 
1158             if (select == SunPageSelection.ALL) {
1159                 rbAll.setSelected(true);
1160             } else if (select == SunPageSelection.SELECTION) {
1161                 // Comment this for now -  rbSelect is not initialized
1162                 // because Selection button is not added.
1163                 // See PrintRangePanel above.
1164 
1165                 //rbSelect.setSelected(true);
1166             } else { // RANGE
1167                 rbPages.setSelected(true);
1168             }
1169             tfRangeFrom.setValue(min);
1170             tfRangeTo.setValue(max);
1171             rbAll.setEnabled(prSupported);
1172             rbPages.setEnabled(prSupported);
1173             setupRangeWidgets();
1174         }
1175     }
1176 
1177     @SuppressWarnings("serial") // Superclass is not serializable across versions
1178     private class CopiesPanel extends JPanel
1179         implements ActionListener, ChangeListener
1180     {
1181         private final String strTitle = getMsg("border.copies");
1182         private SpinnerNumberModel snModel;
1183         private JSpinner spinCopies;
1184         private JLabel lblCopies;
1185         private JCheckBox cbCollate;
1186         private boolean scSupported;
1187 
1188         public CopiesPanel() {
1189             super();
1190 
1191             GridBagLayout gridbag = new GridBagLayout();
1192             GridBagConstraints c = new GridBagConstraints();
1193 
1194             setLayout(gridbag);
1195             setBorder(BorderFactory.createTitledBorder(strTitle));
1196 
1197             c.fill = GridBagConstraints.HORIZONTAL;
1198             c.insets = compInsets;
1199 
1200             lblCopies = new JLabel(getMsg("label.numcopies"), JLabel.TRAILING);
1201             lblCopies.setDisplayedMnemonic(getMnemonic("label.numcopies"));
1202             lblCopies.getAccessibleContext().setAccessibleName(
1203                                              getMsg("label.numcopies"));
1204             addToGB(lblCopies, this, gridbag, c);
1205 
1206             snModel = new SpinnerNumberModel(1, 1, 999, 1);
1207             spinCopies = new JSpinner(snModel);
1208             lblCopies.setLabelFor(spinCopies);
1209             // REMIND
1210             ((JSpinner.NumberEditor)spinCopies.getEditor()).getTextField().setColumns(3);
1211             spinCopies.addChangeListener(this);
1212             c.gridwidth = GridBagConstraints.REMAINDER;
1213             addToGB(spinCopies, this, gridbag, c);
1214 
1215             cbCollate = createCheckBox("checkbox.collate", this);
1216             cbCollate.setEnabled(false);
1217             addToGB(cbCollate, this, gridbag, c);
1218         }
1219 
1220         public void actionPerformed(ActionEvent e) {
1221             if (cbCollate.isSelected()) {
1222                 asCurrent.add(SheetCollate.COLLATED);
1223             } else {
1224                 asCurrent.add(SheetCollate.UNCOLLATED);
1225             }
1226         }
1227 
1228         public void stateChanged(ChangeEvent e) {
1229             updateCollateCB();
1230 
1231             asCurrent.add(new Copies(snModel.getNumber().intValue()));
1232         }
1233 
1234         private void updateCollateCB() {
1235             int num = snModel.getNumber().intValue();
1236             if (isAWT) {
1237                 cbCollate.setEnabled(true);
1238             } else {
1239                 cbCollate.setEnabled((num > 1) && scSupported);
1240             }
1241         }
1242 
1243         public void updateInfo() {
1244             Class<Copies> cpCategory = Copies.class;
1245             Class<SheetCollate> scCategory = SheetCollate.class;
1246             boolean cpSupported = false;
1247             scSupported = false;
1248 
1249             // setup Copies spinner
1250             if (psCurrent.isAttributeCategorySupported(cpCategory)) {
1251                 cpSupported = true;
1252             }
1253             CopiesSupported cs =
1254                 (CopiesSupported)psCurrent.getSupportedAttributeValues(
1255                                                        cpCategory, null, null);
1256             if (cs == null) {
1257                 cs = new CopiesSupported(1, 999);
1258             }
1259             Copies cp = (Copies)asCurrent.get(cpCategory);
1260             if (cp == null) {
1261                 cp = (Copies)psCurrent.getDefaultAttributeValue(cpCategory);
1262                 if (cp == null) {
1263                     cp = new Copies(1);
1264                 }
1265             }
1266             spinCopies.setEnabled(cpSupported);
1267             lblCopies.setEnabled(cpSupported);
1268 
1269             int[][] members = cs.getMembers();
1270             int min, max;
1271             if ((members.length > 0) && (members[0].length > 0)) {
1272                 min = members[0][0];
1273                 max = members[0][1];
1274             } else {
1275                 min = 1;
1276                 max = Integer.MAX_VALUE;
1277             }
1278             snModel.setMinimum(min);
1279             snModel.setMaximum(max);
1280 
1281             int value = cp.getValue();
1282             if ((value < min) || (value > max)) {
1283                 value = min;
1284             }
1285             snModel.setValue(value);
1286 
1287             // setup Collate checkbox
1288             if (psCurrent.isAttributeCategorySupported(scCategory)) {
1289                 scSupported = true;
1290             }           
1291             SheetCollate sc = (SheetCollate)asCurrent.get(scCategory);            
1292             if (sc == null) {
1293                 sc = (SheetCollate)psCurrent.getDefaultAttributeValue(scCategory);                             
1294                 if (sc == null) {
1295                     sc = SheetCollate.UNCOLLATED;
1296                 }
1297                 if (sc != null && 
1298                     !psCurrent.isAttributeValueSupported(sc, docFlavor, asCurrent)) {
1299                     scSupported = false;
1300                 }
1301             } else {
1302                 if (!psCurrent.isAttributeValueSupported(sc, docFlavor, asCurrent)) {
1303                     scSupported = false;
1304                 }
1305             }
1306             cbCollate.setSelected(sc == SheetCollate.COLLATED && scSupported);
1307             updateCollateCB();
1308         }
1309     }
1310 
1311 
1312 
1313 
1314     /**
1315      * The "Page Setup" tab.  Includes the controls for MediaSource/MediaTray,
1316      * OrientationRequested, and Sides.
1317      */
1318     @SuppressWarnings("serial") // Superclass is not serializable across versions
1319     private class PageSetupPanel extends JPanel {
1320 
1321         private MediaPanel pnlMedia;
1322         private OrientationPanel pnlOrientation;
1323         private MarginsPanel pnlMargins;
1324 
1325         public PageSetupPanel() {
1326             super();
1327 
1328             GridBagLayout gridbag = new GridBagLayout();
1329             GridBagConstraints c = new GridBagConstraints();
1330 
1331             setLayout(gridbag);
1332 
1333             c.fill = GridBagConstraints.BOTH;
1334             c.insets = panelInsets;
1335             c.weightx = 1.0;
1336             c.weighty = 1.0;
1337 
1338             c.gridwidth = GridBagConstraints.REMAINDER;
1339             pnlMedia = new MediaPanel();
1340             addToGB(pnlMedia, this, gridbag, c);
1341 
1342             pnlOrientation = new OrientationPanel();
1343             c.gridwidth = GridBagConstraints.RELATIVE;
1344             addToGB(pnlOrientation, this, gridbag, c);
1345 
1346             pnlMargins = new MarginsPanel();
1347             pnlOrientation.addOrientationListener(pnlMargins);
1348             pnlMedia.addMediaListener(pnlMargins);
1349             c.gridwidth = GridBagConstraints.REMAINDER;
1350             addToGB(pnlMargins, this, gridbag, c);
1351         }
1352 
1353         public void updateInfo() {
1354             pnlMedia.updateInfo();
1355             pnlOrientation.updateInfo();
1356             pnlMargins.updateInfo();
1357         }
1358     }
1359 
1360     @SuppressWarnings("serial") // Superclass is not serializable across versions
1361     private class MarginsPanel extends JPanel
1362                                implements ActionListener, FocusListener {
1363 
1364         private final String strTitle = getMsg("border.margins");
1365         private JFormattedTextField leftMargin, rightMargin,
1366                                     topMargin, bottomMargin;
1367         private JLabel lblLeft, lblRight, lblTop, lblBottom;
1368         private int units = MediaPrintableArea.MM;
1369         // storage for the last margin values calculated, -ve is uninitialised
1370         private float lmVal = -1f,rmVal = -1f, tmVal = -1f, bmVal = -1f;
1371         // storage for margins as objects mapped into orientation for display
1372         private Float lmObj,rmObj,tmObj,bmObj;
1373 
1374         public MarginsPanel() {
1375             super();
1376 
1377             GridBagLayout gridbag = new GridBagLayout();
1378             GridBagConstraints c = new GridBagConstraints();
1379             c.fill = GridBagConstraints.HORIZONTAL;
1380             c.weightx = 1.0;
1381             c.weighty = 0.0;
1382             c.insets = compInsets;
1383 
1384             setLayout(gridbag);
1385             setBorder(BorderFactory.createTitledBorder(strTitle));
1386 
1387             String unitsKey = "label.millimetres";
1388             String defaultCountry = Locale.getDefault().getCountry();
1389             if (defaultCountry != null &&
1390                 (defaultCountry.equals("") ||
1391                  defaultCountry.equals(Locale.US.getCountry()) ||
1392                  defaultCountry.equals(Locale.CANADA.getCountry()))) {
1393                 unitsKey = "label.inches";
1394                 units = MediaPrintableArea.INCH;
1395             }
1396             String unitsMsg = getMsg(unitsKey);
1397 
1398             DecimalFormat format;
1399             if (units == MediaPrintableArea.MM) {
1400                 format = new DecimalFormat("###.##");
1401                 format.setMaximumIntegerDigits(3);
1402             } else {
1403                 format = new DecimalFormat("##.##");
1404                 format.setMaximumIntegerDigits(2);
1405             }
1406 
1407             format.setMinimumFractionDigits(1);
1408             format.setMaximumFractionDigits(2);
1409             format.setMinimumIntegerDigits(1);
1410             format.setParseIntegerOnly(false);
1411             format.setDecimalSeparatorAlwaysShown(true);
1412             NumberFormatter nf = new NumberFormatter(format);
1413             nf.setMinimum(Float.valueOf(0.0f));
1414             nf.setMaximum(Float.valueOf(999.0f));
1415             nf.setAllowsInvalid(true);
1416             nf.setCommitsOnValidEdit(true);
1417 
1418             leftMargin = new JFormattedTextField(nf);
1419             leftMargin.addFocusListener(this);
1420             leftMargin.addActionListener(this);
1421             leftMargin.getAccessibleContext().setAccessibleName(
1422                                               getMsg("label.leftmargin"));
1423             rightMargin = new JFormattedTextField(nf);
1424             rightMargin.addFocusListener(this);
1425             rightMargin.addActionListener(this);
1426             rightMargin.getAccessibleContext().setAccessibleName(
1427                                               getMsg("label.rightmargin"));
1428             topMargin = new JFormattedTextField(nf);
1429             topMargin.addFocusListener(this);
1430             topMargin.addActionListener(this);
1431             topMargin.getAccessibleContext().setAccessibleName(
1432                                               getMsg("label.topmargin"));
1433 
1434             bottomMargin = new JFormattedTextField(nf);
1435             bottomMargin.addFocusListener(this);
1436             bottomMargin.addActionListener(this);
1437             bottomMargin.getAccessibleContext().setAccessibleName(
1438                                               getMsg("label.bottommargin"));
1439 
1440             c.gridwidth = GridBagConstraints.RELATIVE;
1441             lblLeft = new JLabel(getMsg("label.leftmargin") + " " + unitsMsg,
1442                                  JLabel.LEADING);
1443             lblLeft.setDisplayedMnemonic(getMnemonic("label.leftmargin"));
1444             lblLeft.setLabelFor(leftMargin);
1445             addToGB(lblLeft, this, gridbag, c);
1446 
1447             c.gridwidth = GridBagConstraints.REMAINDER;
1448             lblRight = new JLabel(getMsg("label.rightmargin") + " " + unitsMsg,
1449                                   JLabel.LEADING);
1450             lblRight.setDisplayedMnemonic(getMnemonic("label.rightmargin"));
1451             lblRight.setLabelFor(rightMargin);
1452             addToGB(lblRight, this, gridbag, c);
1453 
1454             c.gridwidth = GridBagConstraints.RELATIVE;
1455             addToGB(leftMargin, this, gridbag, c);
1456 
1457             c.gridwidth = GridBagConstraints.REMAINDER;
1458             addToGB(rightMargin, this, gridbag, c);
1459 
1460             // add an invisible spacing component.
1461             addToGB(new JPanel(), this, gridbag, c);
1462 
1463             c.gridwidth = GridBagConstraints.RELATIVE;
1464             lblTop = new JLabel(getMsg("label.topmargin") + " " + unitsMsg,
1465                                 JLabel.LEADING);
1466             lblTop.setDisplayedMnemonic(getMnemonic("label.topmargin"));
1467             lblTop.setLabelFor(topMargin);
1468             addToGB(lblTop, this, gridbag, c);
1469 
1470             c.gridwidth = GridBagConstraints.REMAINDER;
1471             lblBottom = new JLabel(getMsg("label.bottommargin") +
1472                                    " " + unitsMsg, JLabel.LEADING);
1473             lblBottom.setDisplayedMnemonic(getMnemonic("label.bottommargin"));
1474             lblBottom.setLabelFor(bottomMargin);
1475             addToGB(lblBottom, this, gridbag, c);
1476 
1477             c.gridwidth = GridBagConstraints.RELATIVE;
1478             addToGB(topMargin, this, gridbag, c);
1479 
1480             c.gridwidth = GridBagConstraints.REMAINDER;
1481             addToGB(bottomMargin, this, gridbag, c);
1482 
1483         }
1484 
1485         public void actionPerformed(ActionEvent e) {
1486             Object source = e.getSource();
1487             updateMargins(source);
1488         }
1489 
1490         public void focusLost(FocusEvent e) {
1491             Object source = e.getSource();
1492             updateMargins(source);
1493         }
1494 
1495         public void focusGained(FocusEvent e) {}
1496 
1497         /* Get the numbers, use to create a MPA.
1498          * If its valid, accept it and update the attribute set.
1499          * If its not valid, then reject it and call updateInfo()
1500          * to re-establish the previous entries.
1501          */
1502         public void updateMargins(Object source) {
1503             if (!(source instanceof JFormattedTextField)) {
1504                 return;
1505             } else {
1506                 JFormattedTextField tf = (JFormattedTextField)source;
1507                 Float val = (Float)tf.getValue();
1508                 if (val == null) {
1509                     return;
1510                 }
1511                 if (tf == leftMargin && val.equals(lmObj)) {
1512                     return;
1513                 }
1514                 if (tf == rightMargin && val.equals(rmObj)) {
1515                     return;
1516                 }
1517                 if (tf == topMargin && val.equals(tmObj)) {
1518                     return;
1519                 }
1520                 if (tf == bottomMargin && val.equals(bmObj)) {
1521                     return;
1522                 }
1523             }
1524 
1525             Float lmTmpObj = (Float)leftMargin.getValue();
1526             Float rmTmpObj = (Float)rightMargin.getValue();
1527             Float tmTmpObj = (Float)topMargin.getValue();
1528             Float bmTmpObj = (Float)bottomMargin.getValue();
1529 
1530             float lm = lmTmpObj.floatValue();
1531             float rm = rmTmpObj.floatValue();
1532             float tm = tmTmpObj.floatValue();
1533             float bm = bmTmpObj.floatValue();
1534 
1535             /* adjust for orientation */
1536             Class<OrientationRequested> orCategory = OrientationRequested.class;
1537             OrientationRequested or =
1538                 (OrientationRequested)asCurrent.get(orCategory);
1539 
1540             if (or == null) {
1541                 or = (OrientationRequested)
1542                      psCurrent.getDefaultAttributeValue(orCategory);
1543             }
1544 
1545             float tmp;
1546             if (or == OrientationRequested.REVERSE_PORTRAIT) {
1547                 tmp = lm; lm = rm; rm = tmp;
1548                 tmp = tm; tm = bm; bm = tmp;
1549             } else if (or == OrientationRequested.LANDSCAPE) {
1550                 tmp = lm;
1551                 lm = tm;
1552                 tm = rm;
1553                 rm = bm;
1554                 bm = tmp;
1555             } else if (or == OrientationRequested.REVERSE_LANDSCAPE) {
1556                 tmp = lm;
1557                 lm = bm;
1558                 bm = rm;
1559                 rm = tm;
1560                 tm = tmp;
1561             }
1562             MediaPrintableArea mpa;
1563             if ((mpa = validateMargins(lm, rm, tm, bm)) != null) {
1564                 asCurrent.add(mpa);
1565                 lmVal = lm;
1566                 rmVal = rm;
1567                 tmVal = tm;
1568                 bmVal = bm;
1569                 lmObj = lmTmpObj;
1570                 rmObj = rmTmpObj;
1571                 tmObj = tmTmpObj;
1572                 bmObj = bmTmpObj;
1573             } else {
1574                 if (lmObj == null || rmObj == null ||
1575                     tmObj == null || bmObj == null) {
1576                     return;
1577                 } else {
1578                     leftMargin.setValue(lmObj);
1579                     rightMargin.setValue(rmObj);
1580                     topMargin.setValue(tmObj);
1581                     bottomMargin.setValue(bmObj);
1582 
1583                 }
1584             }
1585         }
1586 
1587         /*
1588          * This method either accepts the values and creates a new
1589          * MediaPrintableArea, or does nothing.
1590          * It should not attempt to create a printable area from anything
1591          * other than the exact values passed in.
1592          * But REMIND/TBD: it would be user friendly to replace margins the
1593          * user entered but are out of bounds with the minimum.
1594          * At that point this method will need to take responsibility for
1595          * updating the "stored" values and the UI.
1596          */
1597         private MediaPrintableArea validateMargins(float lm, float rm,
1598                                                    float tm, float bm) {
1599 
1600             Class<MediaPrintableArea> mpaCategory = MediaPrintableArea.class;
1601             MediaPrintableArea mpa;
1602             MediaPrintableArea mpaMax = null;
1603             MediaSize mediaSize = null;
1604 
1605             Media media = (Media)asCurrent.get(Media.class);
1606             if (media == null || !(media instanceof MediaSizeName)) {
1607                 media = (Media)psCurrent.getDefaultAttributeValue(Media.class);
1608             }
1609             if (media != null && (media instanceof MediaSizeName)) {
1610                 MediaSizeName msn = (MediaSizeName)media;
1611                 mediaSize = MediaSize.getMediaSizeForName(msn);
1612             }
1613             if (mediaSize == null) {
1614                 mediaSize = new MediaSize(8.5f, 11f, Size2DSyntax.INCH);
1615             }
1616 
1617             if (media != null) {
1618                 PrintRequestAttributeSet tmpASet =
1619                     new HashPrintRequestAttributeSet(asCurrent);
1620                 tmpASet.add(media);
1621 
1622                 Object values =
1623                     psCurrent.getSupportedAttributeValues(mpaCategory,
1624                                                           docFlavor,
1625                                                           tmpASet);
1626                 if (values instanceof MediaPrintableArea[] &&
1627                     ((MediaPrintableArea[])values).length > 0) {
1628                     mpaMax = ((MediaPrintableArea[])values)[0];
1629 
1630                 }
1631             }
1632             if (mpaMax == null) {
1633                 mpaMax = new MediaPrintableArea(0f, 0f,
1634                                                 mediaSize.getX(units),
1635                                                 mediaSize.getY(units),
1636                                                 units);
1637             }
1638 
1639             float wid = mediaSize.getX(units);
1640             float hgt = mediaSize.getY(units);
1641             float pax = lm;
1642             float pay = tm;
1643             float par = rm;
1644             float pab = bm;
1645             float paw = wid - lm - rm;
1646             float pah = hgt - tm - bm;
1647 
1648             if (paw <= 0f || pah <= 0f || pax < 0f || pay < 0f ||
1649                 par <= 0f || pab <= 0f ||
1650                 pax < mpaMax.getX(units) || paw > mpaMax.getWidth(units) ||
1651                 pay < mpaMax.getY(units) || pah > mpaMax.getHeight(units)) {
1652                 return null;
1653             } else {
1654                 return new MediaPrintableArea(lm, tm, paw, pah, units);
1655             }
1656         }
1657 
1658         /* This is complex as a MediaPrintableArea is valid only within
1659          * a particular context of media size.
1660          * So we need a MediaSize as well as a MediaPrintableArea.
1661          * MediaSize can be obtained from MediaSizeName.
1662          * If the application specifies a MediaPrintableArea, we accept it
1663          * to the extent its valid for the Media they specify. If they
1664          * don't specify a Media, then the default is assumed.
1665          *
1666          * If an application doesn't define a MediaPrintableArea, we need to
1667          * create a suitable one, this is created using the specified (or
1668          * default) Media and default 1 inch margins. This is validated
1669          * against the paper in case this is too large for tiny media.
1670          */
1671         public void updateInfo() {
1672 
1673             if (isAWT) {
1674                 leftMargin.setEnabled(false);
1675                 rightMargin.setEnabled(false);
1676                 topMargin.setEnabled(false);
1677                 bottomMargin.setEnabled(false);
1678                 lblLeft.setEnabled(false);
1679                 lblRight.setEnabled(false);
1680                 lblTop.setEnabled(false);
1681                 lblBottom.setEnabled(false);
1682                 return;
1683             }
1684 
1685             Class<MediaPrintableArea> mpaCategory = MediaPrintableArea.class;
1686             MediaPrintableArea mpa =
1687                  (MediaPrintableArea)asCurrent.get(mpaCategory);
1688             MediaPrintableArea mpaMax = null;
1689             MediaSize mediaSize = null;
1690 
1691             Media media = (Media)asCurrent.get(Media.class);
1692             if (media == null || !(media instanceof MediaSizeName)) {
1693                 media = (Media)psCurrent.getDefaultAttributeValue(Media.class);
1694             }
1695             if (media != null && (media instanceof MediaSizeName)) {
1696                 MediaSizeName msn = (MediaSizeName)media;
1697                 mediaSize = MediaSize.getMediaSizeForName(msn);
1698             }
1699             if (mediaSize == null) {
1700                 mediaSize = new MediaSize(8.5f, 11f, Size2DSyntax.INCH);
1701             }
1702 
1703             if (media != null) {
1704                 PrintRequestAttributeSet tmpASet =
1705                     new HashPrintRequestAttributeSet(asCurrent);
1706                 tmpASet.add(media);
1707 
1708                 Object values =
1709                     psCurrent.getSupportedAttributeValues(mpaCategory,
1710                                                           docFlavor,
1711                                                           tmpASet);
1712                 if (values instanceof MediaPrintableArea[] &&
1713                     ((MediaPrintableArea[])values).length > 0) {
1714                     mpaMax = ((MediaPrintableArea[])values)[0];
1715 
1716                 } else if (values instanceof MediaPrintableArea) {
1717                     mpaMax = (MediaPrintableArea)values;
1718                 }
1719             }
1720             if (mpaMax == null) {
1721                 mpaMax = new MediaPrintableArea(0f, 0f,
1722                                                 mediaSize.getX(units),
1723                                                 mediaSize.getY(units),
1724                                                 units);
1725             }
1726 
1727             /*
1728              * At this point we now know as best we can :-
1729              * - the media size
1730              * - the maximum corresponding printable area
1731              * - the media printable area specified by the client, if any.
1732              * The next step is to create a default MPA if none was specified.
1733              * 1" margins are used unless they are disproportionately
1734              * large compared to the size of the media.
1735              */
1736 
1737             float wid = mediaSize.getX(MediaPrintableArea.INCH);
1738             float hgt = mediaSize.getY(MediaPrintableArea.INCH);
1739             float maxMarginRatio = 5f;
1740             float xMgn, yMgn;
1741             if (wid > maxMarginRatio) {
1742                 xMgn = 1f;
1743             } else {
1744                 xMgn = wid / maxMarginRatio;
1745             }
1746             if (hgt > maxMarginRatio) {
1747                 yMgn = 1f;
1748             } else {
1749                 yMgn = hgt / maxMarginRatio;
1750             }
1751 
1752             if (mpa == null) {
1753                 mpa = new MediaPrintableArea(xMgn, yMgn,
1754                                              wid-(2*xMgn), hgt-(2*yMgn),
1755                                              MediaPrintableArea.INCH);
1756                 asCurrent.add(mpa);
1757             }
1758             float pax = mpa.getX(units);
1759             float pay = mpa.getY(units);
1760             float paw = mpa.getWidth(units);
1761             float pah = mpa.getHeight(units);
1762             float paxMax = mpaMax.getX(units);
1763             float payMax = mpaMax.getY(units);
1764             float pawMax = mpaMax.getWidth(units);
1765             float pahMax = mpaMax.getHeight(units);
1766 
1767 
1768             boolean invalid = false;
1769 
1770             // If the paper is set to something which is too small to
1771             // accommodate a specified printable area, perhaps carried
1772             // over from a larger paper, the adjustment that needs to be
1773             // performed should seem the most natural from a user's viewpoint.
1774             // Since the user is specifying margins, then we are biased
1775             // towards keeping the margins as close to what is specified as
1776             // possible, shrinking or growing the printable area.
1777             // But the API uses printable area, so you need to know the
1778             // media size in which the margins were previously interpreted,
1779             // or at least have a record of the margins.
1780             // In the case that this is the creation of this UI we do not
1781             // have this record, so we are somewhat reliant on the client
1782             // to supply a reasonable default
1783             wid = mediaSize.getX(units);
1784             hgt = mediaSize.getY(units);
1785             if (lmVal >= 0f) {
1786                 invalid = true;
1787 
1788                 if (lmVal + rmVal > wid) {
1789                     // margins impossible, but maintain P.A if can
1790                     if (paw > pawMax) {
1791                         paw = pawMax;
1792                     }
1793                     // try to centre the printable area.
1794                     pax = (wid - paw)/2f;
1795                 } else {
1796                     pax = (lmVal >= paxMax) ? lmVal : paxMax;
1797                     paw = wid - pax - rmVal;
1798                 }
1799                 if (tmVal + bmVal > hgt) {
1800                     if (pah > pahMax) {
1801                         pah = pahMax;
1802                     }
1803                     pay = (hgt - pah)/2f;
1804                 } else {
1805                     pay = (tmVal >= payMax) ? tmVal : payMax;
1806                     pah = hgt - pay - bmVal;
1807                 }
1808             }
1809             if (pax < paxMax) {
1810                 invalid = true;
1811                 pax = paxMax;
1812             }
1813             if (pay < payMax) {
1814                 invalid = true;
1815                 pay = payMax;
1816             }
1817             if (paw > pawMax) {
1818                 invalid = true;
1819                 paw = pawMax;
1820             }
1821             if (pah > pahMax) {
1822                 invalid = true;
1823                 pah = pahMax;
1824             }
1825 
1826             if ((pax + paw > paxMax + pawMax) || (paw <= 0f)) {
1827                 invalid = true;
1828                 pax = paxMax;
1829                 paw = pawMax;
1830             }
1831             if ((pay + pah > payMax + pahMax) || (pah <= 0f)) {
1832                 invalid = true;
1833                 pay = payMax;
1834                 pah = pahMax;
1835             }
1836 
1837             if (invalid) {
1838                 mpa = new MediaPrintableArea(pax, pay, paw, pah, units);
1839                 asCurrent.add(mpa);
1840             }
1841 
1842             /* We now have a valid printable area.
1843              * Turn it into margins, using the mediaSize
1844              */
1845             lmVal = pax;
1846             tmVal = pay;
1847             rmVal = mediaSize.getX(units) - pax - paw;
1848             bmVal = mediaSize.getY(units) - pay - pah;
1849 
1850             lmObj = lmVal;
1851             rmObj = rmVal;
1852             tmObj = tmVal;
1853             bmObj = bmVal;
1854 
1855             /* Now we know the values to use, we need to assign them
1856              * to the fields appropriate for the orientation.
1857              * Note: if orientation changes this method must be called.
1858              */
1859             Class<OrientationRequested> orCategory = OrientationRequested.class;
1860             OrientationRequested or =
1861                 (OrientationRequested)asCurrent.get(orCategory);
1862 
1863             if (or == null) {
1864                 or = (OrientationRequested)
1865                      psCurrent.getDefaultAttributeValue(orCategory);
1866             }
1867 
1868             Float tmp;
1869 
1870             if (or == OrientationRequested.REVERSE_PORTRAIT) {
1871                 tmp = lmObj; lmObj = rmObj; rmObj = tmp;
1872                 tmp = tmObj; tmObj = bmObj; bmObj = tmp;
1873             }  else if (or == OrientationRequested.LANDSCAPE) {
1874                 tmp = lmObj;
1875                 lmObj = bmObj;
1876                 bmObj = rmObj;
1877                 rmObj = tmObj;
1878                 tmObj = tmp;
1879             }  else if (or == OrientationRequested.REVERSE_LANDSCAPE) {
1880                 tmp = lmObj;
1881                 lmObj = tmObj;
1882                 tmObj = rmObj;
1883                 rmObj = bmObj;
1884                 bmObj = tmp;
1885             }
1886 
1887             leftMargin.setValue(lmObj);
1888             rightMargin.setValue(rmObj);
1889             topMargin.setValue(tmObj);
1890             bottomMargin.setValue(bmObj);
1891         }
1892     }
1893 
1894     @SuppressWarnings("serial") // Superclass is not serializable across versions
1895     private class MediaPanel extends JPanel implements ItemListener {
1896 
1897         private final String strTitle = getMsg("border.media");
1898         private JLabel lblSize, lblSource;
1899         private JComboBox<Object> cbSize, cbSource;
1900         private Vector<MediaSizeName> sizes = new Vector<>();
1901         private Vector<MediaTray> sources = new Vector<>();
1902         private MarginsPanel pnlMargins = null;
1903 
1904         public MediaPanel() {
1905             super();
1906 
1907             GridBagLayout gridbag = new GridBagLayout();
1908             GridBagConstraints c = new GridBagConstraints();
1909 
1910             setLayout(gridbag);
1911             setBorder(BorderFactory.createTitledBorder(strTitle));
1912 
1913             cbSize = new JComboBox<>();
1914             cbSource = new JComboBox<>();
1915 
1916             c.fill = GridBagConstraints.BOTH;
1917             c.insets = compInsets;
1918             c.weighty = 1.0;
1919 
1920             c.weightx = 0.0;
1921             lblSize = new JLabel(getMsg("label.size"), JLabel.TRAILING);
1922             lblSize.setDisplayedMnemonic(getMnemonic("label.size"));
1923             lblSize.setLabelFor(cbSize);
1924             addToGB(lblSize, this, gridbag, c);
1925             c.weightx = 1.0;
1926             c.gridwidth = GridBagConstraints.REMAINDER;
1927             addToGB(cbSize, this, gridbag, c);
1928 
1929             c.weightx = 0.0;
1930             c.gridwidth = 1;
1931             lblSource = new JLabel(getMsg("label.source"), JLabel.TRAILING);
1932             lblSource.setDisplayedMnemonic(getMnemonic("label.source"));
1933             lblSource.setLabelFor(cbSource);
1934             addToGB(lblSource, this, gridbag, c);
1935             c.gridwidth = GridBagConstraints.REMAINDER;
1936             addToGB(cbSource, this, gridbag, c);
1937         }
1938 
1939         private String getMediaName(String key) {
1940             try {
1941                 // replace characters that would be invalid in
1942                 // a resource key with valid characters
1943                 String newkey = key.replace(' ', '-');
1944                 newkey = newkey.replace('#', 'n');
1945 
1946                 return messageRB.getString(newkey);
1947             } catch (java.util.MissingResourceException e) {
1948                 return key;
1949             }
1950         }
1951 
1952         public void itemStateChanged(ItemEvent e) {
1953             Object source = e.getSource();
1954 
1955             if (e.getStateChange() == ItemEvent.SELECTED) {
1956                 if (source == cbSize) {
1957                     int index = cbSize.getSelectedIndex();
1958 
1959                     if ((index >= 0) && (index < sizes.size())) {
1960                         if ((cbSource.getItemCount() > 1) &&
1961                             (cbSource.getSelectedIndex() >= 1))
1962                         {
1963                             int src = cbSource.getSelectedIndex() - 1;
1964                             MediaTray mt = sources.get(src);
1965                             asCurrent.add(new SunAlternateMedia(mt));
1966                         }
1967                         asCurrent.add(sizes.get(index));
1968                     }
1969                 } else if (source == cbSource) {
1970                     int index = cbSource.getSelectedIndex();
1971 
1972                     if ((index >= 1) && (index < (sources.size() + 1))) {
1973                        asCurrent.remove(SunAlternateMedia.class);
1974                        MediaTray newTray = sources.get(index - 1);
1975                        Media m = (Media)asCurrent.get(Media.class);
1976                        if (m == null || m instanceof MediaTray) {
1977                            asCurrent.add(newTray);
1978                        } else if (m instanceof MediaSizeName) {
1979                            MediaSizeName msn = (MediaSizeName)m;
1980                            Media def = (Media)psCurrent.getDefaultAttributeValue(Media.class);
1981                            if (def instanceof MediaSizeName && def.equals(msn)) {
1982                                asCurrent.add(newTray);
1983                            } else {
1984                                /* Non-default paper size, so need to store tray
1985                                 * as SunAlternateMedia
1986                                 */
1987                                asCurrent.add(new SunAlternateMedia(newTray));
1988                            }
1989                        }
1990                     } else if (index == 0) {
1991                         asCurrent.remove(SunAlternateMedia.class);
1992                         if (cbSize.getItemCount() > 0) {
1993                             int size = cbSize.getSelectedIndex();
1994                             asCurrent.add(sizes.get(size));
1995                         }
1996                     }
1997                 }
1998             // orientation affects display of margins.
1999                 if (pnlMargins != null) {
2000                     pnlMargins.updateInfo();
2001                 }
2002             }
2003         }
2004 
2005 
2006         /* this is ad hoc to keep things simple */
2007         public void addMediaListener(MarginsPanel pnl) {
2008             pnlMargins = pnl;
2009         }
2010         public void updateInfo() {
2011             Class<Media> mdCategory = Media.class;
2012             Class<SunAlternateMedia> amCategory = SunAlternateMedia.class;
2013             boolean mediaSupported = false;
2014 
2015             cbSize.removeItemListener(this);
2016             cbSize.removeAllItems();
2017             cbSource.removeItemListener(this);
2018             cbSource.removeAllItems();
2019             cbSource.addItem(getMediaName("auto-select"));
2020 
2021             sizes.clear();
2022             sources.clear();
2023 
2024             if (psCurrent.isAttributeCategorySupported(mdCategory)) {
2025                 mediaSupported = true;
2026 
2027                 Object values =
2028                     psCurrent.getSupportedAttributeValues(mdCategory,
2029                                                           docFlavor,
2030                                                           asCurrent);
2031 
2032                 if (values instanceof Media[]) {
2033                     Media[] media = (Media[])values;
2034 
2035                     for (int i = 0; i < media.length; i++) {
2036                         Media medium = media[i];
2037 
2038                         if (medium instanceof MediaSizeName) {
2039                             sizes.add((MediaSizeName)medium);
2040                             cbSize.addItem(getMediaName(medium.toString()));
2041                         } else if (medium instanceof MediaTray) {
2042                             sources.add((MediaTray)medium);
2043                             cbSource.addItem(getMediaName(medium.toString()));
2044                         }
2045                     }
2046                 }
2047             }
2048 
2049             boolean msSupported = (mediaSupported && (sizes.size() > 0));
2050             lblSize.setEnabled(msSupported);
2051             cbSize.setEnabled(msSupported);
2052 
2053             if (isAWT) {
2054                 cbSource.setEnabled(false);
2055                 lblSource.setEnabled(false);
2056             } else {
2057                 cbSource.setEnabled(mediaSupported);
2058             }
2059 
2060             if (mediaSupported) {
2061 
2062                 Media medium = (Media)asCurrent.get(mdCategory);
2063 
2064                // initialize size selection to default
2065                 Media defMedia = (Media)psCurrent.getDefaultAttributeValue(mdCategory);
2066                 if (defMedia instanceof MediaSizeName) {
2067                     cbSize.setSelectedIndex(sizes.size() > 0 ? sizes.indexOf(defMedia) : -1);
2068                 }
2069 
2070                 if (medium == null ||
2071                     !psCurrent.isAttributeValueSupported(medium,
2072                                                          docFlavor, asCurrent)) {
2073 
2074                     medium = defMedia;
2075 
2076                     if (medium == null) {
2077                         if (sizes.size() > 0) {
2078                             medium = (Media)sizes.get(0);
2079                         }
2080                     }
2081                     if (medium != null) {
2082                         asCurrent.add(medium);
2083                     }
2084                 }
2085                 if (medium != null) {
2086                     if (medium instanceof MediaSizeName) {
2087                         MediaSizeName ms = (MediaSizeName)medium;
2088                         cbSize.setSelectedIndex(sizes.indexOf(ms));
2089                     } else if (medium instanceof MediaTray) {
2090                         MediaTray mt = (MediaTray)medium;
2091                         cbSource.setSelectedIndex(sources.indexOf(mt) + 1);
2092                     }
2093                 } else {
2094                     cbSize.setSelectedIndex(sizes.size() > 0 ? 0 : -1);
2095                     cbSource.setSelectedIndex(0);
2096                 }
2097 
2098                 SunAlternateMedia alt = (SunAlternateMedia)asCurrent.get(amCategory);
2099                 if (alt != null) {
2100                     Media md = alt.getMedia();
2101                     if (md instanceof MediaTray) {
2102                         MediaTray mt = (MediaTray)md;
2103                         cbSource.setSelectedIndex(sources.indexOf(mt) + 1);
2104                     }
2105                 }
2106 
2107                 int selIndex = cbSize.getSelectedIndex();
2108                 if ((selIndex >= 0) && (selIndex < sizes.size())) {
2109                   asCurrent.add(sizes.get(selIndex));
2110                 }
2111 
2112                 selIndex = cbSource.getSelectedIndex();
2113                 if ((selIndex >= 1) && (selIndex < (sources.size()+1))) {
2114                     MediaTray mt = sources.get(selIndex-1);
2115                     if (medium instanceof MediaTray) {
2116                         asCurrent.add(mt);
2117                     } else {
2118                         asCurrent.add(new SunAlternateMedia(mt));
2119                     }
2120                 }
2121 
2122 
2123             }
2124             cbSize.addItemListener(this);
2125             cbSource.addItemListener(this);
2126         }
2127     }
2128 
2129     @SuppressWarnings("serial") // Superclass is not serializable across versions
2130     private class OrientationPanel extends JPanel
2131         implements ActionListener
2132     {
2133         private final String strTitle = getMsg("border.orientation");
2134         private IconRadioButton rbPortrait, rbLandscape,
2135                                 rbRevPortrait, rbRevLandscape;
2136         private MarginsPanel pnlMargins = null;
2137 
2138         public OrientationPanel() {
2139             super();
2140 
2141             GridBagLayout gridbag = new GridBagLayout();
2142             GridBagConstraints c = new GridBagConstraints();
2143 
2144             setLayout(gridbag);
2145             setBorder(BorderFactory.createTitledBorder(strTitle));
2146 
2147             c.fill = GridBagConstraints.BOTH;
2148             c.insets = compInsets;
2149             c.weighty = 1.0;
2150             c.gridwidth = GridBagConstraints.REMAINDER;
2151 
2152             ButtonGroup bg = new ButtonGroup();
2153             rbPortrait = new IconRadioButton("radiobutton.portrait",
2154                                              "orientPortrait.png", true,
2155                                              bg, this);
2156             rbPortrait.addActionListener(this);
2157             addToGB(rbPortrait, this, gridbag, c);
2158             rbLandscape = new IconRadioButton("radiobutton.landscape",
2159                                               "orientLandscape.png", false,
2160                                               bg, this);
2161             rbLandscape.addActionListener(this);
2162             addToGB(rbLandscape, this, gridbag, c);
2163             rbRevPortrait = new IconRadioButton("radiobutton.revportrait",
2164                                                 "orientRevPortrait.png", false,
2165                                                 bg, this);
2166             rbRevPortrait.addActionListener(this);
2167             addToGB(rbRevPortrait, this, gridbag, c);
2168             rbRevLandscape = new IconRadioButton("radiobutton.revlandscape",
2169                                                  "orientRevLandscape.png", false,
2170                                                  bg, this);
2171             rbRevLandscape.addActionListener(this);
2172             addToGB(rbRevLandscape, this, gridbag, c);
2173         }
2174 
2175         public void actionPerformed(ActionEvent e) {
2176             Object source = e.getSource();
2177 
2178             if (rbPortrait.isSameAs(source)) {
2179                 asCurrent.add(OrientationRequested.PORTRAIT);
2180             } else if (rbLandscape.isSameAs(source)) {
2181                 asCurrent.add(OrientationRequested.LANDSCAPE);
2182             } else if (rbRevPortrait.isSameAs(source)) {
2183                 asCurrent.add(OrientationRequested.REVERSE_PORTRAIT);
2184             } else if (rbRevLandscape.isSameAs(source)) {
2185                 asCurrent.add(OrientationRequested.REVERSE_LANDSCAPE);
2186             }
2187             // orientation affects display of margins.
2188             if (pnlMargins != null) {
2189                 pnlMargins.updateInfo();
2190             }
2191         }
2192 
2193         /* This is ad hoc to keep things simple */
2194         void addOrientationListener(MarginsPanel pnl) {
2195             pnlMargins = pnl;
2196         }
2197 
2198         public void updateInfo() {
2199             Class<OrientationRequested> orCategory = OrientationRequested.class;
2200             boolean pSupported = false;
2201             boolean lSupported = false;
2202             boolean rpSupported = false;
2203             boolean rlSupported = false;
2204 
2205             if (isAWT) {
2206                 pSupported = true;
2207                 lSupported = true;
2208             } else
2209             if (psCurrent.isAttributeCategorySupported(orCategory)) {
2210                 Object values =
2211                     psCurrent.getSupportedAttributeValues(orCategory,
2212                                                           docFlavor,
2213                                                           asCurrent);
2214 
2215                 if (values instanceof OrientationRequested[]) {
2216                     OrientationRequested[] ovalues =
2217                         (OrientationRequested[])values;
2218 
2219                     for (int i = 0; i < ovalues.length; i++) {
2220                         OrientationRequested value = ovalues[i];
2221 
2222                         if (value == OrientationRequested.PORTRAIT) {
2223                             pSupported = true;
2224                         } else if (value == OrientationRequested.LANDSCAPE) {
2225                             lSupported = true;
2226                         } else if (value == OrientationRequested.REVERSE_PORTRAIT) {
2227                             rpSupported = true;
2228                         } else if (value == OrientationRequested.REVERSE_LANDSCAPE) {
2229                             rlSupported = true;
2230                         }
2231                     }
2232                 }
2233             }
2234 
2235 
2236             rbPortrait.setEnabled(pSupported);
2237             rbLandscape.setEnabled(lSupported);
2238             rbRevPortrait.setEnabled(rpSupported);
2239             rbRevLandscape.setEnabled(rlSupported);
2240 
2241             OrientationRequested or = (OrientationRequested)asCurrent.get(orCategory);
2242             if (or == null ||
2243                 !psCurrent.isAttributeValueSupported(or, docFlavor, asCurrent)) {
2244 
2245                 or = (OrientationRequested)psCurrent.getDefaultAttributeValue(orCategory);
2246                 // need to validate if default is not supported
2247                 if ((or != null) &&
2248                    !psCurrent.isAttributeValueSupported(or, docFlavor, asCurrent)) {
2249                     or = null;
2250                     Object values =
2251                         psCurrent.getSupportedAttributeValues(orCategory,
2252                                                               docFlavor,
2253                                                               asCurrent);
2254                     if (values instanceof OrientationRequested[]) {
2255                         OrientationRequested[] orValues =
2256                                             (OrientationRequested[])values;
2257                         if (orValues.length > 1) {
2258                             // get the first in the list
2259                             or = orValues[0];
2260                         }
2261                     }
2262                 }
2263 
2264                 if (or == null) {
2265                     or = OrientationRequested.PORTRAIT;
2266                 }
2267                 asCurrent.add(or);
2268             }
2269 
2270             if (or == OrientationRequested.PORTRAIT) {
2271                 rbPortrait.setSelected(true);
2272             } else if (or == OrientationRequested.LANDSCAPE) {
2273                 rbLandscape.setSelected(true);
2274             } else if (or == OrientationRequested.REVERSE_PORTRAIT) {
2275                 rbRevPortrait.setSelected(true);
2276             } else { // if (or == OrientationRequested.REVERSE_LANDSCAPE)
2277                 rbRevLandscape.setSelected(true);
2278             }
2279         }
2280     }
2281 
2282 
2283 
2284     /**
2285      * The "Appearance" tab.  Includes the controls for Chromaticity,
2286      * PrintQuality, JobPriority, JobName, and other related job attributes.
2287      */
2288     @SuppressWarnings("serial") // Superclass is not serializable across versions
2289     private class AppearancePanel extends JPanel {
2290 
2291         private ChromaticityPanel pnlChromaticity;
2292         private QualityPanel pnlQuality;
2293         private JobAttributesPanel pnlJobAttributes;
2294         private SidesPanel pnlSides;
2295 
2296         public AppearancePanel() {
2297             super();
2298 
2299             GridBagLayout gridbag = new GridBagLayout();
2300             GridBagConstraints c = new GridBagConstraints();
2301 
2302             setLayout(gridbag);
2303 
2304             c.fill = GridBagConstraints.BOTH;
2305             c.insets = panelInsets;
2306             c.weightx = 1.0;
2307             c.weighty = 1.0;
2308 
2309             c.gridwidth = GridBagConstraints.RELATIVE;
2310             pnlChromaticity = new ChromaticityPanel();
2311             addToGB(pnlChromaticity, this, gridbag, c);
2312 
2313             c.gridwidth = GridBagConstraints.REMAINDER;
2314             pnlQuality = new QualityPanel();
2315             addToGB(pnlQuality, this, gridbag, c);
2316 
2317             c.gridwidth = 1;
2318             pnlSides = new SidesPanel();
2319             addToGB(pnlSides, this, gridbag, c);
2320 
2321             c.gridwidth = GridBagConstraints.REMAINDER;
2322             pnlJobAttributes = new JobAttributesPanel();
2323             addToGB(pnlJobAttributes, this, gridbag, c);
2324 
2325         }
2326 
2327         public void updateInfo() {
2328             pnlChromaticity.updateInfo();
2329             pnlQuality.updateInfo();
2330             pnlSides.updateInfo();
2331             pnlJobAttributes.updateInfo();
2332         }
2333     }
2334 
2335     @SuppressWarnings("serial") // Superclass is not serializable across versions
2336     private class ChromaticityPanel extends JPanel
2337         implements ActionListener
2338     {
2339         private final String strTitle = getMsg("border.chromaticity");
2340         private JRadioButton rbMonochrome, rbColor;
2341 
2342         public ChromaticityPanel() {
2343             super();
2344 
2345             GridBagLayout gridbag = new GridBagLayout();
2346             GridBagConstraints c = new GridBagConstraints();
2347 
2348             setLayout(gridbag);
2349             setBorder(BorderFactory.createTitledBorder(strTitle));
2350 
2351             c.fill = GridBagConstraints.BOTH;
2352             c.gridwidth = GridBagConstraints.REMAINDER;
2353             c.weighty = 1.0;
2354 
2355             ButtonGroup bg = new ButtonGroup();
2356             rbMonochrome = createRadioButton("radiobutton.monochrome", this);
2357             rbMonochrome.setSelected(true);
2358             bg.add(rbMonochrome);
2359             addToGB(rbMonochrome, this, gridbag, c);
2360             rbColor = createRadioButton("radiobutton.color", this);
2361             bg.add(rbColor);
2362             addToGB(rbColor, this, gridbag, c);
2363         }
2364 
2365         public void actionPerformed(ActionEvent e) {
2366             Object source = e.getSource();
2367 
2368             // REMIND: use isSameAs if we move to a IconRB in the future
2369             if (source == rbMonochrome) {
2370                 asCurrent.add(Chromaticity.MONOCHROME);
2371             } else if (source == rbColor) {
2372                 asCurrent.add(Chromaticity.COLOR);
2373             }
2374         }
2375 
2376         public void updateInfo() {
2377             Class<Chromaticity> chCategory = Chromaticity.class;
2378             boolean monoSupported = false;
2379             boolean colorSupported = false;
2380 
2381             if (isAWT) {
2382                 monoSupported = true;
2383                 colorSupported = true;
2384             } else
2385             if (psCurrent.isAttributeCategorySupported(chCategory)) {
2386                 Object values =
2387                     psCurrent.getSupportedAttributeValues(chCategory,
2388                                                           docFlavor,
2389                                                           asCurrent);
2390 
2391                 if (values instanceof Chromaticity[]) {
2392                     Chromaticity[] cvalues = (Chromaticity[])values;
2393 
2394                     for (int i = 0; i < cvalues.length; i++) {
2395                         Chromaticity value = cvalues[i];
2396 
2397                         if (value == Chromaticity.MONOCHROME) {
2398                             monoSupported = true;
2399                         } else if (value == Chromaticity.COLOR) {
2400                             colorSupported = true;
2401                         }
2402                     }
2403                 }
2404             }
2405 
2406 
2407             rbMonochrome.setEnabled(monoSupported);
2408             rbColor.setEnabled(colorSupported);
2409 
2410             Chromaticity ch = (Chromaticity)asCurrent.get(chCategory);
2411             if (ch == null) {
2412                 ch = (Chromaticity)psCurrent.getDefaultAttributeValue(chCategory);
2413                 if (ch == null) {
2414                     ch = Chromaticity.MONOCHROME;
2415                 }
2416             }
2417 
2418             if (ch == Chromaticity.MONOCHROME) {
2419                 rbMonochrome.setSelected(true);
2420             } else { // if (ch == Chromaticity.COLOR)
2421                 rbColor.setSelected(true);
2422             }
2423         }
2424     }
2425 
2426     @SuppressWarnings("serial") // Superclass is not serializable across versions
2427     private class QualityPanel extends JPanel
2428         implements ActionListener
2429     {
2430         private final String strTitle = getMsg("border.quality");
2431         private JRadioButton rbDraft, rbNormal, rbHigh;
2432 
2433         public QualityPanel() {
2434             super();
2435 
2436             GridBagLayout gridbag = new GridBagLayout();
2437             GridBagConstraints c = new GridBagConstraints();
2438 
2439             setLayout(gridbag);
2440             setBorder(BorderFactory.createTitledBorder(strTitle));
2441 
2442             c.fill = GridBagConstraints.BOTH;
2443             c.gridwidth = GridBagConstraints.REMAINDER;
2444             c.weighty = 1.0;
2445 
2446             ButtonGroup bg = new ButtonGroup();
2447             rbDraft = createRadioButton("radiobutton.draftq", this);
2448             bg.add(rbDraft);
2449             addToGB(rbDraft, this, gridbag, c);
2450             rbNormal = createRadioButton("radiobutton.normalq", this);
2451             rbNormal.setSelected(true);
2452             bg.add(rbNormal);
2453             addToGB(rbNormal, this, gridbag, c);
2454             rbHigh = createRadioButton("radiobutton.highq", this);
2455             bg.add(rbHigh);
2456             addToGB(rbHigh, this, gridbag, c);
2457         }
2458 
2459         public void actionPerformed(ActionEvent e) {
2460             Object source = e.getSource();
2461 
2462             if (source == rbDraft) {
2463                 asCurrent.add(PrintQuality.DRAFT);
2464             } else if (source == rbNormal) {
2465                 asCurrent.add(PrintQuality.NORMAL);
2466             } else if (source == rbHigh) {
2467                 asCurrent.add(PrintQuality.HIGH);
2468             }
2469         }
2470 
2471         public void updateInfo() {
2472             Class<PrintQuality> pqCategory = PrintQuality.class;
2473             boolean draftSupported = false;
2474             boolean normalSupported = false;
2475             boolean highSupported = false;
2476 
2477             if (isAWT) {
2478                 draftSupported = true;
2479                 normalSupported = true;
2480                 highSupported = true;
2481             } else
2482             if (psCurrent.isAttributeCategorySupported(pqCategory)) {
2483                 Object values =
2484                     psCurrent.getSupportedAttributeValues(pqCategory,
2485                                                           docFlavor,
2486                                                           asCurrent);
2487 
2488                 if (values instanceof PrintQuality[]) {
2489                     PrintQuality[] qvalues = (PrintQuality[])values;
2490 
2491                     for (int i = 0; i < qvalues.length; i++) {
2492                         PrintQuality value = qvalues[i];
2493 
2494                         if (value == PrintQuality.DRAFT) {
2495                             draftSupported = true;
2496                         } else if (value == PrintQuality.NORMAL) {
2497                             normalSupported = true;
2498                         } else if (value == PrintQuality.HIGH) {
2499                             highSupported = true;
2500                         }
2501                     }
2502                 }
2503             }
2504 
2505             rbDraft.setEnabled(draftSupported);
2506             rbNormal.setEnabled(normalSupported);
2507             rbHigh.setEnabled(highSupported);
2508 
2509             PrintQuality pq = (PrintQuality)asCurrent.get(pqCategory);
2510             if (pq == null) {
2511                 pq = (PrintQuality)psCurrent.getDefaultAttributeValue(pqCategory);
2512                 if (pq == null) {
2513                     pq = PrintQuality.NORMAL;
2514                 }
2515             }
2516 
2517             if (pq == PrintQuality.DRAFT) {
2518                 rbDraft.setSelected(true);
2519             } else if (pq == PrintQuality.NORMAL) {
2520                 rbNormal.setSelected(true);
2521             } else { // if (pq == PrintQuality.HIGH)
2522                 rbHigh.setSelected(true);
2523             }
2524         }
2525 
2526 
2527     }
2528 
2529     @SuppressWarnings("serial") // Superclass is not serializable across versions
2530     private class SidesPanel extends JPanel
2531         implements ActionListener
2532     {
2533         private final String strTitle = getMsg("border.sides");
2534         private IconRadioButton rbOneSide, rbTumble, rbDuplex;
2535 
2536         public SidesPanel() {
2537             super();
2538 
2539             GridBagLayout gridbag = new GridBagLayout();
2540             GridBagConstraints c = new GridBagConstraints();
2541 
2542             setLayout(gridbag);
2543             setBorder(BorderFactory.createTitledBorder(strTitle));
2544 
2545             c.fill = GridBagConstraints.BOTH;
2546             c.insets = compInsets;
2547             c.weighty = 1.0;
2548             c.gridwidth = GridBagConstraints.REMAINDER;
2549 
2550             ButtonGroup bg = new ButtonGroup();
2551             rbOneSide = new IconRadioButton("radiobutton.oneside",
2552                                             "oneside.png", true,
2553                                             bg, this);
2554             rbOneSide.addActionListener(this);
2555             addToGB(rbOneSide, this, gridbag, c);
2556             rbTumble = new IconRadioButton("radiobutton.tumble",
2557                                            "tumble.png", false,
2558                                            bg, this);
2559             rbTumble.addActionListener(this);
2560             addToGB(rbTumble, this, gridbag, c);
2561             rbDuplex = new IconRadioButton("radiobutton.duplex",
2562                                            "duplex.png", false,
2563                                            bg, this);
2564             rbDuplex.addActionListener(this);
2565             c.gridwidth = GridBagConstraints.REMAINDER;
2566             addToGB(rbDuplex, this, gridbag, c);
2567         }
2568 
2569         public void actionPerformed(ActionEvent e) {
2570             Object source = e.getSource();
2571 
2572             if (rbOneSide.isSameAs(source)) {
2573                 asCurrent.add(Sides.ONE_SIDED);
2574             } else if (rbTumble.isSameAs(source)) {
2575                 asCurrent.add(Sides.TUMBLE);
2576             } else if (rbDuplex.isSameAs(source)) {
2577                 asCurrent.add(Sides.DUPLEX);
2578             }
2579         }
2580 
2581         public void updateInfo() {
2582             Class<Sides> sdCategory = Sides.class;
2583             boolean osSupported = false;
2584             boolean tSupported = false;
2585             boolean dSupported = false;
2586 
2587             if (psCurrent.isAttributeCategorySupported(sdCategory)) {
2588                 Object values =
2589                     psCurrent.getSupportedAttributeValues(sdCategory,
2590                                                           docFlavor,
2591                                                           asCurrent);
2592 
2593                 if (values instanceof Sides[]) {
2594                     Sides[] svalues = (Sides[])values;
2595 
2596                     for (int i = 0; i < svalues.length; i++) {
2597                         Sides value = svalues[i];
2598 
2599                         if (value == Sides.ONE_SIDED) {
2600                             osSupported = true;
2601                         } else if (value == Sides.TUMBLE) {
2602                             tSupported = true;
2603                         } else if (value == Sides.DUPLEX) {
2604                             dSupported = true;
2605                         }
2606                     }
2607                 }
2608             }
2609             rbOneSide.setEnabled(osSupported);
2610             rbTumble.setEnabled(tSupported);
2611             rbDuplex.setEnabled(dSupported);
2612 
2613             Sides sd = (Sides)asCurrent.get(sdCategory);
2614             if (sd == null) {
2615                 sd = (Sides)psCurrent.getDefaultAttributeValue(sdCategory);
2616                 if (sd == null) {
2617                     sd = Sides.ONE_SIDED;
2618                 }
2619             }
2620 
2621             if (sd == Sides.ONE_SIDED) {
2622                 rbOneSide.setSelected(true);
2623             } else if (sd == Sides.TUMBLE) {
2624                 rbTumble.setSelected(true);
2625             } else { // if (sd == Sides.DUPLEX)
2626                 rbDuplex.setSelected(true);
2627             }
2628         }
2629     }
2630 
2631 
2632     @SuppressWarnings("serial") // Superclass is not serializable across versions
2633     private class JobAttributesPanel extends JPanel
2634         implements ActionListener, ChangeListener, FocusListener
2635     {
2636         private final String strTitle = getMsg("border.jobattributes");
2637         private JLabel lblPriority, lblJobName, lblUserName;
2638         private JSpinner spinPriority;
2639         private SpinnerNumberModel snModel;
2640         private JCheckBox cbJobSheets;
2641         private JTextField tfJobName, tfUserName;
2642 
2643         public JobAttributesPanel() {
2644             super();
2645 
2646             GridBagLayout gridbag = new GridBagLayout();
2647             GridBagConstraints c = new GridBagConstraints();
2648 
2649             setLayout(gridbag);
2650             setBorder(BorderFactory.createTitledBorder(strTitle));
2651 
2652             c.fill = GridBagConstraints.NONE;
2653             c.insets = compInsets;
2654             c.weighty = 1.0;
2655 
2656             cbJobSheets = createCheckBox("checkbox.jobsheets", this);
2657             c.anchor = GridBagConstraints.LINE_START;
2658             addToGB(cbJobSheets, this, gridbag, c);
2659 
2660             JPanel pnlTop = new JPanel();
2661             lblPriority = new JLabel(getMsg("label.priority"), JLabel.TRAILING);
2662             lblPriority.setDisplayedMnemonic(getMnemonic("label.priority"));
2663 
2664             pnlTop.add(lblPriority);
2665             snModel = new SpinnerNumberModel(1, 1, 100, 1);
2666             spinPriority = new JSpinner(snModel);
2667             lblPriority.setLabelFor(spinPriority);
2668             // REMIND
2669             ((JSpinner.NumberEditor)spinPriority.getEditor()).getTextField().setColumns(3);
2670             spinPriority.addChangeListener(this);
2671             pnlTop.add(spinPriority);
2672             c.anchor = GridBagConstraints.LINE_END;
2673             c.gridwidth = GridBagConstraints.REMAINDER;
2674             pnlTop.getAccessibleContext().setAccessibleName(
2675                                        getMsg("label.priority"));
2676             addToGB(pnlTop, this, gridbag, c);
2677 
2678             c.fill = GridBagConstraints.HORIZONTAL;
2679             c.anchor = GridBagConstraints.CENTER;
2680             c.weightx = 0.0;
2681             c.gridwidth = 1;
2682             char jmnemonic = getMnemonic("label.jobname");
2683             lblJobName = new JLabel(getMsg("label.jobname"), JLabel.TRAILING);
2684             lblJobName.setDisplayedMnemonic(jmnemonic);
2685             addToGB(lblJobName, this, gridbag, c);
2686             c.weightx = 1.0;
2687             c.gridwidth = GridBagConstraints.REMAINDER;
2688             tfJobName = new JTextField();
2689             lblJobName.setLabelFor(tfJobName);
2690             tfJobName.addFocusListener(this);
2691             tfJobName.setFocusAccelerator(jmnemonic);
2692             tfJobName.getAccessibleContext().setAccessibleName(
2693                                              getMsg("label.jobname"));
2694             addToGB(tfJobName, this, gridbag, c);
2695 
2696             c.weightx = 0.0;
2697             c.gridwidth = 1;
2698             char umnemonic = getMnemonic("label.username");
2699             lblUserName = new JLabel(getMsg("label.username"), JLabel.TRAILING);
2700             lblUserName.setDisplayedMnemonic(umnemonic);
2701             addToGB(lblUserName, this, gridbag, c);
2702             c.gridwidth = GridBagConstraints.REMAINDER;
2703             tfUserName = new JTextField();
2704             lblUserName.setLabelFor(tfUserName);
2705             tfUserName.addFocusListener(this);
2706             tfUserName.setFocusAccelerator(umnemonic);
2707             tfUserName.getAccessibleContext().setAccessibleName(
2708                                              getMsg("label.username"));
2709             addToGB(tfUserName, this, gridbag, c);
2710         }
2711 
2712         public void actionPerformed(ActionEvent e) {
2713             if (cbJobSheets.isSelected()) {
2714                 asCurrent.add(JobSheets.STANDARD);
2715             } else {
2716                 asCurrent.add(JobSheets.NONE);
2717             }
2718         }
2719 
2720         public void stateChanged(ChangeEvent e) {
2721             asCurrent.add(new JobPriority(snModel.getNumber().intValue()));
2722         }
2723 
2724         public void focusLost(FocusEvent e) {
2725             Object source = e.getSource();
2726 
2727             if (source == tfJobName) {
2728                 asCurrent.add(new JobName(tfJobName.getText(),
2729                                           Locale.getDefault()));
2730             } else if (source == tfUserName) {
2731                 asCurrent.add(new RequestingUserName(tfUserName.getText(),
2732                                                      Locale.getDefault()));
2733             }
2734         }
2735 
2736         public void focusGained(FocusEvent e) {}
2737 
2738         public void updateInfo() {
2739             Class<JobSheets>          jsCategory = JobSheets.class;
2740             Class<JobPriority>        jpCategory = JobPriority.class;
2741             Class<JobName>            jnCategory = JobName.class;
2742             Class<RequestingUserName> unCategory = RequestingUserName.class;
2743             boolean jsSupported = false;
2744             boolean jpSupported = false;
2745             boolean jnSupported = false;
2746             boolean unSupported = false;
2747 
2748             // setup JobSheets checkbox
2749             if (psCurrent.isAttributeCategorySupported(jsCategory)) {
2750                 jsSupported = true;
2751             }
2752             JobSheets js = (JobSheets)asCurrent.get(jsCategory);
2753             if (js == null) {
2754                 js = (JobSheets)psCurrent.getDefaultAttributeValue(jsCategory);
2755                 if (js == null) {
2756                     js = JobSheets.NONE;
2757                 }
2758             }
2759             cbJobSheets.setSelected(js != JobSheets.NONE);
2760             cbJobSheets.setEnabled(jsSupported);
2761 
2762             // setup JobPriority spinner
2763             if (!isAWT && psCurrent.isAttributeCategorySupported(jpCategory)) {
2764                 jpSupported = true;
2765             }
2766             JobPriority jp = (JobPriority)asCurrent.get(jpCategory);
2767             if (jp == null) {
2768                 jp = (JobPriority)psCurrent.getDefaultAttributeValue(jpCategory);
2769                 if (jp == null) {
2770                     jp = new JobPriority(1);
2771                 }
2772             }
2773             int value = jp.getValue();
2774             if ((value < 1) || (value > 100)) {
2775                 value = 1;
2776             }
2777             snModel.setValue(value);
2778             lblPriority.setEnabled(jpSupported);
2779             spinPriority.setEnabled(jpSupported);
2780 
2781             // setup JobName text field
2782             if (psCurrent.isAttributeCategorySupported(jnCategory)) {
2783                 jnSupported = true;
2784             }
2785             JobName jn = (JobName)asCurrent.get(jnCategory);
2786             if (jn == null) {
2787                 jn = (JobName)psCurrent.getDefaultAttributeValue(jnCategory);
2788                 if (jn == null) {
2789                     jn = new JobName("", Locale.getDefault());
2790                 }
2791             }
2792             tfJobName.setText(jn.getValue());
2793             tfJobName.setEnabled(jnSupported);
2794             lblJobName.setEnabled(jnSupported);
2795 
2796             // setup RequestingUserName text field
2797             if (!isAWT && psCurrent.isAttributeCategorySupported(unCategory)) {
2798                 unSupported = true;
2799             }
2800             RequestingUserName un = (RequestingUserName)asCurrent.get(unCategory);
2801             if (un == null) {
2802                 un = (RequestingUserName)psCurrent.getDefaultAttributeValue(unCategory);
2803                 if (un == null) {
2804                     un = new RequestingUserName("", Locale.getDefault());
2805                 }
2806             }
2807             tfUserName.setText(un.getValue());
2808             tfUserName.setEnabled(unSupported);
2809             lblUserName.setEnabled(unSupported);
2810         }
2811     }
2812 
2813 
2814 
2815 
2816     /**
2817      * A special widget that groups a JRadioButton with an associated icon,
2818      * placed to the left of the radio button.
2819      */
2820     @SuppressWarnings("serial") // Superclass is not serializable across versions
2821     private class IconRadioButton extends JPanel {
2822 
2823         private JRadioButton rb;
2824         private JLabel lbl;
2825 
2826         public IconRadioButton(String key, String img, boolean selected,
2827                                ButtonGroup bg, ActionListener al)
2828         {
2829             super(new FlowLayout(FlowLayout.LEADING));
2830             final URL imgURL = getImageResource(img);
2831             Icon icon = java.security.AccessController.doPrivileged(
2832                                  new java.security.PrivilegedAction<Icon>() {
2833                 public Icon run() {
2834                     Icon icon = new ImageIcon(imgURL);
2835                     return icon;
2836                 }
2837             });
2838             lbl = new JLabel(icon);
2839             add(lbl);
2840 
2841             rb = createRadioButton(key, al);
2842             rb.setSelected(selected);
2843             addToBG(rb, this, bg);
2844         }
2845 
2846         public void addActionListener(ActionListener al) {
2847             rb.addActionListener(al);
2848         }
2849 
2850         public boolean isSameAs(Object source) {
2851             return (rb == source);
2852         }
2853 
2854         public void setEnabled(boolean enabled) {
2855             rb.setEnabled(enabled);
2856             lbl.setEnabled(enabled);
2857         }
2858 
2859         public boolean isSelected() {
2860             return rb.isSelected();
2861         }
2862 
2863         public void setSelected(boolean selected) {
2864             rb.setSelected(selected);
2865         }
2866     }
2867 
2868     /**
2869      * Similar in functionality to the default JFileChooser, except this
2870      * chooser will pop up a "Do you want to overwrite..." dialog if the
2871      * user selects a file that already exists.
2872      */
2873     @SuppressWarnings("serial") // JDK implementation class
2874     private class ValidatingFileChooser extends JFileChooser {
2875         public void approveSelection() {
2876             File selected = getSelectedFile();
2877             boolean exists;
2878 
2879             try {
2880                 exists = selected.exists();
2881             } catch (SecurityException e) {
2882                 exists = false;
2883             }
2884 
2885             if (exists) {
2886                 int val;
2887                 val = JOptionPane.showConfirmDialog(this,
2888                                                     getMsg("dialog.overwrite"),
2889                                                     getMsg("dialog.owtitle"),
2890                                                     JOptionPane.YES_NO_OPTION);
2891                 if (val != JOptionPane.YES_OPTION) {
2892                     return;
2893                 }
2894             }
2895 
2896             try {
2897                 if (selected.createNewFile()) {
2898                     selected.delete();
2899                 }
2900             }  catch (IOException ioe) {
2901                 JOptionPane.showMessageDialog(this,
2902                                    getMsg("dialog.writeerror")+" "+selected,
2903                                    getMsg("dialog.owtitle"),
2904                                    JOptionPane.WARNING_MESSAGE);
2905                 return;
2906             } catch (SecurityException se) {
2907                 //There is already file read/write access so at this point
2908                 // only delete access is denied.  Just ignore it because in
2909                 // most cases the file created in createNewFile gets
2910                 // overwritten anyway.
2911             }
2912             File pFile = selected.getParentFile();
2913             if ((selected.exists() &&
2914                       (!selected.isFile() || !selected.canWrite())) ||
2915                      ((pFile != null) &&
2916                       (!pFile.exists() || (pFile.exists() && !pFile.canWrite())))) {
2917                 JOptionPane.showMessageDialog(this,
2918                                    getMsg("dialog.writeerror")+" "+selected,
2919                                    getMsg("dialog.owtitle"),
2920                                    JOptionPane.WARNING_MESSAGE);
2921                 return;
2922             }
2923 
2924             super.approveSelection();
2925         }
2926     }
2927 }