Cairo__FontWeight.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 09 Sep 2008 21:28:47 +0000
changeset 6 c1f387b40e3a
parent 5 65635e9ef3e8
child 7 392289f92fab
permissions -rw-r--r--
regenerated using newer version of CFace

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

"{ NameSpace: Cairo }"

SharedPool subclass:#FontWeight
	instanceVariableNames:''
	classVariableNames:'FONT_WEIGHT_NORMAL FONT_WEIGHT_BOLD'
	poolDictionaries:''
	category:'Cairo - Constants'
!

!FontWeight class methodsFor:'initialization'!

initialize

	FONT_WEIGHT_NORMAL := 0.
	FONT_WEIGHT_BOLD := 1.

    "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!FontWeight class methodsFor:'constants'!

FONT_WEIGHT_BOLD

	^FONT_WEIGHT_BOLD

    "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

FONT_WEIGHT_NORMAL

	^FONT_WEIGHT_NORMAL

    "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !


FontWeight initialize!