This is now community maintained by @benhutchison & @Sciss. If you're interested in helping then contact them or @adriaanm.
This is a UI library that will wrap most of Java Swing for Scala in a straightforward manner. The widget class hierarchy loosely resembles that of Java Swing. The main differences are:
- In Java Swing all components are containers per default. This doesn't make much sense for a number of components, like TextField, CheckBox, RadioButton, and so on. Our guess is that this architecture was chosen because Java lacks multiple inheritance. In scala-swing, components that can have child components extend the Container trait.
- Layout managers and panels are coupled. There is no way to exchange the layout manager of a panel. As a result, the layout constraints for widgets can be typed. (Note that you gain more type-safety and don't loose much flexibility here. Besides being not a common operation, exchanging the layout manager of a panel in Java Swing almost always leads to exchanging the layout constraints for every of the panel's child component. In the end, it is not more work to move all children to a newly created panel.)
The event system. TODO.
- For more details see SIP-8
The library comprises two main packages:
scala.swing
: All widget classes and traits.scala.swing.event
: The event hierarchy.
A number of examples can be found in the examples
project.
A good place to start is [12] scala.swing.examples.UIDemo
(index number may be different for you). This pulls in the all the other examples into a tabbed window.
$ sbt examples/run
Multiple main classes detected, select one to run:
[1] scala.swing.examples.ButtonApp
[2] scala.swing.examples.Dialogs
[3] scala.swing.examples.ComboBoxes
[4] scala.swing.examples.CelsiusConverter2
[5] scala.swing.examples.ListViewDemo
[6] scala.swing.examples.HelloWorld
[7] scala.swing.examples.LabelTest
[8] scala.swing.examples.PopupDemo
[9] scala.swing.examples.ColorChooserDemo
[10] scala.swing.examples.LinePainting
[11] scala.swing.examples.GridBagDemo
[12] scala.swing.examples.UIDemo
[13] scala.swing.examples.TableSelection
[14] scala.swing.examples.CelsiusConverter
[15] scala.swing.examples.SwingApp
[16] scala.swing.examples.CountButton
Enter number:
- The
1.0.x
branch is compiled with JDK 6 and released for Scala 2.10, 2.11. The 1.0.x releases can be used with both Scala versions on JDK 6 or newer. - The
2.0.x
branch is compiled with JDK 8 and released for Scala 2.11 and 2.12.- When using Scala 2.11, you can use the Scala swing 2.0.x releases on JDK 6 or newer.
- Scala 2.12 requires you to use JDK 8 (that has nothing to do with scala-swing).
The reason to have two versions is to allow for binary incompatible changes. Also, some java-swing classes were generified in JDK 7 (see SI-3634) and require the scala-swing soruces to be adjusted.
The API documentation for scala-swing can be found at http://www.scala-lang.org/documentation/api.html.
Current changes are being made on the 2.0.x
branch.