1 /*
   2  * Copyright (c) 2016, 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.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25   @test
  26   @bug 8042713
  27   @summary  Print Dialog does not update attribute set with page range 
  28   @run main/manual PrintAttributeUpdateTest
  29  */
  30 import java.awt.Component;
  31 import java.awt.Graphics;
  32 import java.awt.Graphics2D;
  33 import java.awt.print.PageFormat;
  34 import java.awt.print.Pageable;
  35 import java.awt.print.Paper;
  36 import java.awt.print.Printable;
  37 import java.awt.print.PrinterJob;
  38 import javax.print.attribute.Attribute;
  39 import javax.print.attribute.HashPrintRequestAttributeSet;
  40 import javax.print.attribute.standard.DialogTypeSelection;
  41 import javax.print.attribute.standard.PageRanges;
  42 import javax.swing.JOptionPane;
  43 import javax.swing.SwingUtilities;
  44 
  45 public class PrintAttributeUpdateTest implements Pageable, Printable {
  46 
  47     public static void main(String args[]) throws Exception {
  48         String[] instructions = 
  49         {
  50             "Select Pages Range From instead of All in print dialog. ",            
  51             "Then select Print",
  52         };
  53         SwingUtilities.invokeAndWait(() -> {
  54             JOptionPane.showMessageDialog((Component)null,
  55                     instructions, "Instructions", 
  56                     JOptionPane.INFORMATION_MESSAGE);
  57         });
  58         HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet();
  59         PrinterJob j = PrinterJob.getPrinterJob();
  60         j.setPageable(new PrintAttributeUpdateTest());
  61         as.add(DialogTypeSelection.NATIVE);
  62         j.printDialog(as);
  63         if (as.containsKey(PageRanges.class) == false) {
  64             throw new RuntimeException("Print Dialog did not update attribute set with page range");
  65         }
  66         Attribute attrs[] = as.toArray();
  67         for (int i = 0; i < attrs.length; i++) {
  68             System.out.println("attr " + attrs[i]);
  69         }
  70     }
  71 
  72     public int getNumberOfPages() {
  73         return UNKNOWN_NUMBER_OF_PAGES;
  74     }
  75 
  76     public PageFormat getPageFormat(int pageIndex) {
  77         PageFormat pf = new PageFormat();     
  78         return pf;
  79     }
  80 
  81     public Printable getPrintable(int pageIndex) {
  82         return this;
  83     }
  84 
  85     public int print(Graphics g, PageFormat pgFmt, int pgIndex) {                
  86         return Printable.NO_SUCH_PAGE;
  87     }
  88 
  89 }