original commit: bccad9dab31923064bc24d14f8915240689be4aa
This commit is contained in:
Robby Findler 1999-02-22 04:56:40 +00:00
parent f92efa7396
commit a7c828d8ad
2 changed files with 11 additions and 2 deletions

View File

@ -33,7 +33,8 @@
get-area-container%
get-area-container
get-menu-bar%
make-root-area-container))
make-root-area-container
close))
(define basic-mixin
(mixin (frame<%>) (basic<%>) args
(rename [super-can-close? can-close?]
@ -57,12 +58,19 @@
(super-on-focus on?)
(when on?
(send (group:get-the-frame-group) set-active-frame this)))])
(inherit show)
(public
[get-area-container% (lambda () vertical-panel%)]
[get-menu-bar% (lambda () menu-bar%)]
[make-root-area-container
(lambda (% parent)
(make-object % parent))])
(make-object % parent))]
[close
(lambda ()
(when (can-close?)
(on-close)
(show #f)))])
(sequence
(apply super-init args)
(send (group:get-the-frame-group) insert-frame this)

View File

@ -150,4 +150,5 @@ string=? ; exec mred -mgaqvf $0
[(generic? x) (build-generic-clause x)]))
items))))
port))
'text
'truncate)