如何让 Ltk 显示用户正在编写的内容以及函数打印的内容?
功能的种类是这样的:
(defun display-all ()
"Display all items in the database."
(dolist (item *database*)
(format t "~{~a:~10t~a~%~}~%" item)))
(defun prompt-read (prompt)
(format *query-io* "~a: " prompt)
(force-output *query-io*)
(read-line *query-io*))
(defun prompt-for-item ()
(make-database
(prompt-read "Name")
(prompt-read "Price")))
我已经阅读了 Ltk 文档,但似乎没有任何文本小部件使用的示例。
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)
(format *query-io* "~a: " prompt)
(force-output *query-io*)
(read-line *query-io*))
(defun prompt-for-item ()
(make-database
(prompt-read "Name")
(prompt-read "Price")))
I've read the Ltk documentation, but there doesn't seem to be any examples of text widget usage.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像创建其他小部件一样创建文本小部件。 Lisp 端对象具有带有 writer 方法的
text
访问器函数,该函数在 Tk 端设置文本。 最小的例子:You create the text widget like every other widget. The Lisp-side object has
text
accessor function with writer method which sets the text on Tk side. Minimal example: