BoundedWrapper.st
author Claus Gittinger <cg@exept.de>
Thu, 24 May 2018 16:12:03 +0200
changeset 4095 563b7c522f45
parent 1789 f52f0a0d8448
child 3855 1db7742d33ad
permissions -rw-r--r--
#FEATURE by cg class: Menu added: #do: for protocol compatibility with UISpecifications comment/format in: #allItemsDetect:ifNone: #allItemsDo: #asOldStylePopUpMenuFor: #detectItem: #detectItem:ifNone: #itemAtValue: #itemsDo: #labelAt: #labelAtValue: #menuAndSubmenusDetectItem: #menuItems:menuItemGroups:values: class: Menu class comment/format in: #documentation

"{ Package: 'stx:libview2' }"

LayoutWrapper subclass:#BoundedWrapper
	instanceVariableNames:'extent'
	classVariableNames:''
	poolDictionaries:''
	category:'Compatibility-ST80-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.4 2003-08-18 12:13:51 cg Exp $'
! !