SolidFillStyle.st
author matilk
Wed, 13 Sep 2017 09:40:34 +0200
changeset 8174 2704c965b97b
parent 7787 614903731f1b
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:
7787
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     1
"
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     3
              All Rights Reserved
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     4
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     5
 This software is furnished under a license and may be used
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     6
 only in accordance with the terms of that license and with the
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     7
 inclusion of the above copyright notice. This software may not
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     8
 be provided or otherwise made available to, or used by, any
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
     9
 other person. No title to or ownership of the software is
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    10
 hereby transferred.
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    11
"
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
7787
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    14
"{ NameSpace: Smalltalk }"
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    15
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
FillStyle subclass:#SolidFillStyle
6671
89d33e3b3d8a class: SolidFillStyle
Claus Gittinger <cg@exept.de>
parents: 6670
diff changeset
    17
	instanceVariableNames:'color'
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
6685
23ea4b9f3465 category change
Claus Gittinger <cg@exept.de>
parents: 6671
diff changeset
    20
	category:'Compatibility-Squeak-Balloon-Fills'
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!SolidFillStyle class methodsFor:'documentation'!
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
7787
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    25
copyright
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    26
"
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    27
 COPYRIGHT (c) 2014 by eXept Software AG
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    28
              All Rights Reserved
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    29
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    30
 This software is furnished under a license and may be used
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    31
 only in accordance with the terms of that license and with the
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    32
 inclusion of the above copyright notice. This software may not
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    33
 be provided or otherwise made available to, or used by, any
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    34
 other person. No title to or ownership of the software is
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    35
 hereby transferred.
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    36
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    37
"
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    38
!
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    39
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    an as-yet unused class.
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    For now, this is present as compatibility class (for Squeak),
a2ef4db30c3c 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.
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    [author:]
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        cg
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    [instance variables:]
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [class variables:]
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
! !
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!SolidFillStyle class methodsFor:'documentation'!
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version
7787
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    61
    ^ '$Header$'
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
version_CVS
7787
614903731f1b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6685
diff changeset
    65
    ^ '$Header$'
6666
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
a2ef4db30c3c initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67