ffi stuff, etc.
[swf2/david.git] / lib / library-packages.lisp
blobd4c043680e9790ea97e24c9178810348e2ab64f4
1 (in-package #:as3-compiler)
3 ;;(defpackage #:flash)
5 (defpackage #:flash
6 ;; these are accessed with no package name, but putting them in
7 ;; keyword would be ugly...
8 (:export
9 ;; functions
10 #:decode-uri
11 #:decode-uri-component
12 #:encode-uri
13 #:encode-uri-component
14 #:escape
15 #:is-finite
16 #:is-nan
17 #:is-xml-name
18 #:parse-float
19 #:parse-int
20 #:trace
21 #:unescape
22 ;; constants
23 #:+infinity+ ;; Infinity
24 #:+negative-infinity+ ;; -Infinity
25 #:+nan+ ;; NaN
26 #:+undefined+ ;; undefined
27 ;; classes
28 #:argument-error
29 #:arguments
30 #:array
31 #:boolean
32 #:class
33 #:date
34 #:definition-error
35 #:error
36 #:eval-error
37 #:function
38 #:int
39 #:math
40 #:namespace
41 #:number
42 #:object
43 #:q-name
44 #:range-error
45 #:reference-error
46 #:reg-exp
47 #:security-error
48 #:string
49 #:syntax-error
50 #:type-error
51 #:uint
52 #:URI-Error
53 #:verify-error
54 #:xml
55 #:xml-list
57 ;; we also get the names of most of the members/accessors/methods
58 ;; from other namespaces here, unlike CL where they would
59 ;; probably be in the same package as the class
60 ;; adding as needed...
62 ;; from flash.text.TextFieldAutoSize
63 #:+center+
64 #:+left+
65 #:+right+
66 #:+none+
67 ;; properties from flash.text.TextField
68 #:always-Show-Selection
69 #:anti-alias-type
70 #:auto-size
71 #:background
72 #:background-color
73 #:border
74 #:border-color
75 #:bottom-scroll-v
76 #:caret-index
77 #:condense-white
78 #:context-menu
79 #:default-text-format
80 #:display-as-password
81 #:embed-fonts
82 #:grid-fit-type
83 #:html-text
84 #:length
85 #:max-chars
86 #:max-scroll-h
87 #:max-scroll-v
88 #:mouse-wheel-enabled
89 #:multiline
90 #:num-lines
91 #:restrict
92 #:scroll-h
93 #:scroll-v
94 #:selectable
95 #:selection-begin-index
96 #:selection-end-index
97 #:sharpness
98 #:style-sheet
99 #:text
100 #:text-color
101 #:text-height
102 #:text-width
103 #:thickness
104 #:type
105 #:use-rich-text-clipboard
106 #:word-wrap
107 ;; methods from flash.text.TextField
108 #:text-field
109 #:append-text
110 #:get-char-boundaries
111 #:get-char-index-at-point
112 #:get-first-char-in-paragraph
113 #:get-image-reference
114 #:get-line-index-at-point
115 #:get-line-index-of-char
116 #:get-line-length
117 #:get-line-metrics
118 #:get-line-offset
119 #:get-line-text
120 #:get-paragraph-length
121 #:get-text-format
122 #:replace-selected-text
123 #:replace-text
124 #:set-selection
125 #:set-text-format
126 ;; events from flash.text.TextField
127 #:change
128 #:link
129 #:scroll
130 #:text-input
131 ;; flash.public:object
132 #:constructor
133 #:prototype
134 #:object
135 #:has-own-property
136 #:is-prototype-of
137 #:property-is-enumerable
138 #:set-property-is-enumerable
139 #:to-string
140 #:value-of
141 ;; flash.events:event-dispatcher
146 (defpackage #:flash.text
147 (:export
148 #:text-field-auto-size
149 #:anti-alias-type
150 #:csm-settings
151 #:font
152 #:font-style
153 #:font-type
154 #:grid-fit-type
155 #:static-text
156 #:style-sheet
157 #:text-color-type
158 #:text-display-mode
159 #:text-field
160 #:text-field-auto-size
161 #:text-field-type
162 #:text-format
163 #:text-format-align
164 #:text-line-metrics
165 #:text-renderer
166 #:text-snapshot
169 (defpackage #:adobe.utils)
170 (defpackage #:flash.accessibility)
171 (defpackage #:flash.display)
172 (defpackage #:flash.errors)
173 (defpackage #:flash.events)
174 (defpackage #:flash.external)
175 (defpackage #:flash.filters)
176 (defpackage #:flash.geom)
177 (defpackage #:flash.media)
178 (defpackage #:flash.net)
179 (defpackage #:flash.printing)
180 (defpackage #:flash.sampler)
181 (defpackage #:flash.system)
182 (defpackage #:flash.system)
183 ;(defpackage #:flash.text)
184 (defpackage #:flash.trace)
185 (defpackage #:flash.ui)
186 (defpackage #:flash.utils)
187 (defpackage #:flash.xml)