Re: from OO to Lisp style (a blog post)

2009-09-07 Thread Jonathan Smith
Just out of curiosity, is there any technical reason that you decided to use signals instead of passing closures? (Modularity; Efficiency; more idiomatic to Java?) On Sep 6, 5:29 am, rb wrote: > On Sep 4, 8:30 pm, Jonathan Smith wrote: > > > Hi Ralph, > > > First off, nice post! We need more o

Re: from OO to Lisp style (a blog post)

2009-09-06 Thread rb
On Sep 4, 8:30 pm, Jonathan Smith wrote: > Hi Ralph, > > First off, nice post! We need more of these types of tutorials on GUI > in clojure, they're very useful. > > On make-login-widget you can probably do a doto when you do this part: > > > (.addWidget layout (WLabel. "Login:") 0 0 ) > > (.ad

Re: from OO to Lisp style (a blog post)

2009-09-04 Thread Jonathan Smith
Hi Ralph, First off, nice post! We need more of these types of tutorials on GUI in clojure, they're very useful. On make-login-widget you can probably do a doto when you do this part: > (.addWidget layout (WLabel. "Login:") 0 0 ) > (.addWidget layout login-field 0 1 ) > (.addWidget layout (WLab