NoBackground.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 06 Sep 2017 10:04:18 +0200
branchjv
changeset 8180 25149dfd68e0
parent 5681 a4f3846a0fc1
child 7945 f448366bc702
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:
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     1
"
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     3
              All Rights Reserved
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     4
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     5
 This software is furnished under a license and may be used
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     6
 only in accordance with the terms of that license and with the
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     8
 be provided or otherwise made available to, or used by, any
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     9
 other person.  No title to or ownership of the software is
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    10
 hereby transferred.
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    11
"
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libview' }"
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
AbstractBackground subclass:#NoBackground
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Graphics-Support'
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    21
!NoBackground class methodsFor:'documentation'!
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    22
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    23
copyright
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    24
"
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    25
 COPYRIGHT (c) 2009 by eXept Software AG
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    26
              All Rights Reserved
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    27
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    28
 This software is furnished under a license and may be used
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    29
 only in accordance with the terms of that license and with the
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    31
 be provided or otherwise made available to, or used by, any
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    32
 other person.  No title to or ownership of the software is
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    33
 hereby transferred.
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    34
"
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    35
! !
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
5681
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    37
!NoBackground methodsFor:'drawing'!
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    38
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    39
fillRectangleX:x y:y width:w height:h in:aView
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    40
    "/ intentionally left blank
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    41
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    42
    "Created: / 23-01-2011 / 01:59:29 / cg"
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    43
! !
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    44
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!NoBackground class methodsFor:'documentation'!
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
version_CVS
5681
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    48
    ^ '$Header: /cvs/stx/stx/libview/NoBackground.st,v 1.3 2011-01-23 01:42:51 cg Exp $'
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !