MonoMappedPalette.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 26 Nov 2016 21:09:32 +0000
branchjv
changeset 7719 c2f802dd340a
parent 3876 f4dc6267a30a
child 7955 66531231e428
permissions -rw-r--r--
XFT: Forbid XFT rendering on bitmaps (depth-1 pixmaps) In theory it could work if XFT would just turn gray into either black or white. But XFT doesn't do it and simply draw nothing without failing in any way. To prevent this silent failures, forbid drawing XFT onto bitmaps (depth-1 pixmaps). After all, the while point of XFT is to use anti-aliased fonts.

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

MappedPalette subclass:#MonoMappedPalette
	instanceVariableNames:''
	classVariableNames:'WhiteBlack BlackWhite'
	poolDictionaries:''
	category:'Graphics-Images-Support'
!

!MonoMappedPalette class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
	      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
"
! !

!MonoMappedPalette class methodsFor:'instance creation'!

blackWhite
    BlackWhite isNil ifTrue:[
        BlackWhite := super blackWhite
    ].
    ^ BlackWhite
!

whiteBlack
    WhiteBlack isNil ifTrue:[
        WhiteBlack := super whiteBlack
    ].
    ^ WhiteBlack
! !

!MonoMappedPalette methodsFor:'accessing'!

at:index put:aColor
    self error:'this palette cannot be changed'.
! !

!MonoMappedPalette class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview/MonoMappedPalette.st,v 1.3 2003-05-06 18:26:28 cg Exp $'
! !