Tagged Questions
The ltk tag has no wiki summary.
6
votes
2answers
340 views
Problems with ltk (common lisp)
I installed ltk to Steel Bank Common Lisp with asdf-install, but I can't even start using it V_V. The code below is the simplest example in the documentation, and is copied almost verbatim.
...
4
votes
2answers
848 views
How do I display an image with ltk?
I have written code to read a windows bitmap and would now like to display it with ltk. How can I construct an appropriate object? Is there such functionality in ltk? If not how can I do it directly ...
3
votes
2answers
61 views
Acessing values of ltk widget options
I am trying to make a GUI application in common lisp with ltk, and there is one thing I just cannot figure out. I know I can set options of ltk widgets with configure, but I cannot figure out a way ...
2
votes
1answer
57 views
LTK, button action
My first LTK-application. Trying to execute function with argument from entry-field.
(defpackage :test
(:use :cl
:ltk))
(in-package :test)
(defun main()
(with-ltk ()
(let* ((f ...
1
vote
1answer
169 views
How do I get Ltk to display what the user is writing and what the functions print?
The kind of functions are of the sort of:
(defun display-all ()
"Display all items in the database."
(dolist (item database)
(format t "~{~a:~10t~a~%~}~%" item)))
(defun prompt-read (prompt)
...
0
votes
1answer
66 views
TTK error in programms with LTK
After upgrade of the system from Ubuntu 10.10 to Ubuntu 11.04, have a problem with LTK.
Programs with LTK load successful, but after loading the function I had an error "Can't find TTK package". As I ...
0
votes
1answer
99 views
disable back button on in ltk wizardinputpage
I'm doing a plugin in Eclipse IDE in order to do a refactoring. I'm using LTK, the point is: I don't know how I can disabled the back button after the preview. I've tried to create the ...