GeometricWrapper.st
author Claus Gittinger <cg@exept.de>
Mon, 13 May 1996 10:50:38 +0200
changeset 265 45c83acd7562
parent 254 1286cec58b5d
child 279 bf069aab8a8c
permissions -rw-r--r--
comments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
251
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
Wrapper subclass:#GeometricWrapper
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	instanceVariableNames:''
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	category:'Graphics-Display Objects'
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
!GeometricWrapper class methodsFor:'documentation'!
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
copyright
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 COPYRIGHT (c) 1996 by Claus Gittinger
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
              All Rights Reserved
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 This software is furnished under a license and may be used
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 only in accordance with the terms of that license and with the
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 be provided or otherwise made available to, or used by, any
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 other person.  No title to or ownership of the software is
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 hereby transferred.
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
!
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
documentation
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    abstract class for wrappers of geometric objects.
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    These allows any geometric thingy to be used as a component in a view.
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
254
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    49
    (background info: geometrics are mathematical objects - they do not 
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    50
     keep any color or lineStyle attributes. Wrappers add this information
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    51
     and can also be used as components of a view)
Claus Gittinger <cg@exept.de>
parents: 251
diff changeset
    52
265
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    53
    Notice: 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    54
        this class was implemented using protocol information
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    55
        from alpha testers and from the Hopkins/Horan book.
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    56
        - it may not be complete or compatible to the corresponding ST-80 class. 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    57
        If you encounter any incompatibilities, please forward a note 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    58
        describing the incompatibility verbal (i.e. no code) to the ST/X team.
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    59
251
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    [see also:]
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
        StrokingWrapper FillingWrapper
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
        Geometric GraphicsContext
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    [author:]
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
        Claus Gittinger
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
! !
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
!GeometricWrapper methodsFor:'accessing - bounds'!
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
preferredBounds
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    "return the components bounds as preferredBounds"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    ^ component bounds
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
    "Created: 9.5.1996 / 10:28:10 / cg"
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
! !
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
!GeometricWrapper class methodsFor:'documentation'!
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
version
265
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    85
    ^ '$Header: /cvs/stx/stx/libview2/GeometricWrapper.st,v 1.3 1996-05-13 08:50:25 cg Exp $'
251
9c6e546a96e2 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
! !