NoBackground.st
author matilk
Wed, 13 Sep 2017 09:40:34 +0200
changeset 8174 2704c965b97b
parent 7945 f448366bc702
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:
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
     1
"
7945
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
     2
 COPYRIGHT (c) 2009 by Claus Gittinger / eXept Software AG
5463
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
7945
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
    14
"{ NameSpace: Smalltalk }"
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
    15
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
AbstractBackground subclass:#NoBackground
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Graphics-Support'
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    23
!NoBackground class methodsFor:'documentation'!
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
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    26
"
7945
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
    27
 COPYRIGHT (c) 2009 by Claus Gittinger / eXept Software AG
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    28
              All Rights Reserved
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    29
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    30
 This software is furnished under a license and may be used
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    31
 only in accordance with the terms of that license and with the
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    33
 be provided or otherwise made available to, or used by, any
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    34
 other person.  No title to or ownership of the software is
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    35
 hereby transferred.
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    36
"
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    37
! !
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
5681
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    39
!NoBackground methodsFor:'drawing'!
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    40
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    41
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
    42
    "/ intentionally left blank
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
    "Created: / 23-01-2011 / 01:59:29 / cg"
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    45
! !
a4f3846a0fc1 added: #fillRectangleX:y:width:height:in:
Claus Gittinger <cg@exept.de>
parents: 5463
diff changeset
    46
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!NoBackground class methodsFor:'documentation'!
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
version_CVS
7945
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
    50
    ^ '$Header$'
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
! !
7945
f448366bc702 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5681
diff changeset
    52