mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
double click for text entry window
This commit is contained in:
parent
4d02a3c689
commit
73157f85fc
6 changed files with 40 additions and 34 deletions
|
|
@ -31,15 +31,20 @@ replaced. (Exported)"
|
|||
*supported-controls*)
|
||||
(list r)))))
|
||||
|
||||
(defun adjust-control-placer (control)
|
||||
"If changing a property potentialy can change the size of a control function should be called. (Exported)"
|
||||
(let ((placer (get-placer control)))
|
||||
(adjust-placer control placer)))
|
||||
|
||||
(defun add-inspector (name func)
|
||||
"Add a custom inspector with NAME and (FUNC object title value clog-obj)"
|
||||
"Add a custom inspector with NAME and (FUNC object title value clog-obj). (Exported)"
|
||||
(setf *inspectors* (remove-if (lambda (x)
|
||||
(equalp name (getf x :name)))
|
||||
*inspectors*))
|
||||
(push (list :name name :func func) *inspectors*))
|
||||
|
||||
(defun add-file-extension (name func)
|
||||
"Add a custom file extension with NAME and (FUNC file dir project clog-obj)"
|
||||
"Add a custom file extension with NAME and (FUNC file dir project clog-obj). (Exported)"
|
||||
(setf *file-extensions* (remove-if (lambda (x)
|
||||
(equalp name (getf x :name)))
|
||||
*file-extensions*))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue