Questions tagged [mcclim]

McCLIM is an open source implementation of the Common Lisp Interface Manager specification, a powerful toolkit for writing GUIs in Common Lisp.

McCLIM is an open source implementation of the Common Lisp Interface Manager specification, a powerful toolkit for writing GUIs in Common Lisp.

https://common-lisp.net/project/mcclim/

5 questions
3
votes
0 answers

McCLIM text labels access

Is there a way to change text in the simple label (screen :label :text "input")? Tried different things, but none worked. Setting gadget value, accessing text slot.. Also for some reason creating label without :text and running the app reboots my…
Andrew S.
  • 467
  • 3
  • 12
2
votes
1 answer

Does a McCLIM Click Listener exist?

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…
CL40
  • 579
  • 1
  • 5
  • 12
2
votes
1 answer

How to get cursor position of McCLIM

I'm trying to add Input Method supportto McCLIM so that it can input CJK in McCLIM, using input method client like fcitx. To draw fcitx better, I want to get the cursor position of text editing area when it changed. looks like this: I found…
C-Entropy
  • 303
  • 2
  • 9
2
votes
1 answer

Updating the window in response to CLIM frame commands

While trying to figure out CLIM, I ran into this example program. It's a simple maze game. The author claims to have tested it in LispWorks (and even has #+Genera in there, implying that this program would work on a real Lisp Machine), but I'm…
Throw Away Account
  • 2,593
  • 18
  • 21
1
vote
1 answer

McCLIM, How to catch a keystroke?

I'm currently learning McCLIM. Trying to figure out how to define a command, that will react to keystroke. For a app named superapp I have a function (defun show (text) (lambda (gadget) (declare (ignore gadget)) (with-slots (text-field)…
Andrew S.
  • 467
  • 3
  • 12