Cairo__HintStyle.st
changeset 6 c1f387b40e3a
parent 5 65635e9ef3e8
child 7 392289f92fab
equal deleted inserted replaced
5:65635e9ef3e8 6:c1f387b40e3a
     8 		HINT_STYLE_MEDIUM HINT_STYLE_FULL'
     8 		HINT_STYLE_MEDIUM HINT_STYLE_FULL'
     9 	poolDictionaries:''
     9 	poolDictionaries:''
    10 	category:'Cairo - Constants'
    10 	category:'Cairo - Constants'
    11 !
    11 !
    12 
    12 
    13 
       
    14 !HintStyle class methodsFor:'initialization'!
    13 !HintStyle class methodsFor:'initialization'!
    15 
    14 
    16 initialize
    15 initialize
    17 
    16 
    18 	HINT_STYLE_DEFAULT := 0.
    17 	HINT_STYLE_DEFAULT := 0.
    19 	HINT_STYLE_NONE := 1.
    18 	HINT_STYLE_NONE := 1.
    20 	HINT_STYLE_SLIGHT := 2.
    19 	HINT_STYLE_SLIGHT := 2.
    21 	HINT_STYLE_MEDIUM := 3.
    20 	HINT_STYLE_MEDIUM := 3.
    22 	HINT_STYLE_FULL := 4.
    21 	HINT_STYLE_FULL := 4.
    23 
    22 
    24     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    23     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    25 ! !
    24 ! !
    26 
    25 
    27 !HintStyle class methodsFor:'constants'!
    26 !HintStyle class methodsFor:'constants'!
    28 
    27 
    29 HINT_STYLE_DEFAULT
    28 HINT_STYLE_DEFAULT
    30 
    29 
    31 	^HINT_STYLE_DEFAULT
    30 	^HINT_STYLE_DEFAULT
    32 
    31 
    33     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    32     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    34 !
    33 !
    35 
    34 
    36 HINT_STYLE_FULL
    35 HINT_STYLE_FULL
    37 
    36 
    38 	^HINT_STYLE_FULL
    37 	^HINT_STYLE_FULL
    39 
    38 
    40     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    39     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    41 !
    40 !
    42 
    41 
    43 HINT_STYLE_MEDIUM
    42 HINT_STYLE_MEDIUM
    44 
    43 
    45 	^HINT_STYLE_MEDIUM
    44 	^HINT_STYLE_MEDIUM
    46 
    45 
    47     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    46     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    48 !
    47 !
    49 
    48 
    50 HINT_STYLE_NONE
    49 HINT_STYLE_NONE
    51 
    50 
    52 	^HINT_STYLE_NONE
    51 	^HINT_STYLE_NONE
    53 
    52 
    54     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    53     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    55 !
    54 !
    56 
    55 
    57 HINT_STYLE_SLIGHT
    56 HINT_STYLE_SLIGHT
    58 
    57 
    59 	^HINT_STYLE_SLIGHT
    58 	^HINT_STYLE_SLIGHT
    60 
    59 
    61     "Modified: / 10-07-2008 / 23:05:54 / Jan Vrany <vranyj1@fel.cvut.cz>"
    60     "Modified: / 09-09-2008 / 21:57:43 / Jan Vrany <vranyj1@fel.cvut.cz>"
    62 ! !
    61 ! !
    63 
    62 
    64 !HintStyle class methodsFor:'documentation'!
       
    65 
       
    66 version
       
    67     ^'$Id$'
       
    68 ! !
       
    69 
    63 
    70 HintStyle initialize!
    64 HintStyle initialize!