forked from av83/wizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobj.lisp
69 lines (55 loc) · 1 KB
/
obj.lisp
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
(in-package #:WIZARD)
(with-defclass (action ())
(title "")
(perm :all)
(val nil)
(entity nil)
(fields nil))
(with-defclass (none (action)))
(with-defclass (tpl (action)))
(with-defclass (grid (action))
(grid nil)
(param-id nil)
(height "180"))
(with-defclass (blk (action))
(contents nil))
(with-defclass (linear (action)))
(with-defclass (announce (action)))
(with-defclass (post (action))
(date "")
(announce-photo nil)
(announce "")
(text-photo nil)
(text ""))
(with-defclass (yamap (action))
(center-coord "")
(mark-points nil))
(with-defclass (file (action))
(value "")
(name ""))
(with-defclass (fld ())
(name "")
(title "")
(typedata '(:str))
(width 200)
(xref nil)
(update nil)
(view nil)
(show nil))
(with-defclass (btn ())
(name "")
(title "")
(width 200)
(value "")
(perm :all)
(act))
(with-defclass (popbtn ())
(name "")
(title "")
(top 200)
(left 400)
(width 200)
(height 400)
(value "")
(perm :all)
(actions ""))