FontDescription.st
changeset 3661 b96d4f68b36e
parent 3629 9d06228191a6
child 3663 d40999d6cd1e
equal deleted inserted replaced
3660:30c7ab561a68 3661:b96d4f68b36e
   373 !FontDescription methodsFor:'accessing'!
   373 !FontDescription methodsFor:'accessing'!
   374 
   374 
   375 device
   375 device
   376     "return the device I am on"
   376     "return the device I am on"
   377 
   377 
   378     ^ nil
   378     self obsoleteMethodWarning:'use #graphicsDevice'.
   379 
   379     ^ self graphicsDevice
   380 
       
   381 !
   380 !
   382 
   381 
   383 encoding
   382 encoding
   384     "return the fonts encoding, as a symbol
   383     "return the fonts encoding, as a symbol
   385      such as #'iso8859', #'jis0208.1983' or #ascii.
   384      such as #'iso8859', #'jis0208.1983' or #ascii.
   433     "return the device-dependent font-id"
   432     "return the device-dependent font-id"
   434 
   433 
   435     ^ nil
   434     ^ nil
   436 
   435 
   437 
   436 
       
   437 !
       
   438 
       
   439 graphicsDevice
       
   440     "return the device I am on"
       
   441 
       
   442     ^ nil
   438 !
   443 !
   439 
   444 
   440 manufacturer
   445 manufacturer
   441     "return the value of the instance variable 'manufacturer' (automatically generated)"
   446     "return the value of the instance variable 'manufacturer' (automatically generated)"
   442 
   447 
   948 ! !
   953 ! !
   949 
   954 
   950 !FontDescription class methodsFor:'documentation'!
   955 !FontDescription class methodsFor:'documentation'!
   951 
   956 
   952 version
   957 version
   953     ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.40 2002-05-15 08:07:34 stefan Exp $'
   958     ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.41 2002-07-23 19:37:24 mb Exp $'
   954 ! !
   959 ! !
   955 FontDescription initialize!
   960 FontDescription initialize!