diff options
| author | screwlisp <screwtape@sdf.org> | 2026-07-02 23:19:05 +1200 |
|---|---|---|
| committer | screwlisp <screwtape@sdf.org> | 2026-07-02 23:19:05 +1200 |
| commit | 2e0110e9e99034f49a59d68af509ae3015184b7a (patch) | |
| tree | 86a30d5fe0a3cb6633d09b956c7be1d2f57397df /frame.lisp | |
| parent | 4bbc0b00023cc8b7db24142febb8695838b78752 (diff) | |
just use package inferred.
Diffstat (limited to 'frame.lisp')
| -rw-r--r-- | frame.lisp | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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)))) + |
