summaryrefslogtreecommitdiff
path: root/frame.lisp
diff options
context:
space:
mode:
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))))
+