Cairo__FontType.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:#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-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!FontType class methodsFor:'constants'!

FONT_TYPE_FT

	^FONT_TYPE_FT

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

FONT_TYPE_QUARTZ

	^FONT_TYPE_QUARTZ

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

FONT_TYPE_TOY

	^FONT_TYPE_TOY

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

FONT_TYPE_WIN32

	^FONT_TYPE_WIN32

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

!FontType class methodsFor:'documentation'!

version
    ^'$Id$'
! !

FontType initialize!