BoundedWrapper.st
author Claus Gittinger <cg@exept.de>
Sat, 26 Oct 1996 19:17:33 +0200
changeset 346 1612c23d9c5d
parent 293 d10ad10d23fa
child 365 47e0d48fd769
permissions -rw-r--r--
pass all dropInfo to an end-action
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
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    15
    [see also:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    16
        Wrapper TranslatingWrapper BorderedWrapper GeometricWrapper
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    17
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    18
    [author:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    19
        Claus Gittinger
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    20
"
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    21
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    22
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    23
! !
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!BoundedWrapper class methodsFor:'documentation'!
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
version
293
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    28
    ^ '$Header: /cvs/stx/stx/libview2/BoundedWrapper.st,v 1.2 1996-06-05 15:29:32 cg Exp $'
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
! !