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);
}
}