summaryrefslogtreecommitdiff
path: root/frame.lisp
diff options
context:
space:
mode:
authorscrewlisp <screwtape@sdf.org>2026-07-02 23:19:05 +1200
committerscrewlisp <screwtape@sdf.org>2026-07-02 23:19:05 +1200
commit2e0110e9e99034f49a59d68af509ae3015184b7a (patch)
tree86a30d5fe0a3cb6633d09b956c7be1d2f57397df /frame.lisp
parent4bbc0b00023cc8b7db24142febb8695838b78752 (diff)
just use package inferred.
Diffstat (limited to 'frame.lisp')
-rw-r--r--frame.lisp19
1 files changed, 19 insertions, 0 deletions
diff --git a/frame.lisp b/frame.lisp
index e69de29..f8555e1 100644
--- a/frame.lisp
+++ b/frame.lisp
@@ -0,0 +1,19 @@
+(uiop:define-package
+ :simple-text-clim-frame/frame
+ (:export)
+ (:mix-reexport :simple-text-clim-frame/class)
+ (:mix :clim :clim-lisp))
+
+(in-package :simple-text-clim-frame/frame)
+
+(define-application-frame
+ my-frame
+ (my-class standard-application-frame)
+ ()
+ (:panes
+ (title :title :display-string "My title")
+ (app :application :display-function 'my-display))
+ (:layouts
+ (default
+ (vertically () title app))))
+