BitmapFillStyle.st
author Claus Gittinger <cg@exept.de>
Tue, 23 Apr 2019 16:30:55 +0200
changeset 8674 e29a561c0fbe
parent 7788 64d13dfcadf0
permissions -rw-r--r--
#FEATURE by cg class: SimpleView added: #isDialogBox
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7788
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     1
"
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     2
 COPYRIGHT (c) 2014 by eXept Software AG
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     3
              All Rights Reserved
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     4
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     5
 This software is furnished under a license and may be used
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     6
 only in accordance with the terms of that license and with the
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     7
 inclusion of the above copyright notice. This software may not
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     8
 be provided or otherwise made available to, or used by, any
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
     9
 other person. No title to or ownership of the software is
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    10
 hereby transferred.
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    11
"
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
7788
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    14
"{ NameSpace: Smalltalk }"
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    15
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
FillStyle subclass:#BitmapFillStyle
6674
1d5dc6c630ca class: BitmapFillStyle
Claus Gittinger <cg@exept.de>
parents: 6667
diff changeset
    17
	instanceVariableNames:'form origin direction'
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
6686
8c84c145416e category change
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
    20
	category:'Compatibility-Squeak-Balloon-Fills'
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!BitmapFillStyle class methodsFor:'documentation'!
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
7788
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    25
copyright
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    26
"
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    27
 COPYRIGHT (c) 2014 by eXept Software AG
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    28
              All Rights Reserved
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    29
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    30
 This software is furnished under a license and may be used
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    31
 only in accordance with the terms of that license and with the
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    32
 inclusion of the above copyright notice. This software may not
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    33
 be provided or otherwise made available to, or used by, any
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    34
 other person. No title to or ownership of the software is
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    35
 hereby transferred.
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    36
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    37
"
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    38
!
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    39
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    an as-yet unused class.
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
    For now, this is present as compatibility class (for Squeak),
2abb95c7f883 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.
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    [author:]
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        cg
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    [instance variables:]
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [class variables:]
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    [see also:]
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
"
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
! !
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!BitmapFillStyle class methodsFor:'documentation'!
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version
7788
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    61
    ^ '$Header$'
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
!
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
version_CVS
7788
64d13dfcadf0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 6686
diff changeset
    65
    ^ '$Header$'
6667
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
2abb95c7f883 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67