reorganized some source files
[clinton/lisp-on-lines.git] / src / standard-wrappers.lisp
... / ...
CommitLineData
1(in-package :lisp-on-lines)
2
3;;;;; Wrap a display in "back buttons"
4(deflayer wrap-back-buttons)
5
6(defvar *back-buttons-wrapped-p* nil)
7
8(defdisplay
9 :in-layer wrap-back-buttons :around
10 (description object)
11 (if *back-buttons-wrapped-p*
12 (call-next-method)
13 (let ((*back-buttons-wrapped-p* t))
14
15 (<ucw:a :class "wiz-button previous" :action (ok self t)
16 (<:as-html "Go Back"))
17 (<:div :style "clear:both;"
18 (call-next-method))
19 (<ucw:a :class "wiz-button previous" :action (ok self t)
20 (<:as-html "Go Back")))))
21
22;;;; Wrap an object display in with a link to the object
23
24(deflayer wrap-link)
25
26(defvar *link-wrapped-p* nil)
27
28(define-layered-class description
29 :in-layer wrap-link ()
30 ((link :initarg :link-action
31 :initarg :action
32 :initform nil :special t :accessor link-action)))
33
34(defaction call-action-with-component-and-object ((self component) action-id object)
35 (funcall (ucw::find-action (ucw::context.current-frame *context*) action-id)
36 self
37 object))
38
39(defdisplay
40 :in-layer wrap-link :around (description object)
41 (let ((link (link-action description)))
42
43 (with-inactive-layers (wrap-link)
44 (if *link-wrapped-p*
45 (call-next-method)
46 (let ((*link-wrapped-p* t))
47 (<ucw:a :action (call-action-with-component-and-object
48 self
49 (ucw::make-new-action
50 (ucw::context.current-frame *context*)
51 (if (consp link)
52 (eval link)
53 link))
54 object)
55 (call-next-method)))))))
56
57;;; wrap-a-form
58(deflayer wrap-form)
59
60(define-layered-class description
61 :in-layer wrap-form ()
62 ((form-buttons :initarg :form-buttons :initform nil :special t :accessor form-buttons)))
63
64(defattribute form-button-attribute ()
65 ((form-buttons :initarg :form-buttons :initform nil :special t :accessor form-buttons)))
66
67(defdisplay ((description form-button-attribute) object)
68 (macrolet ((submit (&key action value )
69 `(<ucw::value-submit
70 :action (funcall ,action self object)
71
72 :value ,value)))
73 (loop for button in (form-buttons description)
74 do
75 (let ((button button))
76 (with-properties (button)
77 (let ((action (.get :action)))
78 (submit :value (.get :value)
79 :action (if (consp action)
80 (eval action)
81 action))))))))
82
83
84
85(defdisplay :in-layer wrap-form :around (description object)
86 (<ucw:form
87 :action (refresh-component self)
88 (with-inactive-layers (wrap-form)
89 (call-next-method)
90 (with-inactive-layers (show-attribute-labels)
91 (display-attribute
92 (make-instance
93 'form-button-attribute
94 :form-buttons
95 (form-buttons description))
96 object)))))
97
98;;;; wrap a DIV
99
100
101(deflayer wrap-div)
102
103(define-layered-class description
104 :in-layer wrap-div ()
105 ((div-attributes :accessor div-attributes :initarg :div :special t :initform nil)))
106
107(defdisplay :in-layer wrap-div :wrap-around (description object)
108 (let ((args (div-attributes description)))
109 (with-inactive-layers (wrap-div)
110 (yaclml::funcall-with-tag
111 (cons '<:div args)
112 (lambda ()
113 (call-next-method))))))
114
115