Besides the already mentioned LTK (which always worked fine for me), I am also fond of Cells-Gtk, because Tilton's Cells are, in my opinion, a nice approach to writing GUI code. (Still, LTK might be easier to get started with.)
For example, here is some code for a very simple Fahrenheit/Celsius (and vice versa) converter I wrote when I was just starting out with Cells-Gtk:
(defun fahrenheit->celsius (fahrenheit/string)
(princ-to-string (handler-case
(* (- (read-from-string fahrenheit/string nil) 32) 5/9)
(error () "NaN"))))
(defun celsius->fahrenheit (celsius/string)
(princ-to-string (handler-case
(+ (* (read-from-string celsius/string nil) 9/5) 32)
(error () "NaN"))))
(defmd celsius-fahrenheit-converter (gtk-app)
:title "°C <-> °F"
:position :center
:kids
(kids-list?
(mk-vbox
:kids
(kids-list?
(mk-hbox
:kids
(kids-list?
(mk-entry :md-name :celsius
:init "0"
:text (c? (fahrenheit->celsius (widget-value :fahrenheit))))
(mk-label :text "°C")))
(mk-hbox
:kids
(kids-list?
(mk-entry :md-name :fahrenheit
:text (c? (celsius->fahrenheit (widget-value :celsius))))
(mk-label :text "°F")))))))
There is no "Calculate" button or something like that – just change the value of one entry field and the other one will be updated on the fly. As you can see, Cells handles the state changes of the widgets autmatically – only the correct "plumbing" must be given.
(This code is a few years old, and I have no Cells-Gtk installation to test it ATM, but it used to work properly when I wrote it.)
common lisp gui toolkitseems to turn up several, so I think feasibility is assured. – phils Feb 15 '12 at 20:19