MappedPalette.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 15:28:14 +0200
changeset 9038 dd177fea6408
parent 7954 975dd74ad78f
permissions -rw-r--r--
#REFACTORING by stefan class: Font changed: #setFamily:face:style:size:sizeUnit:encoding:device:

"
 COPYRIGHT (c) 1997 by Claus Gittinger / 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' }"

"{ NameSpace: Smalltalk }"

ColorPalette subclass:#MappedPalette
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Graphics-Images-Support'
!

!MappedPalette class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by Claus Gittinger / 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 class will (sooner or later) take over and/or redefine some of the Colormap functionality.
    This migration will be done both to cleanup the code and for VW compatibility.

    Notice: For now, the whole functionality is still in Colormap

    [see also:]
	Color Image Form
"
! !

!MappedPalette class methodsFor:'instance creation'!

blackWhite
    "ST-80 compatibility"

    ^ self withColors:(Array with:(Color black) with:(Color white))
!

monochromeDefault
    "ST-80 compatibility"

    ^ self whiteBlack

    "Modified: 25.2.1997 / 18:57:34 / cg"
!

whiteBlack
    "ST-80 compatibility"

    ^ self withColors:(Array with:(Color white) with:(Color black))

    "
     self whiteBlack
    "

    "Created: 7.10.1996 / 11:29:01 / cg"
    "Modified: 14.2.1997 / 17:43:31 / cg"
! !

!MappedPalette methodsFor:'testing'!

isMappedPalette
    ^ true

    "Created: / 03-02-2017 / 21:41:06 / cg"
! !

!MappedPalette class methodsFor:'documentation'!

version
    ^ '$Header$'
! !