I don't know Java or swing, but I'm quite familiar with Scala and I have no problems using it for my purposes. But when I try to implement GUI I get a lot of problems/bugs that documentation can't easily solve. I guess scala.swing examples could help a lot !

Are there any small but not trivial and well written apps using scala.swing that I could learn from?

link|improve this question

62% accept rate
feedback

4 Answers

up vote 5 down vote accepted

There are many good examples in sources. I recommend checking it out.

Also, Ingo posted a nice intro to the scala.swing design.

I found that reading the sources wasn't so hard and helped a lot.

link|improve this answer
feedback

Official scala.swing description http://www.scala-lang.org/sites/default/files/sids/imaier/Mon,%202009-11-02,%2008:55/scala-swing-design.pdf has a number of good examples. Also there are examples in "Programming in Scala" book by Martin Odersky and others.

link|improve this answer
feedback

The last chapter (Ch. 33) in Odersky's Programming in Scala goes through the process of making a simple but certainly non-trivial GUI spreadsheet program using Scala. It's a pretty rich GUI application and the source (as well as explanation) is all there. The chapter before it details GUI programming using scala.swing and is full of examples, but doesn't have very many complete ones.

Scala isn't used too heavily in creating desktop applications, but it certainly can be done. If you want a GUI with a Scala app, Swing definitely does the trick (it's used in it's Java form in a number of popular desktop apps, like Eclipse, and scala.swing is just a wrapper for javax.swing).

link|improve this answer
2  
Note that scala.swing has been significantly changed in Scala 2.8, while the first edition of Programming in Scala documents 2.7. – Alexey Romanov Dec 23 '10 at 10:37
@Alexey the second edition is coming out soon which retains the spreadsheet example and is Scala 2.8 specific. – Rafe Kettler Dec 23 '10 at 13:58
feedback

Here's a short presentation by Ken Scambler in which he explains the basic idea of scala.swing and does some nice tricks using mixin composition to paint components.

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.