Clojure: CSS / DOM as a user interface for Java

Notes:

The answer is NOT clojurescript. I want the code in Clojure, not ClojureScript.

Context:

I like the CSS / DOM model for user interfaces more than I like Java Graphics2D.

Question:

Is there any way / some project that embeds WebKit in a Java application? I would like to be able to code in Java, but also have the ability to have a graphical interface that I can control / manipulate with CSS / DOM.

Thank!

+5
source share
3 answers

CSS/DOM, seesaw Swing CSS.

+2

You can find a list of more or less mature GUIs here .

The aforementioned Seesaw can fit. GUIFTW uses CSS-like style sheets to describe the user interface and may also satisfy your needs, but it has not been updated for a year.

+1
source

All Articles