1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
|
;;; srecode/fields.el --- Handling type-in fields in a buffer. -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2009-2025 Free Software Foundation, Inc.
;;
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Idea courtesy of yasnippets.
;;
;; If someone prefers not to type unknown dictionary entries into
;; mini-buffer prompts, it could instead use in-buffer fields.
;;
;; A template-region specifies an area in which the fields exist. If
;; the cursor exits the region, all fields are cleared.
;;
;; Each field is independent, but some are linked together by name.
;; Typing in one will cause the matching ones to change in step.
;;
;; Each field has 2 overlays. The second overlay allows control in
;; the character just after the field, but does not highlight it.
;; @TODO - Cancel an old field array if a new one is about to be created!
;; Keep this library independent of SRecode proper.
(require 'eieio)
(require 'cl-generic)
;;; Code:
(defvar srecode-field-archive nil
"While inserting a set of fields, collect in this variable.
Once an insertion set is done, these fields will be activated.")
;;; Customization
;;
(defface srecode-field-face
'((((class color) (background dark))
(:underline "green"))
(((class color) (background light))
(:underline "green4")))
"Face used to specify editable fields from a template."
:group 'semantic-faces)
(defcustom srecode-fields-exit-confirmation nil
"Ask for confirmation before leaving field editing mode."
:group 'srecode
:type 'boolean)
;;; BASECLASS
;;
;; Fields and the template region share some basic overlay features.
(defclass srecode-overlaid ()
((overlay :documentation
"Overlay representing this field.
The overlay will cross-reference this object.")
)
"An object that gets automatically bound to an overlay.
Has virtual :start and :end initializers.")
(cl-defmethod initialize-instance ((olaid srecode-overlaid) &optional args)
"Initialize OLAID, being sure it archived."
;; Extract :start and :end from the olaid list.
(let ((newargs nil)
(olay nil)
start end
)
(while args
(cond ((eq (car args) :start)
(setq args (cdr args))
(setq start (car args))
(setq args (cdr args))
)
((eq (car args) :end)
(setq args (cdr args))
(setq end (car args))
(setq args (cdr args))
)
(t
(push (car args) newargs)
(setq args (cdr args))
(push (car args) newargs)
(setq args (cdr args)))
))
;; Create a temporary overlay now. We have to use an overlay and
;; not a marker because of the in-front insertion rules. The rules
;; are backward from what is wanted while typing.
(setq olay (make-overlay start end (current-buffer) t nil))
(overlay-put olay 'srecode-init-only t)
(oset olaid overlay olay)
(cl-call-next-method olaid (nreverse newargs))
))
(cl-defmethod srecode-overlaid-activate ((olaid srecode-overlaid))
"Activate the overlaid area."
(let* ((ola (oref olaid overlay))
(start (overlay-start ola))
(end (overlay-end ola))
;; Create a new overlay here.
(ol (make-overlay start end (current-buffer) nil t)))
;; Remove the old one.
(delete-overlay ola)
(overlay-put ol 'srecode olaid)
(oset olaid overlay ol)
))
(cl-defmethod srecode-delete ((olaid srecode-overlaid))
"Delete the overlay from OLAID."
(delete-overlay (oref olaid overlay))
(slot-makeunbound olaid 'overlay)
)
(cl-defmethod srecode-empty-region-p ((olaid srecode-overlaid))
"Return non-nil if the region covered by OLAID is of length 0."
(= 0 (srecode-region-size olaid)))
(cl-defmethod srecode-region-size ((olaid srecode-overlaid))
"Return the length of region covered by OLAID."
(let ((start (overlay-start (oref olaid overlay)))
(end (overlay-end (oref olaid overlay))))
(- end start)))
(cl-defmethod srecode-point-in-region-p ((olaid srecode-overlaid))
"Return non-nil if point is in the region of OLAID."
(let ((start (overlay-start (oref olaid overlay)))
(end (overlay-end (oref olaid overlay))))
(and (>= (point) start) (<= (point) end))))
(defun srecode-overlaid-at-point (class)
"Return a list of overlaid fields of type CLASS at point."
(let ((ol (overlays-at (point)))
(ret nil))
(while ol
(let ((tmp (overlay-get (car ol) 'srecode)))
(when (and tmp (object-of-class-p tmp class))
(setq ret (cons tmp ret))))
(setq ol (cdr ol)))
(car (nreverse ret))))
(cl-defmethod srecode-overlaid-text ((olaid srecode-overlaid) &optional set-to)
"Return the text under OLAID.
If SET-TO is a string, then replace the text of OLAID with SET-TO."
(let* ((ol (oref olaid overlay))
(start (overlay-start ol)))
(if (not (stringp set-to))
;; Just return it.
(buffer-substring-no-properties start (overlay-end ol))
;; Replace it.
(save-excursion
(delete-region start (overlay-end ol))
(goto-char start)
(insert set-to)
(move-overlay ol start (+ start (length set-to))))
nil)))
;;; INSERTED REGION
;;
;; Managing point-exit, and flushing fields.
(defclass srecode-template-inserted-region (srecode-overlaid)
((fields :documentation
"A list of field overlays in this region.")
(active-region :allocation :class
:initform nil
:documentation
"The template region currently being handled.")
)
"Manage a buffer region in which fields exist.")
(cl-defmethod initialize-instance ((ir srecode-template-inserted-region)
&rest _args)
"Initialize IR, capturing the active fields, and creating the overlay."
;; Fill in the fields
(oset ir fields srecode-field-archive)
(setq srecode-field-archive nil)
;; Initialize myself first.
(cl-call-next-method)
)
(cl-defmethod srecode-overlaid-activate ((ir srecode-template-inserted-region))
"Activate the template area for IR."
;; Activate all our fields
(dolist (F (oref ir fields))
(srecode-overlaid-activate F))
;; Activate our overlay.
(cl-call-next-method)
;; Position the cursor at the first field
(let ((first (car (oref ir fields))))
(goto-char (overlay-start (oref first overlay))))
;; Set ourselves up as 'active'
(oset ir active-region ir)
;; Setup the post command hook.
(add-hook 'post-command-hook #'srecode-field-post-command t t)
)
(cl-defmethod srecode-delete ((ir srecode-template-inserted-region))
"Call into our base, but also clear out the fields."
;; Clear us out of the baseclass.
(oset ir active-region nil)
;; Clear our fields.
(mapc #'srecode-delete (oref ir fields))
;; Call to our base
(cl-call-next-method)
;; Clear our hook.
(remove-hook 'post-command-hook #'srecode-field-post-command t))
(defsubst srecode-active-template-region ()
"Return the active region for template fields."
(oref-default 'srecode-template-inserted-region active-region))
(defun srecode-field-post-command ()
"Srecode field handler in the post command hook."
(let ((ar (srecode-active-template-region))
)
(if (not ar)
;; Find a bug and fix it.
(remove-hook 'post-command-hook #'srecode-field-post-command t)
(if (srecode-point-in-region-p ar)
nil ;; Keep going
;; We moved out of the template. Cancel the edits.
(srecode-delete ar)))
))
;;; FIELDS
(defclass srecode-field (srecode-overlaid)
((tail :documentation
"Overlay used on character just after this field.
Used to provide useful keybindings there.")
(name :initarg :name
:documentation
"The name of this field.
Usually initialized from the dictionary entry name that
the users needs to edit.")
(prompt :initarg :prompt
:documentation
"A prompt string to use if this were in the minibuffer.
Display when the cursor enters this field.")
(read-fcn :initarg :read-fcn
:documentation
"A function that would be used to read a string.
Try to use this to provide useful completion when available.")
)
"Representation of one field.")
(defvar srecode-field-keymap
(let ((km (make-sparse-keymap)))
(define-key km "\C-i" #'srecode-field-next)
(define-key km "\M-\C-i" #'srecode-field-prev)
(define-key km "\C-e" #'srecode-field-end)
(define-key km "\C-a" #'srecode-field-start)
(define-key km "\M-m" #'srecode-field-start)
(define-key km "\C-c\C-c" #'srecode-field-exit-ask)
km)
"Keymap applied to field overlays.")
(cl-defmethod initialize-instance ((field srecode-field) &optional _args)
"Initialize FIELD, being sure it archived."
(add-to-list 'srecode-field-archive field t)
(cl-call-next-method)
)
(cl-defmethod srecode-overlaid-activate ((field srecode-field))
"Activate the FIELD area."
(cl-call-next-method)
(let* ((ol (oref field overlay))
(end nil)
(tail nil))
(overlay-put ol 'face 'srecode-field-face)
(overlay-put ol 'keymap srecode-field-keymap)
(overlay-put ol 'modification-hooks '(srecode-field-mod-hook))
(overlay-put ol 'insert-behind-hooks '(srecode-field-behind-hook))
(overlay-put ol 'insert-in-front-hooks '(srecode-field-mod-hook))
(setq end (overlay-end ol))
(setq tail (make-overlay end (+ end 1) (current-buffer)))
(overlay-put tail 'srecode field)
(overlay-put tail 'keymap srecode-field-keymap)
(overlay-put tail 'face 'srecode-field-face)
(oset field tail tail)
)
)
(cl-defmethod srecode-delete ((olaid srecode-field))
"Delete our secondary overlay."
;; Remove our spare overlay
(delete-overlay (oref olaid tail))
(slot-makeunbound olaid 'tail)
;; Do our baseclass work.
(cl-call-next-method)
)
(defvar srecode-field-replication-max-size 100
"Maximum size of a field before canceling replication.")
(defun srecode-field-mod-hook (ol after _start _end &optional _pre-len)
"Modification hook for the field overlay.
OL is the overlay.
AFTER is non-nil if it is called after the change.
START and END are the bounds of the change.
PRE-LEN is used in the after mode for the length of the changed text."
(when (and after (not undo-in-progress))
(let* ((field (overlay-get ol 'srecode))
(inhibit-modification-hooks t))
;; Sometimes a field is deleted, but we might still get a stray
;; event. Let's just ignore those events.
(when (slot-boundp field 'overlay)
;; First, fixup the two overlays, in case they got confused.
(let ((main (oref field overlay))
(tail (oref field tail)))
(move-overlay main
(overlay-start main)
(1- (overlay-end tail)))
(move-overlay tail
(1- (overlay-end tail))
(overlay-end tail)))
;; Now capture text from the main overlay, and propagate it.
(let* ((new-text (srecode-overlaid-text field))
(region (srecode-active-template-region))
(allfields (when region (oref region fields)))
(name (oref field name)))
(dolist (F allfields)
(when (and (not (eq F field))
(string= name (oref F name)))
(if (> (length new-text) srecode-field-replication-max-size)
(message "Field size too large for replication.")
;; If we find other fields with the same name, then keep
;; then all together. Disable change hooks to make sure
;; we don't get a recursive edit.
(srecode-overlaid-text F new-text)
))))
))))
(defun srecode-field-behind-hook (ol after start end &optional pre-len)
"Modification hook for the field overlay.
OL is the overlay.
AFTER is non-nil if it is called after the change.
START and END are the bounds of the change.
PRE-LEN is used in the after mode for the length of the changed text."
(when after
(let* (;; (field (overlay-get ol 'srecode))
)
(move-overlay ol (overlay-start ol) end)
(srecode-field-mod-hook ol after start end pre-len))
))
(cl-defmethod srecode-field-goto ((field srecode-field))
"Goto the FIELD."
(goto-char (overlay-start (oref field overlay))))
(defun srecode-field-next ()
"Move to the next field."
(interactive)
(let* ((f (srecode-overlaid-at-point 'srecode-field))
(tr (srecode-overlaid-at-point 'srecode-template-inserted-region))
)
(when (not f) (error "Not in a field"))
(when (not tr) (error "Not in a template region"))
(let ((fields (oref tr fields)))
(while fields
;; Loop over fields till we match. Then move to the next one.
(when (eq f (car fields))
(if (cdr fields)
(srecode-field-goto (car (cdr fields)))
(srecode-field-goto (car (oref tr fields))))
(setq fields nil)
)
(setq fields (cdr fields))))
))
(defun srecode-field-prev ()
"Move to the prev field."
(interactive)
(let* ((f (srecode-overlaid-at-point 'srecode-field))
(tr (srecode-overlaid-at-point 'srecode-template-inserted-region))
)
(when (not f) (error "Not in a field"))
(when (not tr) (error "Not in a template region"))
(let ((fields (reverse (oref tr fields))))
(while fields
;; Loop over fields till we match. Then move to the next one.
(when (eq f (car fields))
(if (cdr fields)
(srecode-field-goto (car (cdr fields)))
(srecode-field-goto (car (oref tr fields))))
(setq fields nil)
)
(setq fields (cdr fields))))
))
(defun srecode-field-end ()
"Move to the end of this field."
(interactive)
(let* ((f (srecode-overlaid-at-point 'srecode-field)))
(goto-char (overlay-end (oref f overlay)))))
(defun srecode-field-start ()
"Move to the end of this field."
(interactive)
(let* ((f (srecode-overlaid-at-point 'srecode-field)))
(goto-char (overlay-start (oref f overlay)))))
(defun srecode-field-exit-ask ()
"Ask if the user wants to exit field-editing mini-mode."
(interactive)
(when (or (not srecode-fields-exit-confirmation)
(y-or-n-p "Exit field-editing mode? "))
(srecode-delete (srecode-active-template-region))))
(provide 'srecode/fields)
;; Local variables:
;; generated-autoload-load-name: "srecode/fields"
;; End:
;;; srecode/fields.el ends here
|