Initial commit of new description code (warning: broken!)
[clinton/lisp-on-lines.git] / src / packages.lisp
CommitLineData
c7e4e4bc 1(defpackage #:lisp-on-lines
2 (:use
079b9084 3 :common-lisp
4358148e 4 #:contextl
5 #:closer-mop
e8fd1a9a 6
4358148e 7 #:alexandria)
c7e4e4bc 8 (:nicknames #:lol)
1d51a2ee 9 (:export
6de8d300 10
b7657b86 11
079b9084 12;; Descriptions
ec6dde1e 13 #:*description*
eeed4326 14 #:description
15 #:defdescription
ec6dde1e 16 #:find-description
eeed4326 17 #:current-description
b7657b86 18 #:description-of
1d51a2ee 19 #:define-description
f56d6e7e 20 #:defining-description
e8d4fa45 21 #:described-object
ec6dde1e 22 #:with-described-object
eeed4326 23 #:funcall-with-described-object
6de8d300 24 #:described-class
f4efa7ff 25 #:described-standard-class
4358148e 26 #:with-active-descriptions
b7657b86 27 #:with-inactive-descriptions
4358148e 28
2548f054 29
079b9084 30 ;; Displays
1d51a2ee 31 #:define-display
32 #:display
079b9084 33 #:display-using-description
ec6dde1e 34 #:display-attribute-label
1d51a2ee 35 #:*display*
36 #:*object*
37
079b9084 38 ;; Attributes
1d51a2ee 39 #:find-attribute
4358148e 40 #:attribute
41 #:attributes
2548f054 42 #:attribute-object
1d51a2ee 43 #:attribute-label
ec6dde1e 44 #:attribute-delimiter
45 #:attribute-slot-name
2548f054 46 #:label
f56d6e7e 47 #:attribute-active-p
079b9084 48 #:attribute-function
b7657b86 49 #:attribute-value
2548f054 50 #:display-attribute-value
f4efa7ff 51 #:active-attributes
2548f054 52 #:attribute-delimiter
53 #:standard-attribute
f56d6e7e 54 #:funcall-with-attribute-context
55 #:with-attribute-context
e8fd1a9a 56
f4efa7ff 57 ;; Standard Library
2548f054 58
59 ;; editing
f4efa7ff 60 #:editable
2548f054 61 #:attribute-editor
f4efa7ff 62 #:string-attribute-editor
63 #:number-attribute-editor
2548f054 64 #:password-attribute-editor
65 #:password
66
e8fd1a9a 67 ;; :validation
68 #:validation
69 #:validate
70 #:validp
71
72 ;; CLOS
73 #:slot-definition-attribute
74
2548f054 75 ;; html
76 #:display-html-attribute-editor
77 #:make-attribute-value-writer))
079b9084 78
1d51a2ee 79