Cairo__FontSlant.st
changeset 29 6ba06265e543
parent 23 38ee47dbd976
child 34 97705b5a9411
equal deleted inserted replaced
28:1bd3d147cd77 29:6ba06265e543
     2 
     2 
     3 "{ NameSpace: Cairo }"
     3 "{ NameSpace: Cairo }"
     4 
     4 
     5 SharedPool subclass:#FontSlant
     5 SharedPool subclass:#FontSlant
     6 	instanceVariableNames:''
     6 	instanceVariableNames:''
     7 	classVariableNames:'FONT_SLANT_NORMAL FONT_SLANT_ITALIC FONT_SLANT_OBLIQUE'
     7 	classVariableNames:'CAIRO_FONT_SLANT_NORMAL CAIRO_FONT_SLANT_ITALIC
       
     8 		CAIRO_FONT_SLANT_OBLIQUE'
     8 	poolDictionaries:''
     9 	poolDictionaries:''
     9 	category:'Cairo-Constants'
    10 	category:'Cairo-Constants'
    10 !
    11 !
    11 
       
    12 
    12 
    13 !FontSlant class methodsFor:'initialization'!
    13 !FontSlant class methodsFor:'initialization'!
    14 
    14 
    15 initialize
    15 initialize
    16 
    16 
    17 	FONT_SLANT_NORMAL := 0.
    17     CAIRO_FONT_SLANT_NORMAL := 0.
    18 	FONT_SLANT_ITALIC := 1.
    18     CAIRO_FONT_SLANT_ITALIC := 1.
    19 	FONT_SLANT_OBLIQUE := 2.
    19     CAIRO_FONT_SLANT_OBLIQUE := 2.
    20 
       
    21     "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    22 ! !
    20 ! !
    23 
    21 
    24 !FontSlant class methodsFor:'constants'!
    22 !FontSlant class methodsFor:'constants'!
    25 
    23 
    26 FONT_SLANT_ITALIC
    24 CAIRO_FONT_SLANT_ITALIC
    27 
    25 
    28 	^FONT_SLANT_ITALIC
    26     ^CAIRO_FONT_SLANT_ITALIC
    29 
       
    30     "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    31 !
    27 !
    32 
    28 
    33 FONT_SLANT_NORMAL
    29 CAIRO_FONT_SLANT_NORMAL
    34 
    30 
    35 	^FONT_SLANT_NORMAL
    31     ^CAIRO_FONT_SLANT_NORMAL
    36 
       
    37     "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    38 !
    32 !
    39 
    33 
    40 FONT_SLANT_OBLIQUE
    34 CAIRO_FONT_SLANT_OBLIQUE
    41 
    35 
    42 	^FONT_SLANT_OBLIQUE
    36     ^CAIRO_FONT_SLANT_OBLIQUE
    43 
       
    44     "Modified: / 10-09-2008 / 18:19:53 / Jan Vrany <vranyj1@fel.cvut.cz>"
       
    45 ! !
    37 ! !
    46 
    38 
    47 !FontSlant class methodsFor:'documentation'!
       
    48 
       
    49 version
       
    50     ^'$Id$'
       
    51 !
       
    52 
       
    53 version_HG
       
    54     ^ '$Changeset: <not expanded> $'
       
    55 ! !
       
    56 
    39 
    57 FontSlant initialize!
    40 FontSlant initialize!