aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/package.lisp
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-07-08 10:28:59 -0500
committerColin Okay <colin@cicadas.surf>2022-07-08 10:28:59 -0500
commitdd354e5caee002be931501062bf3aaa68f1d63e6 (patch)
treeb94694b16294c532726dbe7a66cb8f12eb365411 /src/package.lisp
parent7bf212df6c3cf0d16b7145ddb18b97f504717230 (diff)
[formatting] reorganized package exports
Diffstat (limited to 'src/package.lisp')
-rw-r--r--src/package.lisp120
1 files changed, 70 insertions, 50 deletions
diff --git a/src/package.lisp b/src/package.lisp
index dc18ef4..5258d78 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -9,40 +9,52 @@
(:import-from #:alexandria
#:when-let #:when-let* #:if-let)
(:export
- #:add-handler
- #:add-unit
+ ;; Affine API
+ #:height
+ #:radians
+ #:rotation
+ #:scale-by
+ #:scale-x
+ #:scale-y
+ #:units-intersect-p
+ #:width
+ #:x
+ #:y
+
+ ;; application API
#:application
- #:asset-root
- #:asset-classifiers
- #:appplication-scale
- #:application-width
+ #:application-focus
#:application-height
+ #:application-width
#:application-window
- #:refocus-on-mousedown-p
- #:application-focus
- #:fps
- #:bitmap
+ #:appplication-scale
+ #:asset-classifiers
+ #:asset-root
#:boot
- #:button
- #:button-up
- #:button-down
- #:button-bg
- #:button-on-press
- #:button-on-release
+ #:fps
+ #:get-asset
+ #:get-focus
+ #:refocus-on
+ #:refocus-on-mousedown-p
+ #:shutdown
+ #:start
+
+ ;; Display Tree Managmennt
+ #:add-unit
#:container
+ #:container-bottom
#:container-left
#:container-right
#:container-top
- #:container-bottom
#:container-units
- #:current-frameset
- #:defhandler
#:drop-unit
- #:frameset-index
- #:frameset-key
- #:get-asset
- #:get-focus
- #:make-frameset
+
+ ;; Event Handler API
+ #:add-handler
+ #:after-added
+ #:before-added
+ #:before-dropped
+ #:defhandler
#:on-after-added
#:on-before-added
#:on-before-dropped
@@ -54,37 +66,45 @@
#:on-mousemotion
#:on-mousewheel
#:on-perframe
- #:radians
- #:refocus-on
#:remove-handler
- #:runningp
- #:shutdown
- #:sprite
- #:sprite-frameset
- #:sprite-frameset-key
- #:start
- #:text
- #:text-color
- #:unit-container
- #:unit-visbilep
- #:units-intersect-p
- #:x
- #:y
- #:width
- #:height
- #:rotation
- #:scale-by
+
+ ;; Event Names
+ #:after-added
+ #:before-added
+ #:before-dropped
+ #:blur
+ #:focus
#:keydown
#:keyup
#:mousedown
- #:mouseup
#:mousemotion
+ #:mouseup
#:mousewheel
- #:focus
- #:blur
#:perframe
- #:after-added
- #:before-added
- #:before-dropped
+
+ ;; Generic and APIs
+ #:unit-container
+ #:unit-visbilep
+
+ ;; Specific Unit Classes and APIs
+ #:bitmap
- ))
+ #:button
+ #:button-bg
+ #:button-down
+ #:button-on-press
+ #:button-on-release
+ #:button-up
+
+ #:frameset
+ #:frameset-index
+ #:make-frameset
+ #:runningp
+
+ #:text
+ #:text-color
+
+ #:sprite
+ #:current-frameset
+ #:sprite-frameset
+ #:sprite-frameset-key))