NoBackground.st
author Claus Gittinger <cg@exept.de>
Thu, 20 Jan 2011 22:39:16 +0100
changeset 5675 51d438d3033c
parent 5463 9845c7cb66e1
child 5681 a4f3846a0fc1
permissions -rw-r--r--
changed: #focusIn focusIn from topView now forces a focusView change in the windowGroup; other \"same-window\" focus events are now ignored in the windowGroup.
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
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!NoBackground class methodsFor:'documentation'!
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
version_CVS
5463
9845c7cb66e1 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
    40
    ^ '$Header: /cvs/stx/stx/libview/NoBackground.st,v 1.2 2009-11-04 14:32:02 cg Exp $'
5395
06ff643509e3 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !