I'm experimenting with some Swing LaF code, and I've encountered a problem.

Active LaF: Substance.
Active Substance Skin: RavenSkin (tested with others).

I'm using a JFrame with a BorderLayout on the content pane. I've added a JPanel with a button on the side, and I add a JPanel in the center So far, so good. The window is dynamically sizable with the mouse.

Now, I add a Canvas to the JPanel in the center. All of a sudden, there's a bug with the resizing code - I can enlarge the window by dragging the corners, but I can't shrink it. I'm left with a strange behavior where the JFrame only gets bigger and bigger - obviously not optimal.

When I change to a different LaF (default, Nimbus) the behavior works as expected, and I can both shrink and enlarge. The faulty behavior seems to be limited to Substance.

Is this a bug with the package itself? If so, is there a way to fix it / get around it while still using a Canvas?


NOTE: I need to be able to use a Canvas - the point of this is to contain an LWJGL application inside a JFrame, and I'd like to be able to use a better-looking LaF than the defaults.


As requested, here's some compilable, runnable code that shows the bug (on my machine, at least):

import java.awt.Canvas;

import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;

import org.pushingpixels.substance.api.SubstanceLookAndFeel;
import org.pushingpixels.substance.api.skin.RavenSkin;

public class CanvasTest extends JFrame
{
    private static final long serialVersionUID = -6209080597456869531L;

    public CanvasTest()
    {
        super("JFrame - Canvas Test");
        setSize(600, 400);
        setLocationRelativeTo(null);
        getContentPane().add(new Canvas());
        setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
    }

    public static void main(String[] args)
    {
        JFrame.setDefaultLookAndFeelDecorated(true);
        SwingUtilities.invokeLater(new Thread() {
            public void run()
            {
                try
                {
                    UIManager.setLookAndFeel("org.pushingpixels.substance." +
                    "api.skin.SubstanceBusinessLookAndFeel");
                }
                catch (Exception e)
                {
                    e.printStackTrace();
                }
                SubstanceLookAndFeel.setSkin(new RavenSkin());
            }
        });

        new CanvasTest().setVisible(true);
    }
}
link|improve this question

2  
Using validate() doesn't fix it. Anyway, It's not a rendering problem, its a problem with how the resizing works. – CodeBunny Jun 1 '11 at 11:39
Looks like we are going to need a compilable code segment that demonstrates this, prefferably a complete class. Sounds like a bug that should be worked, but I don't have the time to attempt to recreate it from whole cloth. – shemnon Jun 7 '11 at 21:38
There, it's been done. It's pretty simple - add a Canvas to the JFrame, and it doesn't shrink (but it does expand). Comment out the code that enables Substance, and it works. – CodeBunny Jun 11 '11 at 13:29
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.