Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple GUI Toolkits For Use With Clojure

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.

like image 750
octopusgrabbus Avatar asked Feb 02 '12 18:02

octopusgrabbus


1 Answers

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

That allow you to use the SWING standard widgets in Clojure

like image 188
thermz Avatar answered Nov 11 '22 03:11

thermz