Cairo__FontType.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 01 Aug 2019 18:43:54 +0100
changeset 87 d1313f80a9a7
parent 61 f25d922632f7
child 88 9d51db2ba641
permissions -rw-r--r--
Remove leftover `Makefile`

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

"{ NameSpace: Cairo }"

SharedPool subclass:#FontType
	instanceVariableNames:''
	classVariableNames:'CAIRO_FONT_TYPE_TOY CAIRO_FONT_TYPE_FT CAIRO_FONT_TYPE_WIN32
		CAIRO_FONT_TYPE_QUARTZ CAIRO_FONT_TYPE_USER'
	poolDictionaries:''
	category:'Cairo-Constants'
!


!FontType class methodsFor:'initialization'!

initialize

    CAIRO_FONT_TYPE_TOY := 0.
    CAIRO_FONT_TYPE_FT := 1.
    CAIRO_FONT_TYPE_WIN32 := 2.
    CAIRO_FONT_TYPE_QUARTZ := 3.
    CAIRO_FONT_TYPE_USER := 4.
! !

!FontType class methodsFor:'constants'!

CAIRO_FONT_TYPE_FT

    ^CAIRO_FONT_TYPE_FT
!

CAIRO_FONT_TYPE_QUARTZ

    ^CAIRO_FONT_TYPE_QUARTZ
!

CAIRO_FONT_TYPE_TOY

    ^CAIRO_FONT_TYPE_TOY
!

CAIRO_FONT_TYPE_USER

    ^CAIRO_FONT_TYPE_USER
!

CAIRO_FONT_TYPE_WIN32

    ^CAIRO_FONT_TYPE_WIN32
! !

!FontType class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !


FontType initialize!