views:

133

answers:

1

I'm trying to do a printable component (an invoice document). I use JComponent instead of JPanel because I don't want a background. The component has many subcomponents.

The main component implements Printable and has a print-method that is calling printAll(g) so that all subcomponents should be printed. But my subcomponents doesn't print.

What am I missing? Does all subcomponents also has to implement Printable?

In my code below, the TopHeader is not printed.

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class PPanel extends JComponent implements Printable {
    static double w;
    static double h;

    public PPanel() {
        this.setLayout(new BorderLayout());

        this.add(new JLabel("Document Body"), BorderLayout.CENTER);
        this.add(new TopHeader(), BorderLayout.NORTH);
    }

    class TopHeader extends JComponent {
        public TopHeader() {
            this.setLayout(new BorderLayout());
            JLabel companyName = new JLabel("Company name");
            JLabel docType = new JLabel("Document type");
            this.add(companyName, BorderLayout.WEST);
            this.add(docType, BorderLayout.EAST);
        }
    }

    public static void main(String[] args) {
        final PPanel p = new PPanel();
        PrinterJob job = PrinterJob.getPrinterJob();
        job.setPrintable(p);
        try {
            job.print();
        } catch (PrinterException ex) {
            // print failed
        }
            // Preview
        new JFrame() {{ getContentPane().add(p); this.setSize((int)w, (int)h); setVisible(true); }};

    }

    @Override
    public int print(Graphics g, PageFormat pf, int page)
            throws PrinterException {
        if (page > 0) {
            return NO_SUCH_PAGE;
        }

        Graphics2D g2d = (Graphics2D)g;
        g2d.translate(pf.getImageableX(), pf.getImageableY());

        w = pf.getImageableWidth();
        h = pf.getHeight();

        this.setSize((int)w, (int)h);
        this.setPreferredSize(new Dimension((int)w, (int)h));
        this.doLayout();

        this.printAll(g);
        return PAGE_EXISTS;
    }
}
+1  A: 

You could probably loop through the Component[] returned by getComponents(), but a simple expedient is shown below. Note the difference between the screen preview and the printout. Also, note the use of validate() in preference to doLayout(). Finally, as a convenience for previewing, this example implements Using Print Setup Dialogs.

Addendum: You might also look at Printing Support in Swing Components and compare the approach taken in this example.

import java.awt.*;
import java.awt.print.*;
import javax.swing.*;

public class PPanel extends JComponent implements Printable {

    private JComponent top = new TopHeader();
    private JComponent mid = new JLabel("Document Body");

    public PPanel() {
        this.setLayout(new BorderLayout());
        this.add(top, BorderLayout.NORTH);
        this.add(mid, BorderLayout.CENTER);
    }

    private static class TopHeader extends JComponent {

        public TopHeader() {
            this.setLayout(new BorderLayout());
            JLabel companyName = new JLabel("Company name");
            JLabel docType = new JLabel("Document type");
            this.add(companyName, BorderLayout.WEST);
            this.add(docType, BorderLayout.EAST);
        }
    }

    @Override
    public int print(Graphics g, PageFormat pf, int page)
        throws PrinterException {
        if (page > 0) {
            return NO_SUCH_PAGE;
        }
        Graphics2D g2d = (Graphics2D)g;
        g2d.translate(pf.getImageableX(), pf.getImageableY());
        int w = (int)pf.getImageableWidth();
        int h = (int)pf.getImageableHeight();
        top.setSize(new Dimension(w, top.getPreferredSize().height));
        this.setSize(w, h);
        this.validate();
        this.printAll(g2d);
        return PAGE_EXISTS;
    }

    public static void main(String[] args) {
        final PPanel p = new PPanel();
        // Preview before print()
        new JFrame() {
            {
                this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                this.add(p);
                this.pack();
                this.setVisible(true);
            }
        };
        PrinterJob pj = PrinterJob.getPrinterJob();
        PageFormat pf = pj.pageDialog(pj.defaultPage());
        pj.setPrintable(p, pf);
        if (pj.printDialog()) {
            try {
                pj.print();
            } catch (PrinterException pe) {
                pe.printStackTrace();
            }
        }
    }
}
trashgod
Thanks, but I don't understand how I can use I.e. `javax.swing.text.JTextComponent.print()` in my example if I use a JTextField istead of my JLabel. Isn't the `print()` method called when I do `printAll(g)` ? Or do I have to write any specific code for this?
Jonas
It depends on whether you want to print what's on the screen or what's in the `JTextComponent` that may be too big to fit without scrolling.
trashgod