(defmacro scroll-panel [obj & { :as opts}] `(doto (new JScrollPane ~obj) ~@(auto-setters JScrollPane [:preferred-size] opts) ~@(when-let [[w h] (:preferred-size opts)] [`(.setPreferredSize (Dimension. ~w ~h))])))
Comments top
No comments for scroll-panel. Log in to add a comment.