FillStyle.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 06 Sep 2017 10:04:18 +0200
branchjv
changeset 8180 25149dfd68e0
parent 7789 6ad368b82d0d
permissions -rw-r--r--
Build files: removed a bunch of make rules for long-dead unsupported systems ...in order to unify and simplify the build. If a need to support this ancient systems arose, these hacks may ni longer be needed (due to new versions of tools) or the hacks would have to be written again (better) or retrieved from SCM (worse). Time will show.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7789
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     1
"
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     3
              All Rights Reserved
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     4
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     5
 This software is furnished under a license and may be used
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     6
 only in accordance with the terms of that license and with the
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     7
 inclusion of the above copyright notice. This software may not
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
     9
 other person. No title to or ownership of the software is
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    10
 hereby transferred.
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    11
"
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
7789
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    14
"{ NameSpace: Smalltalk }"
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    15
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Object subclass:#FillStyle
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
6683
f1ddfb71ff4f category change
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
    20
	category:'Compatibility-Squeak-Balloon-Fills'
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!FillStyle class methodsFor:'documentation'!
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
7789
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    25
copyright
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    26
"
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    27
 COPYRIGHT (c) 2014 by eXept Software AG
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    28
              All Rights Reserved
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    29
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    30
 This software is furnished under a license and may be used
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    31
 only in accordance with the terms of that license and with the
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    32
 inclusion of the above copyright notice. This software may not
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    33
 be provided or otherwise made available to, or used by, any
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    34
 other person. No title to or ownership of the software is
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    35
 hereby transferred.
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    36
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    37
"
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    38
!
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    39
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    an as-yet unused class.
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    For now, this is present as compatibility class (for Squeak),
64018d639874 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.
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    [author:]
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        cg
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    [instance variables:]
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [class variables:]
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
! !
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!FillStyle class methodsFor:'documentation'!
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version
7789
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    61
    ^ '$Header$'
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
version_CVS
7789
6ad368b82d0d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6683
diff changeset
    65
    ^ '$Header$'
6664
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
64018d639874 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67