octopusgrabbus
octopusgrabbus

Reputation: 10685

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.

Upvotes: 10

Views: 2344

Answers (1)

thermz
thermz

Reputation: 2406

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

That allow you to use the SWING standard widgets in Clojure

Upvotes: 18

Related Questions