Cairo__FontType.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 23 Apr 2009 15:35:17 +0000
changeset 10 dd5fece7c8d2
parent 7 392289f92fab
child 11 fdc697f4f190
permissions -rw-r--r--
Few hacks before presentation at Smalltalk Jihlava 2009

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

"{ NameSpace: Cairo }"

SharedPool subclass:#FontType
	instanceVariableNames:''
	classVariableNames:'FONT_TYPE_TOY FONT_TYPE_FT FONT_TYPE_WIN32 FONT_TYPE_QUARTZ'
	poolDictionaries:''
	category:'Cairo - Constants'
!


!FontType class methodsFor:'initialization'!

initialize

	FONT_TYPE_TOY := 0.
	FONT_TYPE_FT := 1.
	FONT_TYPE_WIN32 := 2.
	FONT_TYPE_QUARTZ := 3.

    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!FontType class methodsFor:'constants'!

FONT_TYPE_FT

	^FONT_TYPE_FT

    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

FONT_TYPE_QUARTZ

	^FONT_TYPE_QUARTZ

    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

FONT_TYPE_TOY

	^FONT_TYPE_TOY

    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
!

FONT_TYPE_WIN32

	^FONT_TYPE_WIN32

    "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!FontType class methodsFor:'documentation'!

version
    ^'$Id$'
! !

FontType initialize!