Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The long and short of this question is which GUI tool kits create very simple UIs and are easy to use work with Clojure? Here are further details to narrow down my question.

I want to create very simple GUI applications that will run on Windows, without investing in a huge GUI design effort.

For example, our personnel department gets an insurance bill from our vendor for a number of subscribers and wants to audit that information against what their local insurance application thinks the subscribers are.

I would like to write these applications in Clojure, and also take advantage of simple GUI packages.

Which is the simplest tool that can be used with Clojure to create a primitive UI? By primitive UI I mean something like an old Windows 3.1 (16-bit) modal dialog box.

share|improve this question
1  
Clojure can use Swing ya? Try any of the Swing design tools yet? – Rig Feb 2 '12 at 18:46
Thanks. I have heard of swing. – octopusgrabbus Feb 2 '12 at 18:58
1  
Of possible interest: What is the best way to do GUIs in Clojure? – chl Jun 21 '12 at 10:18

1 Answer

up vote 15 down vote accepted

How about using SEESAW https://github.com/daveray/seesaw

That allow you to use the SWING standard widgets in Clojure

share|improve this answer
That actually looks a bit better than using swing directly. – Rig Feb 2 '12 at 19:05
6  
I'm extremely biased, but it's actually way better than using Swing directly :) – Dave Ray Feb 2 '12 at 21:39
1  
There are some great examples on Julian Gamble's website: juliangamble.com/blog – Sun Ning Feb 3 '12 at 7:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.