I have been trying to learn McCLIM and it has been quite difficult given the terseness of the documentation. After reading the manual I haven't been able to figure out how to associate a click to a pane and run a command. I am aware I can define commands such as:
(define-app-command (com-say :name t) ()
(format t "Hello world!"))
And type Say into the command box to get it to do something. I would like to click a pane and have it output this hello world string when clicked.
What do I need to set up in order to enable click listeners on a given pane?