AbstractBackground.st
author Claus Gittinger <cg@exept.de>
Thu, 03 Feb 2011 20:31:44 +0100
changeset 5704 d7c401801223
parent 5683 486548535ec4
child 6238 d62bf03b097c
permissions -rw-r--r--
comment/format in: #initializeAllPluginClasses

"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libview' }"

Object subclass:#AbstractBackground
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Graphics-Support'
!

!AbstractBackground class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    This will replace the viewBackground color.

    [author:]
        Claus Gittinger
"
!

examples
"
    |v|

    v := View new.
    v viewBackground:(SolidBackground new color:Color red).
    v open.
"
! !

!AbstractBackground methodsFor:'drawing'!

fillRectangleX:x y:y width:w height:h in:aView
    self subclassResponsibility

    "Created: / 23-01-2011 / 01:59:29 / cg"
! !

!AbstractBackground methodsFor:'ignored conversion'!

asFormOn:aDevice
    self subclassResponsibility

    "Created: / 23-01-2011 / 01:45:35 / cg"
    "Modified: / 03-02-2011 / 19:55:49 / cg"
!

onDevice:aDevice
    self subclassResponsibility

    "Created: / 23-01-2011 / 01:46:11 / cg"
    "Modified: / 03-02-2011 / 19:55:40 / cg"
! !

!AbstractBackground class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libview/AbstractBackground.st,v 1.4 2011-02-03 19:31:44 cg Exp $'
! !