Draw-string and font
Hi, I'm new to LispWorks and to CAPI. I have a basic difficulty. I should build a pane and draw strings on it with different fonts and sizes. Question: How can I inform a pane with fcn draw-string about a certain font, size etc.? I understand that I can build an instance of a pane and define my wishes with make-font-description. And I understand that I can form something like - (gp:draw-string pane "Affenbaum" 100 150) and get the information given by make-font-description. I understand that I can change this information with something like (gp:draw-string pane "Affenbaum" 100 150 :font "Sonata") But how can I add to fcn draw-string my other wishes? Something like (gp:draw-string pane "Affenbaum" 100 150 :font "Sonata" :size 48 :weight :very-large) ? I've read now during two days in the CAPI manuals but I seem to be too dumb to find a solution. Thanks in advance! Max