Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
ccffcaff
Commit
ccffcaff
authored
Mar 09, 1993
by
garland
Browse files
Added support for deleting all active inspection panes.
parent
a4cf9d7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/interface.lisp
View file @
ccffcaff
...
...
@@ -317,6 +317,7 @@
(
defconstant
*history-size*
25
)
(
defvar
*inspector-history*
)
(
defvar
*current-inspector-objects*
nil
)
(
defstruct
(
inspector-history
(
:print-function
print-inspector-history
)
...
...
@@ -359,6 +360,7 @@
(
with-busy-cursor
(
pane
)
(
text-set-string
widget
""
)
(
display-inspector-pane
object
)
(
push
object
*current-inspector-objects*
)
(
inspector-add-history-item
object
)))
(
error
(
e
)
(
interface-error
(
format
nil
"~a"
e
)
(
xti:widget-user-data
widget
))))))
...
...
@@ -371,6 +373,7 @@
(
with-busy-cursor
(
pane
)
(
update-display
widget
)
(
display-inspector-pane
object
)
(
push
object
*current-inspector-objects*
)
(
list-deselect-pos
widget
pos
))))
...
...
@@ -397,6 +400,12 @@
(
defvar
*file-list*
nil
)
(
defun
close-all-callback
(
widget
call-data
)
(
declare
(
ignore
widget
call-data
))
(
dolist
(
object
*current-inspector-objects*
)
(
destroy-interface-pane
object
))
(
setf
*current-inspector-objects*
nil
))
(
defun
file-selection-callback
(
widget
call-data
)
(
declare
(
ignore
widget
))
(
let
((
string
(
compound-string-get-ltor
...
...
@@ -581,6 +590,7 @@
#'
compile-file
)
(
manage-child
fsel
)))
"-----"
(
"Close Inspection Panes"
,
#'
close-all-callback
)
(
"Close Control Panel"
,
#'
popdown-callback
,
pane
)
(
"Quit Lisp"
,
#'
(
lambda
(
w
c
pane
)
(
declare
(
ignore
w
c
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment