BoundedWrapper.st
author Stefan Vogel <sv@exept.de>
Mon, 13 Mar 2017 09:54:33 +0100
changeset 3941 dd9237d3a727
parent 1789 f52f0a0d8448
child 3855 1db7742d33ad
permissions -rw-r--r--
#BUGFIX by stefan class: MIMETypes application/xml -> #isXmlType
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1789
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
     1
"{ Package: 'stx:libview2' }"
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
     2
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
LayoutWrapper subclass:#BoundedWrapper
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:'extent'
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
1789
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
     7
	category:'Compatibility-ST80-Graphics-Display Objects'
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
293
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    10
!BoundedWrapper class methodsFor:'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
documentation
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    13
"
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    14
    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
    15
    for fileIn of ST-80 classes.
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    16
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    17
    Notice: 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    18
        this class was implemented using protocol information
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    19
        from alpha testers, from reading PD programs and 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    20
        from the Hopkins/Horan book.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    21
        - it may not be complete or compatible to the corresponding ST-80 class. 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    22
        If you encounter any incompatibilities, please forward a note 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    23
        describing the incompatibility verbal (i.e. no code) to the ST/X team.
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 293
diff changeset
    24
293
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    25
    [see also:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    26
        Wrapper TranslatingWrapper BorderedWrapper GeometricWrapper
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    27
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    28
    [author:]
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    29
        Claus Gittinger
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
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    32
d10ad10d23fa prepare for view-component integration
Claus Gittinger <cg@exept.de>
parents: 278
diff changeset
    33
! !
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!BoundedWrapper class methodsFor:'documentation'!
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
version
1789
f52f0a0d8448 category
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
    38
    ^ '$Header: /cvs/stx/stx/libview2/BoundedWrapper.st,v 1.4 2003-08-18 12:13:51 cg Exp $'
278
f2382bb48850 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
! !