AbstractBackground.st
author Claus Gittinger <cg@exept.de>
Wed, 05 Feb 2014 14:10:53 +0100
changeset 6238 d62bf03b097c
parent 5704 d7c401801223
child 6239 6566276ba3dc
permissions -rw-r--r--
class: AbstractBackground comment/format in: #documentation

"
 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.
    Instances of me (and subclasses) can be set as a widget's
    viewBackground, and will get 
        fillRectangleX:x y:y width:w height:h in:aView
    messages whenever the widget wants to redraw (parts of) its background.

    See the example in GradientBackground.

    [author:]
        Claus Gittinger

    [see also:]
        GradientBackground
"
!

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.5 2014-02-05 13:10:53 cg Exp $'
! !