Export portions of `lol-ucw'
[clinton/lisp-on-lines.git] / src / display.lisp
CommitLineData
e7c5f95a 1(in-package :lisp-on-lines)
2
b1c8f43b 3
e7c5f95a 4(defvar *display*)
b1c8f43b 5
6de8d300 6
e7c5f95a 7(define-layered-function display-using-description (description display object &rest args)
8 (:documentation
9 "Displays OBJECT via description using/in/with/on display"))
10
b7657b86 11
12
13(defun modify-layer-context (context &key activate deactivate)
14 (dolist (d deactivate)
15 (setf context (remove-layer (find-description d)
16 context)))
17 (dolist (d activate context)
18 (setf context (adjoin-layer (find-description d)
19 context))))
b7657b86 20
f56d6e7e 21(defun funcall-with-attribute-context (attribute thunk)
22 (funcall-with-layer-context
23 (modify-layer-context (current-layer-context)
24 :activate (attribute-active-descriptions attribute)
25 :deactivate (attribute-inactive-descriptions attribute))
26 thunk))
b7657b86 27
f56d6e7e 28(defmacro with-attribute-context ((attribute) &body body)
29 `(funcall-with-attribute-context ,attribute (lambda () ,@body)))
30
31
b7657b86 32(defun display (display object &rest args &key deactivate activate &allow-other-keys)
46440824 33
b7657b86 34 (funcall-with-layer-context
35 (modify-layer-context (current-layer-context)
36 :activate activate
37 :deactivate deactivate)
38 (lambda ()
39 (apply #'display-using-description (description-of object) display object args))))
e7c5f95a 40
41(define-layered-method display-using-description
eeed4326 42 :around ((description standard-description-object) display object &rest args)
4358148e 43 (declare (ignorable args))
46440824 44#+nil (break "Entering DISPLAY for ~A on ~A using ~A" object display description)
b1c8f43b 45 (let ((*display* display))
46 (apply #'funcall-with-described-object
47 (lambda ()
48 (call-next-method))
49 object description args)))
b7657b86 50
51
52
eeed4326 53
4271ab0b 54(defun display/d (&rest args)
55 (apply #'display-using-description args))
56
e7c5f95a 57(define-layered-method display-using-description (description display object &rest args)
58 (error "No DISPLAY-USING-DESCRIPTION methods are specified for: ~% DESCRIPTION: ~A ~% DISPLAY: ~A ~% OBJECT: ~A ~% ARGS: ~S
59
60OMGWTF! If you didn't do this, it's a bug!" description display object args))
61
e7c5f95a 62(defmacro define-display (&body body)
4358148e 63 (loop with in-descriptionp = (eq (car body) :in-description)
64 with description = (if in-descriptionp (cadr body) 't)
65 for tail on (if in-descriptionp (cddr body) body)
e7c5f95a 66 until (listp (car tail))
67 collect (car tail) into qualifiers
68 finally
4358148e 69 (when (member :in-description qualifiers)
70 (error "Incorrect occurrence of :in-description in defdisplay. Must occur before qualifiers."))
e7c5f95a 71 (return
72 (destructuring-bind (description-spec &optional (display-spec (gensym)) (object-spec (gensym)))
73 (car tail)
b1c8f43b 74 `(define-layered-method
e7c5f95a 75 display-using-description
4358148e 76 :in-layer ,(if (eq t description)
77 t
78 (defining-description description))
e7c5f95a 79 ,@qualifiers
80 (,(if (listp description-spec)
81 (list (first description-spec)
82 (if (eq 'description (second description-spec))
83 'description
eeed4326 84 (contextl::defining-layer (defining-description (second description-spec))))))
e7c5f95a 85 ,display-spec
86 ,object-spec &rest args)
87 (declare (ignorable args))
88 ,@(cdr tail))))))
89
90
91
92