GradientFillStyle.st
author matilk
Wed, 13 Sep 2017 09:40:34 +0200
changeset 8174 2704c965b97b
parent 7786 fd36d0af4169
permissions -rw-r--r--
#BUGFIX by Maren class: DeviceGraphicsContext changed: #displayDeviceOpaqueForm:x:y: nil check
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7786
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     1
"
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     3
              All Rights Reserved
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     4
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     5
 This software is furnished under a license and may be used
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     6
 only in accordance with the terms of that license and with the
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     7
 inclusion of the above copyright notice. This software may not
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     8
 be provided or otherwise made available to, or used by, any
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
     9
 other person. No title to or ownership of the software is
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    10
 hereby transferred.
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    11
"
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
7786
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    14
"{ NameSpace: Smalltalk }"
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    15
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
FillStyle subclass:#GradientFillStyle
6672
8ad31858b6c7 class: GradientFillStyle
Claus Gittinger <cg@exept.de>
parents: 6665
diff changeset
    17
	instanceVariableNames:'colorRamp radial origin direction'
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
6684
c533ee9026a4 category change
Claus Gittinger <cg@exept.de>
parents: 6672
diff changeset
    20
	category:'Compatibility-Squeak-Balloon-Fills'
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!GradientFillStyle class methodsFor:'documentation'!
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
7786
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    25
copyright
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    26
"
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    27
 COPYRIGHT (c) 2014 by eXept Software AG
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    28
              All Rights Reserved
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    29
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    30
 This software is furnished under a license and may be used
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    31
 only in accordance with the terms of that license and with the
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    32
 inclusion of the above copyright notice. This software may not
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    33
 be provided or otherwise made available to, or used by, any
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    34
 other person. No title to or ownership of the software is
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    35
 hereby transferred.
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    36
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    37
"
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    38
!
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    39
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    an as-yet unused class.
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    For now, this is present as compatibility class (for Squeak),
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    but we may move change the fill/drawing code in the view hierarchy to use it later.
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    [author:]
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        cg
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    [instance variables:]
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [class variables:]
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
! !
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!GradientFillStyle class methodsFor:'documentation'!
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version
7786
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    61
    ^ '$Header$'
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
version_CVS
7786
fd36d0af4169 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6684
diff changeset
    65
    ^ '$Header$'
6665
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
43c515784463 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67