Cairo__Content.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 11 Jul 2008 08:49:27 +0000
changeset 5 65635e9ef3e8
parent 3 f4f599f2a1b5
child 6 c1f387b40e3a
permissions -rw-r--r--
added basic text rendering

"{ Package: 'stx:goodies/libcairo' }"

"{ NameSpace: Cairo }"

SharedPool subclass:#Content
	instanceVariableNames:''
	classVariableNames:'CONTENT_COLOR CONTENT_ALPHA CONTENT_COLOR_ALPHA'
	poolDictionaries:''
	category:'Cairo - Constants'
!


!Content class methodsFor:'initialization'!

initialize

	CONTENT_COLOR := 4096.
	CONTENT_ALPHA := 8192.
	CONTENT_COLOR_ALPHA := 12288.

    "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!Content class methodsFor:'constants'!

CONTENT_ALPHA

	^CONTENT_ALPHA

    "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

CONTENT_COLOR

	^CONTENT_COLOR

    "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

CONTENT_COLOR_ALPHA

	^CONTENT_COLOR_ALPHA

    "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!Content class methodsFor:'documentation'!

version
    ^'$Id$'
! !

Content initialize!