Font.st
changeset 4006 8af191725687
parent 3934 9226f49c99d5
child 4007 f6f734115906
equal deleted inserted replaced
4005:cbe56ccc85fa 4006:8af191725687
   472 ! !
   472 ! !
   473 
   473 
   474 !Font methodsFor:'printing & storing'!
   474 !Font methodsFor:'printing & storing'!
   475 
   475 
   476 encodingVectorFor:aspect
   476 encodingVectorFor:aspect
   477     ^ Array with:(#family->self family) with:(#face->self face) with:(#style->self style) with:(#size->self size)
   477     "binary storage encoding vector"
       
   478 
       
   479     ^ Array 
       
   480         with:(#family->self family) 
       
   481         with:(#face->self face) 
       
   482         with:(#style->self style) 
       
   483         with:(#size->self size)
       
   484         with:(#encoding->self encoding)
   478 !
   485 !
   479 
   486 
   480 printOn:aStream
   487 printOn:aStream
   481     "append a user printed representation of the receiver to aStream.
   488     "append a user printed representation of the receiver to aStream.
   482      The format is suitable for a human - not meant to be read back.
   489      The format is suitable for a human - not meant to be read back.
  1075 ! !
  1082 ! !
  1076 
  1083 
  1077 !Font class methodsFor:'documentation'!
  1084 !Font class methodsFor:'documentation'!
  1078 
  1085 
  1079 version
  1086 version
  1080     ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.88 2003-09-25 14:40:53 tm Exp $'
  1087     ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.89 2004-02-09 13:34:34 cg Exp $'
  1081 ! !
  1088 ! !
  1082 
  1089 
  1083 Font initialize!
  1090 Font initialize!