FillWrpr.st
author tz
Sat, 07 Feb 1998 16:57:39 +0100
changeset 834 ac1655bd31bb
parent 405 4acab6da7d82
permissions -rw-r--r--
class category changed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
252
80f1ba561aab inserted GeometricWrapper
Claus Gittinger <cg@exept.de>
parents: 248
diff changeset
    15
GeometricWrapper subclass:#FillingWrapper
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'Graphics-Display Objects'
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!FillingWrapper class methodsFor:'documentation'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 1996 by Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
              All Rights Reserved
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    a wrapper for a geometric object, which is to be drawn filled.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    This allows any geometric thingy to be used as a filled component in a view.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    45
    (background info: geometrics are mathematical objects - they do not 
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    46
     keep any color or lineStyle attributes. Wrappers add this information
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    47
     and can also be used as components of a view)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    48
265
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    49
    Notice: 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    50
        this class was implemented using protocol information
365
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 282
diff changeset
    51
        from alpha testers, from reading PD programs and 
47e0d48fd769 commentary
Claus Gittinger <cg@exept.de>
parents: 282
diff changeset
    52
        from the Hopkins/Horan book.
265
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    53
        - it may not be complete or compatible to the corresponding ST-80 class. 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    54
        If you encounter any incompatibilities, please forward a note 
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    55
        describing the incompatibility verbal (i.e. no code) to the ST/X team.
45c83acd7562 comments
Claus Gittinger <cg@exept.de>
parents: 254
diff changeset
    56
248
266a7ec53d9f more examples & comments
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    57
    [see also:]
266a7ec53d9f more examples & comments
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    58
        StrokingWrapper Geometric GraphicsContext
266a7ec53d9f more examples & comments
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
    59
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    [author:]
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
        Claus Gittinger
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
examples
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
"
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    69
  wrap an ellipticArc and display it
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    70
  (notice, that no automatic redraw is performed):
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
                                                                        [exBegin]
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    72
    |v e component|
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    73
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    74
    v := (View extent:250@250) openAndWait.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    75
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    76
    e := EllipticalArc boundingBox:(10@10 corner:90@90)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    77
                        startAngle:0 
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    78
                        sweepAngle:270.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    79
    component := FillingWrapper on:e.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    81
    component displayOn:v.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    82
                                                                        [exEnd]
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    83
  wrap an spline and display it
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    84
  (notice, that no automatic redraw is performed):
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    85
                                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    86
    |v s component|
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    87
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    88
    v := (View extent:250@250) openAndWait.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    90
    s := Spline controlPoints:
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    91
               (Array with:(20@20)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    92
                      with:(80@80)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    93
                      with:(20@80)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    94
                      with:(20@20)).
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    95
    component := FillingWrapper on:s.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    96
    component foregroundColor:(Color green darkened).
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    97
    component displayOn:v.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    98
                                                                        [exEnd]
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
    99
  wrap ellipticArcs
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   100
  and add them as components to a View
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   101
  (notice, that doing so makes the redraw automatic):
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   102
                                                                        [exBegin]
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   103
    |v e component|
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   105
    v := View extent:250@250.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   106
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   107
    e := EllipticalArc boundingBox:(10@10 corner:90@90)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   108
                        startAngle:0 
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   109
                        sweepAngle:270.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   110
    v addComponent:(StrokingWrapper on:e).
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   111
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   112
    e := EllipticalArc boundingBox:(110@110 corner:190@190)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   113
                        startAngle:0 
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   114
                        sweepAngle:270.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   115
    v addComponent:(FillingWrapper on:e).
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   116
    v open
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
                                                                        [exEnd]
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   120
  wrap a rectangle and an ellipticArc,
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   121
  and add them as components to a View
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   122
  (notice, that doing so makes the redraw automatic):
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
                                                                        [exBegin]
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   124
    |v e component|
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   126
    v := View new.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   127
    v extent:250@250.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   129
    e := Rectangle origin:10@10 corner:90@90.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   130
    component := FillingWrapper on:e.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   131
    component foregroundColor:Color red.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   133
    v addComponent:component.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   135
    e := EllipticalArc boundingBox:(10@10 corner:90@90)
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   136
                     startAngle:0 sweepAngle:270.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   137
    component := StrokingWrapper on:e.
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   138
    component lineWidth:5.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   140
    v addComponent:component.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   142
    v addComponent:(Button label:'hello').
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
254
Claus Gittinger <cg@exept.de>
parents: 252
diff changeset
   144
    v open
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
                                                                        [exEnd]
266
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   146
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   147
 spline as a Buttons-label (hugh ?):
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   148
                                                                        [exBegin]
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   149
    |a b|
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   150
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   151
    a := ArrowedSpline controlPoints:
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   152
               (Array with:(00@00)
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   153
                      with:(60@60)
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   154
                      with:(00@60)).
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   155
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   156
    b := Button label:(((StrokingWrapper on:a) 
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   157
                        foregroundColor:Color red;
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   158
                        lineWidth:3;
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   159
                        lineStyle:#dashed)).
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   160
    b open.
e9d35cd74f64 wrappers usable as label in Label/Button etc.
Claus Gittinger <cg@exept.de>
parents: 265
diff changeset
   161
                                                                        [exEnd]
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
"
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
!FillingWrapper methodsFor:'displaying'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
displayOn:aGC
246
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   168
    "display myself - here, display the geometric object asFilled"
9f80dbcbcd34 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 245
diff changeset
   169
282
d534be80527f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
   170
    |prevFg prevBg|
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
    prevFg := aGC paint.
282
d534be80527f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
   173
    prevBg := aGC backgroundPaint.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
405
4acab6da7d82 fgColor/bgColor -> foregroundColor/backgroundColor
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   175
    aGC paint:foregroundColor on:backgroundColor.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
    component displayFilledOn:aGC.
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
282
d534be80527f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
   179
    aGC paint:prevFg on:prevBg.
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   180
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
    "Created: 8.5.1996 / 23:54:06 / cg"
405
4acab6da7d82 fgColor/bgColor -> foregroundColor/backgroundColor
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   182
    "Modified: 10.2.1997 / 14:21:41 / cg"
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
! !
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
!FillingWrapper class methodsFor:'documentation'!
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
version
405
4acab6da7d82 fgColor/bgColor -> foregroundColor/backgroundColor
Claus Gittinger <cg@exept.de>
parents: 365
diff changeset
   188
    ^ '$Header: /cvs/stx/stx/libview2/Attic/FillWrpr.st,v 1.10 1997-02-10 13:49:00 cg Exp $'
245
8d7f9a8d2c78 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
! !