Cairo__FontSlant.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 17 Jun 2012 14:49:30 +0000
changeset 16 a810555a635c
parent 12 e5f0c18af8a9
child 23 38ee47dbd976
permissions -rw-r--r--
- Cairo::Surface class definition added:6 methods changed: #update:with:from: - Cairo::ClockView changed: #redraw - extensions ...

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

"{ NameSpace: Cairo }"

SharedPool subclass:#FontSlant
	instanceVariableNames:''
	classVariableNames:'FONT_SLANT_NORMAL FONT_SLANT_ITALIC FONT_SLANT_OBLIQUE'
	poolDictionaries:''
	category:'Cairo-Constants'
!


!FontSlant class methodsFor:'initialization'!

initialize

	FONT_SLANT_NORMAL := 0.
	FONT_SLANT_ITALIC := 1.
	FONT_SLANT_OBLIQUE := 2.

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

!FontSlant class methodsFor:'constants'!

FONT_SLANT_ITALIC

	^FONT_SLANT_ITALIC

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

FONT_SLANT_NORMAL

	^FONT_SLANT_NORMAL

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

FONT_SLANT_OBLIQUE

	^FONT_SLANT_OBLIQUE

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

!FontSlant class methodsFor:'documentation'!

version
    ^'$Id$'
!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !

FontSlant initialize!