mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-28 12:52:33 -08:00
specify target, panel and panel control
This commit is contained in:
parent
47b8601d10
commit
af5a6b0a6c
1 changed files with 11 additions and 1 deletions
|
|
@ -1088,7 +1088,17 @@ of controls and double click to select control."
|
||||||
(clog-ace:set-on-auto-complete (event-editor app)
|
(clog-ace:set-on-auto-complete (event-editor app)
|
||||||
(lambda (obj prefix)
|
(lambda (obj prefix)
|
||||||
(declare (ignore obj))
|
(declare (ignore obj))
|
||||||
(car (swank:simple-completions prefix "CLOG-USER")))
|
(let ((l (car (swank:simple-completions prefix "CLOG-USER"))))
|
||||||
|
(push '(:caption "target" :value "target"
|
||||||
|
:score 200 :meta "builder")
|
||||||
|
l)
|
||||||
|
(push '(:caption "panel" :value "panel"
|
||||||
|
:score 200 :meta "builder")
|
||||||
|
l)
|
||||||
|
(push '(:caption "panel control" :value "(control-name panel)"
|
||||||
|
:score 200 :meta "builder")
|
||||||
|
l)
|
||||||
|
l))
|
||||||
:meta "swank")
|
:meta "swank")
|
||||||
(setf (positioning (event-editor app)) :absolute)
|
(setf (positioning (event-editor app)) :absolute)
|
||||||
(setf (width (event-editor app)) "")
|
(setf (width (event-editor app)) "")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue