Skip to content

Instantly share code, notes, and snippets.

@daveray
Created December 7, 2011 04:55
Show Gist options
  • Save daveray/1441520 to your computer and use it in GitHub Desktop.
Save daveray/1441520 to your computer and use it in GitHub Desktop.
Seesaw REPL Tutorial
; A REPL-based, annotated Seesaw tutorial
; Please visit https://github.com/daveray/seesaw for more info
;
; This is a very basic intro to Seesaw, a Clojure UI toolkit. It covers
; Seesaw's basic features and philosophy, but only scratches the surface
; of what's available. It only assumes knowledge of Clojure. No Swing or
; Java experience is needed.
;
; This material was first presented in a talk at @CraftsmanGuild in
; Ann Arbor, MI.
;
; Dave Ray, December 2011
; First install Leiningen (https://github.com/technomancy/leiningen) and
; create a new project. In a terminal:
;
; $ lein new hello-seesaw
; $ cd hello-seesaw
; $ edit project.clj and add [seesaw "1.2.2"] to :dependencies
; $ lein deps
; Now let's start up the REPL and do some Seesaw stuff. Repl results are
; marked with ;=> in the usual way.
$ lein repl
; Here we go. First will use Seesaw and stuff
(use 'clojure.repl)
;=> nil
(use 'seesaw.core)
;=> nil
; Now before we create any UI stuff, tell Seesaw to try to make things look as
; native as possible. This puts the menubar in the right place on Mac, etc.
(native!)
;=> nil
; Now we'll start by making a frame to put stuff in. Most Seesaw widgets are
; constructed with simple functions that take :keyword/value pairs.
; (seesaw.core/frame) creates a new frame.
(def f (frame :title "Get to know Seesaw"))
;=> #'user/f
; So now we have a frame, but we haven't displayed it yet. Usually, we
; want to pack and show a frame. pack! just auto-sizes the frame for its
; contents
(-> f pack! show!)
;=> #<JFrame ... >
; Note that pack! and show! both return their argument so they can be chained.
; This is true of most Seesaw functions with side-effects.
;
; At this point you should have a very small, very boring window on your screen.
;
;
; +-----------------------------+
; | Get to know Seesaw x|
; +-----------------------------+
; | |
; +-----------------------------+
;
; The properties of a widget can be queried ...
(config f :title)
;=> "Get to know Seesaw"
; ... and modified
(config! f :title "No RLY, get to know Seesaw!")
;=> #<JFrame ...>
; Note that the title of the frame changed!
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; | |
; +------------------------------+
; So we have an empty frame. Let's give it some content
(config! f :content "This is some content")
;=> #<JFrame ... >
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; | This is some content |
; +------------------------------+
; Now we have a frame with a label in it. When Seesaw sees something like a
; string, it will create a label, mostly out of habit. Of course, we could
; create a label ourselves ...
(def lbl (label "I'm another label"))
;=> #'user/lbl
; and show it in the frame
(config! f :content lbl)
;=> #<JFrame ... >
; You know, we're going to be doing that a lot. Let's make a function
(defn display [content]
(config! f :content content)
content)
;=> #'user/display
(display lbl)
; Like the frame, a label can be manipulated with (config!). We can set some
; colors
(config! lbl :background :pink :foreground "#00f")
;=> #<JLabel ... >
; Seesaw knows about CSS color names and codes. Notice how we can set as many
; properties as we want with one (config!) call
; We can change the font too
(config! lbl :font "ARIAL-BOLD-21")
;=> #<JLabel ... >
; "FAMILY-STYLE-SIZE" is conventient, but using (seesaw.font/font) we get a
; little more control
(use 'seesaw.font)
;=> nil
(config! lbl :font (font :name :monospaced
:style #{:bold :italic}
:size 18))
;=> #<JLabel ... >
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; So we know a little about labels now. How about a button?
(def b (button :text "Click Me"))
;=> #'user/b
; Sometimes we might want to show a message ...
(alert "I'm an alert")
;=> nil
; or get input from the user ...
(input "What's your favorite color?")
;=> "Blue"
; Notice that both functions block until the popup is dismissed. They both
; take an additional, initial argument which indicates which frame they're
; associated with. Otherwise, they'll just pop up in the middle of your screen
; Let's get back to our button and get him doing something...
(display b)
;=> #<JButton>
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; |+----------------------------+|
; || ||
; || Click Me ||
; || ||
; |+----------------------------+|
; +------------------------------+
;
; Click it. Nothing happens.
; Seesaw's (listen) function let's us register handler functions for events on
; a widget. All buttons support an :action event. So,
(listen b :action (fn [e] (alert e "Thanks!")))
;=> #<core$juxt$fn__3775 clojure.core$juxt$fn__3775@2e46638f>
; Now we can click the button and see something happen. The 'e' parameter
; is an event object. Most of the time in Seesaw, an event object can be used
; as a proxy for the widget that triggered the event. In this case, the button
; becomes the "parent" of the alert, so it's placed nicely over our frame.
; Also note that (listen) returned a function. Calling this function will
; undo the effects of the (listen) call, i.e. unregister the listener
(*1)
;=> [...]
; Now clicking does nothing again.
; (listen) can register multiple event handlers at once
(listen b :mouse-entered #(config! % :foreground :blue)
:mouse-exited #(config! % :foreground :red))
;=> #<core$juxt$fn__3775 clojure.core$juxt$fn__3775@2e46638f>
; Move the mouse over the buttons to see the text color change. Again note
; that we're using the event parameter as a proxy for the button. This
; time with (config!).
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Now let's talk about a slightly more interesting widget, a listbox.
(def lb (listbox :model (-> 'seesaw.core ns-publics keys sort)))
;=> #<JList ...>
(display lb)
;=> #<JList ...>
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; |#abtract-panel################|
; | action |
; | add! |
; | add!* |
; | alert |
; +------------------------------+
; (listbox)'s most important option is :model which can take any (finite)
; sequence and display it. Items are displayed using (str) unless a custom
; :renderer is used.
; This listbox is ok, but our list doesn't fit in the frame and there's no
; scrollbars. You can add scrolling to most widgets with (scrollable) ...
(display (scrollable lb))
;=> #<JScrollPane ... >
; Now that we have a list, it'd be nice to know what its selection is. Seesaw
; has a unified nice selection interface. If there's no selection we get nil
(selection lb)
;=> nil
; Otherwise, we get the value:
(selection lb)
;=> abstract-panel
(type *1)
;=> clojure.lang.Symbol
; Note we get the same objects out that we put in the :model above.
; If we want multi-selection (shift/ctrl-click)
(selection lb {:multi? true})
;=> (action add! add!* alert)
; Similarly, we can set the selection
(selection! lb 'all-frames)
;=> #<JList ... >
; was all-frames selected for you too?
; Finally, we might want to know when the selection changes. Everybody
; supports the :selection event
(listen lb :selection (fn [e] (println "Selection is " (selection e))))
;=> #<core$juxt$fn__3775 clojure.core$juxt$fn__3775@2e46638f>
; click around on the listbox and watch the selection print out.
; and unregister as usual
(*1)
;=> [...]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Now we come to editable text widgets. It's easy to make one
(def field (display (text "This is a text field.")))
;=> #<JTextField ... >
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; | |
; | |
; | This is a text field| |
; | |
; | |
; +------------------------------+
; A text field is a single line of text. You can query the text...
(text field)
;=> "This is a text field."
; ... and change it programmatically
(text! field "A new value")
;=> #<JTextField ... >
; ... and you can set the font, etc as usual with config
(config! field :font "MONOSPACED-PLAIN-12" :background "#f88")
;=> #<JTextField ... >
; If you've got more than one line, you can make it multi-line...
(def area (text :multi-line? true :font "MONOSPACED-PLAIN-14"
:text "This
is
multi
line
text"))
;=> #<JTextArea ... >
(display area)
;=> #<JTextArea ... >
;
; +------------------------------+
; | NO RLY, get to know Seesaw x|
; +------------------------------+
; | This |
; | is |
; | multi |
; | line| |
; +------------------------------+
; If you've got a reader, URL, or anything else slurp-able, you can fill up the
; text area with it
(text! area (java.net.URL. "http://clojure.com"))
;=> #<JTextArea ... >
; Of course, we need scrollbars now
(display (scrollable area))
;=> #<JTextArea ... >
; Like selection, Seesaw has a unified scrolling API. You can scroll to the top ...
(scroll! area :to :top)
;=> #<JTextArea ... >
; ... or the bottom ...
(scroll! area :to :bottom)
;=> #<JTextArea ... >
; ... or to a particular line ...
(scroll! area :to [:line 50])
;=> #<JTextArea ... >
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Let's try showing two widgets at once. One option is a splitter:
(def split (left-right-split (scrollable lb) (scrollable area) :divider-location 1/3))
;=> #'user/split
(display split)
;=> #<JSplitPane ... >
;
;
; +-------------------------------------+
; | NO RLY, get to know Seesaw x|
; +-----------+-------------------------+
; |abstract-pa| This |
; |action | is |
; |add!#######| multi |
; |add!* | line| |
; +-----------+-------------------------+
;
; This shows both our listbox on the left and text area on the right with a
; movable splitter. If you're familiar with Swing, you'll recognize what an
; achievement :divider-location is.
; Let's hook them together. First a function to grab a doc string
(defn doc-str [s] (-> (symbol "seesaw.core" (name s)) resolve meta :doc))
;=> #'user/doc-str
; ... and now the usual selection handler
(listen lb :selection
(fn [e]
(when-let [s (selection e)]
(-> area
(text! (doc-str s))
(scroll! :to :top)))))
;=> #<JList ... >
; note how we have to be sure to check for nil selection
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ok. We're pushing on the limits of what we can comfortably type in a REPL,
; so just a couple more things ...
; Imagine we wanted to show source as well as docs. A set of radio button might be
; a nice way to switch betwen them ...
(def rbs (for [i [:source :doc]]
(radio :id i :class :type :text (name i))))
;=> #'user/rbs
; we have a couple radio buttons. Let's add them to our frame. We'll use a
; border-panel to lay things out. This is what a border-panel layout looks like:
;
; +------------------------------------------+
; | :north |
; | |
; +----------+-------------------+-----------+
; | | | |
; | | | |
; | :west | :center | :east |
; | | | |
; | | | |
; +----------+-------------------+-----------+
; | |
; | :south |
; +------------------------------------------+
;
(display (border-panel
:north (horizontal-panel :items rbs)
:center split
:vgap 5 :hgap 5 :border))
;=> #<JPanel ...>
; The :vgap, :hgap, and :border options just make things look a little nicer.
; If you click the radio buttons, you'll notice a little problem. They're not
; mutually exclusive. We'll put them in a button group to fix that, but first
; a small detour...
; How can we get to the radio buttons without using the rbs var? How about
; with a selector:
(select f [:JRadioButton])
;=> (#<JRadioButton ... > #<JRadioButton ... >)
; or, since we gave them a :class option above ...
(select f [:.type])
;=> (#<JRadioButton ... > #<JRadioButton ... >)
; or, we can get them individually by :id
(select f [:#source])
;=> #<JRadioButton ... >
; Selectors are always enclosed in a vector.
; Now, about those buttons. We'll need a button group...
(def group (button-group))
;=> #'user/group
; It happens that (config!) can take a sequence as its first argument in addition
; to a single widget ...
(config! (select f [:.type]) :group group)
;=> (#<JRadioButton ... > #<JRadioButton ... >)
; Now our buttons are nice and mutex-y. A button group, like most things, has a
; selection too, whichever button is currently selected:
(selection group)
;=> #<JRadioButton ...>
; Combine this with (id-of) and we have our original keywords back:
(-> group selection id-of)
;=> :source
(-> group selection id-of)
;=> :doc
; and, of course, you can register a listener for group selection changes
(listen group :selection
(fn [e]
(when-let [s (selection group)]
(println "Selection is " (id-of s)))))
; Now open hello-seesaw.core.clj and see if you can put this all together into
; an app.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; For more info see the Seesaw wiki:
; https://github.com/daveray/seesaw/wiki
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@daveray
Copy link
Author

daveray commented Jan 16, 2012

In Swing lists (and sliders and a bunch of other things) have the concept of "isAdjusting" for certain events. The idea is if you press the mouse button down and drag it along the listbox, the selection will change and fire an event for each change. Each of these events will have isAdjusting=true. Once you release the mouse button and the box has settled on a final selection, one last event will be fired with isAdjusting=false. With this, an app can presumably avoid doing unnecessary work if the selection is just going to change again very soon anyway. It's more common to see this with sliders.

So, when you use the mouse you're seeing an event for each value of isAdjusting. With the keyboard, this doesn't happen so there's just a single event. I can't really say Seesaw should do anything differently with these events or not.

Hope this helps and thanks for trying out the tutorial,

Dave

@rahulpilani
Copy link

Thanks for the reply and the tutorial. I found working through it very enjoyable.

I guess a way to avoid the multiple events is to filter out events with isAdjusting=true.

Since you probably have a lot of more experience using Swing than me, have you ever dealt with a scenario in which you would prefer to use the isAdjusting=true events?

@daveray
Copy link
Author

daveray commented Jan 16, 2012

It's actually fairly common to let all the events through. Imagine adjusting a color or opacity with a slider. There you want to see the change while its adjusting not just at the end. It might be interesting to have a set of higher-order event filter functions that can wrap event handlers and deal with this stuff. I'd have to look around to see if there are other cases like this where it would make sense.

@claj
Copy link

claj commented Mar 1, 2012

Hmm, I got a tripple fireing of the events when adding event handlers. Could be me that makes something wrong, starts to get late here anyway...

@adamjmarkham
Copy link

Am getting nil returned when I do (selection group) on line 436. Using Seesaw 1.4.0. Everything working great up till this point. Anyone know whats going wrong?

@daveray
Copy link
Author

daveray commented Mar 14, 2012

Thanks for trying it out. Are any of the radio buttons selected? I guess I should add a comment in there about clicking one of them first.

@adamjmarkham
Copy link

Thanks its working fine now, I needed to select the radio button. Thanks for providing the tutorial.

Copy link

ghost commented Oct 8, 2012

great stuff

@recursor94
Copy link

This is a good tutorial, but I am having multiple issues when I use the latest version of seesaw--have the rules changed in later versions? For one thing, the initial call to pack does not work when I only define the title. The size is not appropriate at all, it is barely large enough to see! The size of the frame remains fixed and does not change when widgets are added. I have to call pack each time after I add a widget for the size of the frame to change appropriately. When I try to call (*1) to remove a listener, I receive this error

 ClassCastException clojure.lang.PersistentList cannot be cast to clojure.lang.IFn     user/eval6485(NO_SOURCE_FILE:1)

I am receiving a lot of errors toward the beginning of the tutorial, what am I doing wrong?

@BrianRamsay
Copy link

I had the same issue that some commenters are having about the initial size of the window being super small - not really sure why.

Thanks for a great tutorial! It really got me on my way and coincidentally my first clojure project is a little app that uses a very similar layout to this. That's pretty handy :-)

@practicingruby
Copy link

Thanks so much for this tutorial @daveray, it's brilliant! Was able to follow through without any problems at all, and I'm completely new to Clojure and only vaguely familiar with Swing.

@rogererens
Copy link

Maybe you could update line 20 to version 1.4.3 of seesaw?

@emreeren
Copy link

emreeren commented May 7, 2013

Hello. I'm new to Clojure and Seesaw. Thank you very much for the tutorial.

When I type (use 'seesaw.core) I receive this error

CompilerException java.lang.RuntimeException: java.lang.NoSuchFieldException: PLAİN, compiling:(font.clj:32) 

I'm on a Turkish Macbook. What I've noticed in the error message is that İ in word PLAİN is Turkish capital i. Can it be an encoding issue? Sorry if it is a stupid question :)

@liuhuasong
Copy link

Found an error: after inputted line 244, then select the "canvas" item, the lein REPL says:
Selection is canvas
Selection is canvas
(Leiningen 2.1.3, Clojure 1.5.1, Seesaw 1.4.3, Ubuntu 12.04 AMD64, Oracle JDK 1.7.0_21)

@ilazarte
Copy link

ilazarte commented Jul 8, 2013

Working through this on lunch break, very nice tutorial. Thanks!

@sdegutis
Copy link

sdegutis commented Aug 8, 2013

Very, very awesome.

@DCCobleskillGit
Copy link

This is a nice, self-contained tutorial.

We need more instruction like this. The kind that doesn't try to explain everything in detail, but throws out a little bit of guidance, while letting the fingers and the brain get comfortable enough with certain forms. From there, we can start exploring & building, without having to understand everything, until curiosity or circumstance requires it.

Thanks, Dave.

@dsbw
Copy link

dsbw commented Apr 25, 2014

Well done!

Using "pack!" on Ubuntu resulted in no apparent window. I'm sure it was there and the Ubuntu title bar across the top showed the title, but adding elements never caused a window to appear. I took out the "pack!" and got a tiny, tiny box that I expanded to do the rest of the tutorial.

@franburstall
Copy link

It seems that with gtk under linux, the window gets its size from the content. In the context of the tutorial, there is no content when pack! is called and so you get a 0x0 window. Make the call to (config! f :content...) before the call to pack! to get a visible window.

Excellent tutorial though!

@mikavilpas
Copy link

Great tutorial!
I couldn't get the hello-seesaw template project to start without manually changing the seesaw version to 1.4.4. Running lein repl caused an error to be printed instead without the change.

@lsgrep
Copy link

lsgrep commented Dec 16, 2014

I never thought that I would enjoy using Swing for anything. Thanks for making this fun.

@davidmoshal
Copy link

Awesome, tutorial creates the help screens

@shandanjay
Copy link

really awesome. you rock

@lemoce
Copy link

lemoce commented Apr 14, 2015

Thanks for the tutorial. Easy to follow.

@soulflyer
Copy link

I couldn't get this to work by precisely following the instructions. To get it to work I had to add a :main statement to project.clj. and add (:use seesaw.core) to the ns definition in core.clj. Running (use 'seesaw.core) from the repl didn't do it, it had to be in the ns definition. I have no idea why this is... Great demo though. Thanks..

Just in case anyone else hits the same problem, here is my project.clj:

(defproject junk "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME"
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.7.0"]
                 [seesaw "1.4.5"]]
  :main junk.core)

and my ns defn in core.clj

(ns junk.core
  (:use seesaw.core))

EDIT: This problem only occurs when the cider-nrepl plugin is in use.

@roncodingenthusiast
Copy link

This tutorial is perfect, thanks for this.

@Hoekstraa
Copy link

I currently get this error: NullPointerException seesaw.core/pack! (core.clj:291)
This is when I'm executing (-> f pack! show!). I'm using Clojure 1.8.0 with seesaw version 1.4.5.

@geraldodev
Copy link

I've used seesaw before. Now in 2019 I'm about to use again. Thank you for such a nice library.

@Vitexus
Copy link

Vitexus commented Jan 26, 2020

Tested today. Works well ❤️ @daveray Many thanks for this tutorial!

@craigjperry2
Copy link

Only just discovered this, what a cracking lib and tutorial. So productive from the start

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment