BoundedWrapper.st
author ca
Wed, 05 Mar 1997 13:24:26 +0100
changeset 488 1686464333f6
parent 365 47e0d48fd769
child 1789 f52f0a0d8448
permissions -rw-r--r--
encoding
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
LayoutWrapper subclass:#BoundedWrapper
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
	instanceVariableNames:'extent'
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	classVariableNames:''
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	poolDictionaries:''
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	category:'Graphics-Display Objects'
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
!
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
293
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
     8
!BoundedWrapper class methodsFor:'documentation'!
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
     9
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    10
documentation
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    11
"
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    12
    a dummy class - only existing to provide a compatible home
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    13
    for fileIn of ST-80 classes.
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    14
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    15
    Notice: 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    16
        this class was implemented using protocol information
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    17
        from alpha testers, from reading PD programs and 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    18
        from the Hopkins/Horan book.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    19
        - it may not be complete or compatible to the corresponding ST-80 class. 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    20
        If you encounter any incompatibilities, please forward a note 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    21
        describing the incompatibility verbal (i.e. no code) to the ST/X team.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    22
293
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    23
    [see also:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    24
        Wrapper TranslatingWrapper BorderedWrapper GeometricWrapper
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    25
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    26
    [author:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    27
        Claus Gittinger
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    28
"
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    29
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    30
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    31
! !
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!BoundedWrapper class methodsFor:'documentation'!
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
version
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    36
    ^ '$Header: /cvs/stx/stx/libview2/BoundedWrapper.st,v 1.3 1997-01-14 17:01:17 cg Exp $'
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
! !