I'm using a self-made DesktopPaneUI for a JDesktopPane, I've written the proper methods for the class, and I'm running into trouble. When I resize the JDesktopPane, the background image doesn't resize with the frame. The image appears to be clipped at the size it was when the window initially opened. I'm giving it an image larger than the window, and I'm still having this problem.

Here's my method call inside the constructor of my desktopUI class.

super();
this.background = javax.imageio.ImageIO.read(new File(fileName));

Is there a way I can change my main class where I set the UI, or the myDesktopPaneUI class such that the background still fills the window when the JDesktopPane changes size?

setUI(new myDesktopPaneUI("media/bg.jpg"));
link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

Override paint() to invoke drawImage() in a way that scales the image to the pane's size:

@Override
public void paint(Graphics g, JComponent c) {
    g.drawImage(image, 0, 0, c.getWidth(), c.getHeight(), null);
}
link|improve this answer
feedback

If you are only creating the custom UI to add the background image, the easier approach is to do custom painting of the JDesktopPane so that it works for all LAF's:

JDesktopPane desktop = new JDesktopPane()
{
    protected void paintComponent(Graphics g)
    {
        g.drawImage(image, 0, 0, getWidth(), getHeight(), null);
    }

};

Normally you would invoke super.paintComponent(g) first, but since the image will cover the entire background there is no need to do this.

link|improve this answer
1  
even when covering everything, it might have transparent areas - so not calling super is complying to super's contract only if opaque == false. which it isn't by default and can be changed by client code at any time. So it's not really safe, and letting your IDE type one additional line is ... :-) – kleopatra Dec 5 '11 at 10:47
@kleopatra, Good point ;) – camickr Dec 5 '11 at 15:58
feedback

Use a component Listener to know when the windows has been resized and then rescale the image using

image.getScaledInstance(getWidth(), getHeight(), 0);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.