I want to set a custom image for the panel background in my clojure app. Using seesaw I can set some color for the background:
(defn make-panel []
(border-panel
:north (flow-panel :align :center
:items [(label :text "TEXT")])
:center (canvas :class :board
:background :black)
:border 5))
but how to choose an image using its url?