1 /* 2 * Copyright (c) 2016, 2017, 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 8170578 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.print.PageFormat; 33 import java.awt.print.Pageable; 34 import java.awt.print.Printable; 35 import java.awt.print.PrinterJob; 36 import javax.print.attribute.Attribute; 37 import javax.print.attribute.HashPrintRequestAttributeSet; 38 import javax.print.attribute.standard.DialogTypeSelection; 39 import javax.print.attribute.standard.PageRanges; 40 import javax.swing.JOptionPane; 41 import javax.swing.SwingUtilities; 42 43 public class PrintAttributeUpdateTest implements Pageable, Printable { 44 45 public static void main(String args[]) throws Exception { 46 String[] instructions 47 = { 48 "Select Pages Range From instead of All in print dialog. ", 49 "Then select Print" 50 }; 51 SwingUtilities.invokeAndWait(() -> { 52 JOptionPane.showMessageDialog((Component) null, 53 instructions, "Instructions", 54 JOptionPane.INFORMATION_MESSAGE); 55 }); 56 HashPrintRequestAttributeSet as = new HashPrintRequestAttributeSet(); 57 PrinterJob j = PrinterJob.getPrinterJob(); 58 j.setPageable(new PrintAttributeUpdateTest()); 59 as.add(DialogTypeSelection.NATIVE); 60 j.printDialog(as); 61 if (as.containsKey(PageRanges.class) == false) { 62 throw new RuntimeException("Print Dialog did not update " 63 + " attribute set with page range"); 64 } 65 Attribute attrs[] = as.toArray(); 66 for (int i = 0; i < attrs.length; i++) { 67 System.out.println("attr " + attrs[i]); 68 } 69 j.print(as); 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 pi) { 86 g.drawString("Page : " + (pi + 1), 200, 200); 87 88 return PAGE_EXISTS; 89 } 90 91 }