Class
editor-pane-text
editor-pane-enabled
editor-pane-text is provided to read and write the text in the editor buffer. The accessoreditor-pane-enabled is used to enable and disable the editor (when it is disabled, it ignores all input from the mouse and keyboard).
(capi:contain (make-instance 'capi:editor-pane
:text "Hello world"))
(setq editor (capi:contain
(make-instance 'capi:editor-pane
:text "Hello world"
:enabled nil)))
(setf (capi:editor-pane-enabled editor) t)
(setf (capi:editor-pane-text editor)
"New text")
call-editormodify-editor-pane-buffer