Here is a very simple Scala GUI test:
import scala.swing._
object FirstSwingApp extends SimpleGUIApplication {
def top = new MainFrame {
contents = new GridPanel(30, 20) {
contents ++= 1 to 600 map (_ => new Label("test"))
}
}
}
Every contained label is displayed exactly as big as it needs to be:

Now I want to replace Label with a custom type:
contents ++= 1 to 600 map (_ => new Foo)
class Foo extends Panel {
override def minimumSize = {
println("minimumSize")
new java.awt.Dimension(32, 32)
}
override def preferredSize = {
println("preferredSize")
new java.awt.Dimension(32, 32)
}
override def maximumSize = {
println("maximumSize")
new java.awt.Dimension(32, 32)
}
}
But the result is way too small:

Apparently, none of the xxxSize methods gets called, because the program produces no console output. What exactly do I have to change so that each Foo is displayed with a size of 32x32 pixels?