BoundedWrapper.st
author ca
Fri, 05 Sep 1997 11:59:23 +0200
changeset 688 b95c0e8c9573
parent 365 47e0d48fd769
child 1789 f52f0a0d8448
permissions -rw-r--r--
Call open instead of realize to assign a window group.

LayoutWrapper subclass:#BoundedWrapper
	instanceVariableNames:'extent'
	classVariableNames:''
	poolDictionaries:''
	category:'Graphics-Display Objects'
!

!BoundedWrapper class methodsFor:'documentation'!

documentation
"
    a dummy class - only existing to provide a compatible home
    for fileIn of ST-80 classes.

    Notice: 
        this class was implemented using protocol information
        from alpha testers, from reading PD programs and 
        from the Hopkins/Horan book.
        - it may not be complete or compatible to the corresponding ST-80 class. 
        If you encounter any incompatibilities, please forward a note 
        describing the incompatibility verbal (i.e. no code) to the ST/X team.

    [see also:]
        Wrapper TranslatingWrapper BorderedWrapper GeometricWrapper

    [author:]
        Claus Gittinger
"


! !

!BoundedWrapper class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview2/BoundedWrapper.st,v 1.3 1997-01-14 17:01:17 cg Exp $'
! !