From 2e0110e9e99034f49a59d68af509ae3015184b7a Mon Sep 17 00:00:00 2001 From: screwlisp Date: Thu, 2 Jul 2026 23:19:05 +1200 Subject: just use package inferred. --- frame.lisp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'frame.lisp') 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)))) + -- cgit v1.2.3