FontDescription.st
author Claus Gittinger <cg@exept.de>
Wed, 22 Aug 2018 12:58:11 +0200
changeset 8451 6eafe0433763
parent 8377 c9b6d993484f
child 8641 154e38cdcc5b
permissions -rw-r--r--
#QUALITY by cg class: WindowSensor comment/format in: #basicAddDamage:view:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8377
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
     1
"{ Encoding: utf8 }"
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
     2
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
     3
"
edf02eb2939c Initial revision
claus
parents:
diff changeset
     4
 COPYRIGHT (c) 1994 by Claus Gittinger
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
     5
	      All Rights Reserved
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
     6
edf02eb2939c Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
edf02eb2939c Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
edf02eb2939c Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
edf02eb2939c Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
edf02eb2939c Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
edf02eb2939c Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
edf02eb2939c Initial revision
claus
parents:
diff changeset
    13
"
3246
213e4771d6fb typo fixed
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
    14
"{ Package: 'stx:libview' }"
213e4771d6fb typo fixed
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
    15
6723
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
    16
"{ NameSpace: Smalltalk }"
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
    17
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
    18
Object subclass:#FontDescription
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    19
	instanceVariableNames:'family face style size encoding manufacturer name flags masks
6824
915782c7f935 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6723
diff changeset
    20
		sizeUnit pixelSize weight slant'
7623
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
    21
	classVariableNames:'AntialiasedFlag BoldnessMask
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
    22
		CharacterEncodingToCharacterSetMapping CharacterSetToFontMapping
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
    23
		DecorativeFlag DefaultEncoding FixedFlag GenericFlag GenericFonts
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
    24
		IsTrueTypeFlag ItalicFlag OutlineFlag OverlappingCharactersFlag
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    25
		ScalableFlag SerifFlag ShadowFlag StrikeoutFlag UnderlineFlag
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    26
		ForceNonXFTFlag'
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
    27
	poolDictionaries:''
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
    28
	category:'Graphics-Support'
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
    29
!
edf02eb2939c Initial revision
claus
parents:
diff changeset
    30
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
    31
!FontDescription class methodsFor:'documentation'!
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
    32
edf02eb2939c Initial revision
claus
parents:
diff changeset
    33
copyright
edf02eb2939c Initial revision
claus
parents:
diff changeset
    34
"
edf02eb2939c Initial revision
claus
parents:
diff changeset
    35
 COPYRIGHT (c) 1994 by Claus Gittinger
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
    36
	      All Rights Reserved
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
    37
edf02eb2939c Initial revision
claus
parents:
diff changeset
    38
 This software is furnished under a license and may be used
edf02eb2939c Initial revision
claus
parents:
diff changeset
    39
 only in accordance with the terms of that license and with the
edf02eb2939c Initial revision
claus
parents:
diff changeset
    40
 inclusion of the above copyright notice.   This software may not
edf02eb2939c Initial revision
claus
parents:
diff changeset
    41
 be provided or otherwise made available to, or used by, any
edf02eb2939c Initial revision
claus
parents:
diff changeset
    42
 other person.  No title to or ownership of the software is
edf02eb2939c Initial revision
claus
parents:
diff changeset
    43
 hereby transferred.
edf02eb2939c Initial revision
claus
parents:
diff changeset
    44
"
edf02eb2939c Initial revision
claus
parents:
diff changeset
    45
!
edf02eb2939c Initial revision
claus
parents:
diff changeset
    46
edf02eb2939c Initial revision
claus
parents:
diff changeset
    47
documentation
edf02eb2939c Initial revision
claus
parents:
diff changeset
    48
"
edf02eb2939c Initial revision
claus
parents:
diff changeset
    49
    FontDescription is just a place-holder for scanned font names.
edf02eb2939c Initial revision
claus
parents:
diff changeset
    50
611
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
    51
    [Instance variables:]
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    52
        family          <String>        the font's family ('courier', 'helvetica' etc)
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    53
        face            <String>        the font's face ('bold', 'medium' etc)
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    54
        style           <String>        the font's style ('roman', 'italic', 'oblique')
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    55
        size            <String>        the font's size (by default, in points, not in pixels; but see sizeUnit) 
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    56
        encoding        <Symbol>        the font's encoding (usually #iso8859-1)
611
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
    57
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    58
        manufacturer    <nil|String|Array>
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
    59
                                        the font's origin - if known
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    60
        name            <nil|String|Array>
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    61
                                        the platform specific name
1265
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    62
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    63
        flags           <SmallInteger>  holds serif/italic etc. as flag bits
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    64
        masks           <SmallInteger>  currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    65
        pixelSize       <SmallInteger>  currently dummy; to allow ST-80 compatible subclassing
6825
4fcdfee4604c class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6824
diff changeset
    66
        sizeUnit        <Symbol>        #px or #pt; defines what size is measuring
4fcdfee4604c class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6824
diff changeset
    67
        weight          <SmallInteger>  for real fonts, which support it
4fcdfee4604c class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6824
diff changeset
    68
        slant           <SmallInteger>  for real fonts, which support it
1265
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    69
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    70
    [class variables:]
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    71
        BoldnessMask                    currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    72
        FixedFlag                       currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    73
        ItalicFlag                      currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    74
        OutlineFlag                     currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    75
        SerifFlag                       currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    76
        ShadowFlag                      currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    77
        StrikeoutFlag                   currently dummy; to allow ST-80 compatible subclassing
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
    78
        UnderlineFlag                   currently dummy; to allow ST-80 compatible subclassing
1265
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    79
611
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
    80
    [author:]
e0442439a3c6 documentation
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
    81
        Claus Gittinger
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    82
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    83
    [see also:]
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    84
        Font
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    85
        FontPanel
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    86
        GraphicsContext
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
    87
        ( introduction to view programming :html: programming/viewintro.html#FONTS )
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
    88
"
edf02eb2939c Initial revision
claus
parents:
diff changeset
    89
! !
edf02eb2939c Initial revision
claus
parents:
diff changeset
    90
1265
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    91
!FontDescription class methodsFor:'initialization'!
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    92
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    93
initialize
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    94
    "initialize class variables"
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
    95
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    96
    BoldnessMask              := 2r00000000000000000000111.      "/ allows for 8 boldnesses to be encoded
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    97
    FixedFlag                 := 2r00000000000000000001000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    98
    ItalicFlag                := 2r00000000000000000010000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
    99
    OutlineFlag               := 2r00000000000000000100000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   100
    SerifFlag                 := 2r00000000000000001000000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   101
    ShadowFlag                := 2r00000000000000010000000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   102
    StrikeoutFlag             := 2r00000000000000100000000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   103
    UnderlineFlag             := 2r00000000000001000000000.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   104
    GenericFlag               := 2r00000000000010000000000.      "/ This is a pseudo font
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   105
    OverlappingCharactersFlag := 2r00000000000100000000000.      "/ special for windows
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   106
    AntialiasedFlag           := 2r00000000001000000000000.      "/ added for Xft
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   107
    ScalableFlag              := 2r00000000010000000000000.      "/ added for Xft
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   108
    DecorativeFlag            := 2r00000000100000000000000.      "/ added for Xft
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   109
    ForceNonXFTFlag           := 2r10000000000000000000000.      "/ added for Xft
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   110
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   111
    self initializeGenericFonts.
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   112
    self initializeCharacterEncodingToCharacterSetMapping.
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   113
    self initializeCharacterSetToFontMapping.
5644
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   114
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   115
    "Modified: / 12-02-2017 / 22:01:28 / cg"
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   116
!
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   117
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   118
initializeCharacterEncodingToCharacterSetMapping
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   119
    "character encoding"
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   120
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   121
    CharacterEncodingToCharacterSetMapping isNil ifTrue:[
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   122
        CharacterEncodingToCharacterSetMapping := Dictionary withKeysAndValues:#(
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   123
            utf7        unicode
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   124
            #'utf-7'    unicode
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   125
            utf8        unicode
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   126
            #'utf-8'    unicode
5916
ceb0f5faf565 changed:
Stefan Vogel <sv@exept.de>
parents: 5906
diff changeset
   127
            #utf16be    unicode
ceb0f5faf565 changed:
Stefan Vogel <sv@exept.de>
parents: 5906
diff changeset
   128
            #utf16le    unicode
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   129
        ).
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   130
    ].
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   131
!
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   132
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   133
initializeCharacterSetToFontMapping
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   134
    "character sets"
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   135
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   136
    CharacterSetToFontMapping isNil ifTrue:[
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   137
        CharacterSetToFontMapping := Dictionary withKeysAndValues: #(
5916
ceb0f5faf565 changed:
Stefan Vogel <sv@exept.de>
parents: 5906
diff changeset
   138
            unicode        'iso10646-1'
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   139
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   140
            'koi8-r'       'iso8859-5'
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   141
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   142
            'iso2022-jp'   'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   143
            'x-iso2022-jp' 'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   144
            'x-euc-jp'     'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   145
            'x-shift-jis'  'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   146
            'x-sjis'       'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   147
            'x-jis7'       'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   148
            'jis7'         'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   149
            'euc'          'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   150
            'euc-jp'       'jis*0208*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   151
            'sjis'         'jis*0208*'
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   152
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   153
            'big5'         'big5*'
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   154
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   155
            'gb2312'       'gb*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   156
            'hz-gb-2312'   'gb*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   157
            'x-gbk'        'gb*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   158
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   159
            'iso2022-kr'   'ksc*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   160
            'x-euc-kr'     'ksc*'
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   161
        ).
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   162
    ].
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   163
!
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   164
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   165
initializeGenericFonts
6105
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
   166
    "generic fonts, that do not exist as a device font and are
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   167
     replaced by a real font"
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   168
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   169
    GenericFonts isNil ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   170
        GenericFonts := OrderedCollection new.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   171
        GenericFonts add:((self family:#serif face:nil style:nil size:0 sizeUnit:#pt encoding:nil) isGenericFont:true).
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   172
        GenericFonts add:((self family:#'sans-serif' face:nil style:nil size:0 sizeUnit:#pt encoding:nil) isGenericFont:true).
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   173
        GenericFonts add:((self family:#monospace face:nil style:nil size:0 sizeUnit:#pt encoding:nil) isGenericFont:true).
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   174
    ].
1265
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
   175
! !
c8030e99f941 added ST-80 compatible instVars (currently ignored, though)
Claus Gittinger <cg@exept.de>
parents: 1071
diff changeset
   176
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
   177
!FontDescription class methodsFor:'instance creation'!
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
   178
153
claus
parents: 109
diff changeset
   179
family:familyString
claus
parents: 109
diff changeset
   180
    "returns a font for given family and default (12pt) size 
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   181
     with default encoding.
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   182
     The new fonts face defaults `medium', its style to `roman'.
153
claus
parents: 109
diff changeset
   183
     The returned font is not associated to a specific device"
claus
parents: 109
diff changeset
   184
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   185
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   186
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   187
        face:(self defaultFace) 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   188
        style:(self defaultStyle) 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   189
        size:(self defaultSize) 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   190
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   191
        encoding:(self defaultEncoding)
153
claus
parents: 109
diff changeset
   192
claus
parents: 109
diff changeset
   193
    "
claus
parents: 109
diff changeset
   194
     Font family:'helvetica'
claus
parents: 109
diff changeset
   195
     Font family:'courier'
claus
parents: 109
diff changeset
   196
    "
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   197
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   198
    "Modified: 30.4.1996 / 17:20:44 / cg"
153
claus
parents: 109
diff changeset
   199
!
claus
parents: 109
diff changeset
   200
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   201
family:familyString face:faceString size:sizeNum
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   202
    "returns a font for given family and size with default encoding.
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   203
     The new fonts style defaults to `roman'.
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   204
     The returned font is not associated to a specific device"
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   205
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   206
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   207
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   208
        face:faceString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   209
        style:(self defaultStyle)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   210
        size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   211
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   212
        encoding:(self defaultEncoding)
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   213
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   214
    "
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   215
     Font family:'helvetica' face:'medium' size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   216
     Font family:'helvetica' face:'bold' size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   217
     Font family:'courier'   face:'bold' size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   218
    "
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   219
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   220
    "Modified: 30.4.1996 / 17:21:07 / cg"
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   221
!
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   222
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   223
family:familyString face:faceString style:styleString size:sizeNum
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   224
    "returns a font for given family, face, style and size with default encoding. 
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   225
     The returned font is not associated to a specific device"
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   226
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   227
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   228
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   229
        face:faceString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   230
        style:styleString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   231
        size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   232
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   233
        encoding:(self defaultEncoding)
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   234
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   235
    "
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   236
     Font family:'helvetica' face:'medium' style:'roman'  size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   237
     Font family:'helvetica' face:'medium' style:'italic' size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   238
     Font family:'helvetica' face:'bold'   style:'roman'  size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   239
     Font family:'courier'   face:'bold'   style:'italic' size:10
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   240
    "
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   241
!
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   242
3993
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   243
family:familyString face:faceString style:styleString size:sizeNum encoding:encoding
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   244
    "returns a font for given family, face, style, size and the specified encoding. 
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   245
     The returned font is not associated to a specific device"
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   246
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   247
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   248
          family:familyString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   249
          face:faceString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   250
          style:styleString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   251
          size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   252
          sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   253
          encoding:encoding
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   254
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   255
    "Modified: 20.4.1996 / 23:19:04 / cg"
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   256
!
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   257
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   258
family:familyString face:faceString style:styleString size:size sizeUnit:sizeUnit encoding:encoding
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   259
    "returns a font for given family, face, style, size and the specified encoding. 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   260
     The returned font is not associated to a specific device"
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   261
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
   262
    ^ self new
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   263
          family:familyString 
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   264
          face:faceString 
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   265
          style:styleString 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   266
          size:size
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   267
          sizeUnit:sizeUnit
3993
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   268
          encoding:encoding
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   269
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   270
    "Modified: 20.4.1996 / 23:19:04 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   271
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   272
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   273
family:familyString pixelSize:sizeNum
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   274
    "returns a font for given family and pixelSize with default encoding.
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   275
     The new fonts face defaults to `medium', its style to `roman'.
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   276
     Notice: the returned font will typically only be usable on a screen, 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   277
     and will not scale as to the devices resolution.
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   278
     Use #family:size: for resolution-independent sizing."
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   279
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   280
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   281
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   282
        face:(self defaultFace)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   283
        style:(self defaultStyle)
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   284
        size:sizeNum
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   285
        sizeUnit:#px
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   286
        encoding:(self defaultEncoding)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   287
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   288
    "
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   289
     (Font family:'helvetica' size:10) onDevice:Screen current
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   290
     (Font family:'helvetica' pixelSize:10) onDevice:Screen current
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   291
    "
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   292
!
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   293
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   294
family:familyString size:sizeNum
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   295
    "returns a font for given family and size with default encoding.
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   296
     The new fonts face defaults to `medium', its style to `roman'.
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   297
     The returned font is not associated to a specific device"
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   298
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   299
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   300
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   301
        face:(self defaultFace)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   302
        style:(self defaultStyle)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   303
        size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   304
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   305
        encoding:(self defaultEncoding)
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   306
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   307
    "
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   308
     Font family:'helvetica' size:10
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   309
     Font family:'courier' size:10
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   310
    "
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   311
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   312
    "Modified: 30.4.1996 / 17:21:40 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   313
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   314
4005
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   315
family:familyString size:sizeNum encoding:encoding
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   316
    "returns a font for given family and size with default encoding.
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   317
     The new fonts face defaults to `medium', its style to `roman'.
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   318
     The returned font is not associated to a specific device"
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   319
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   320
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   321
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   322
        face:(self defaultFace)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   323
        style:(self defaultStyle)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   324
        size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   325
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   326
        encoding:encoding
4005
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   327
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   328
    "
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   329
     Font family:'helvetica' size:10 encoding:#'iso8859-1'
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   330
     Font family:'courier' size:10 encoding:#'iso8859-1'
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   331
    "
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   332
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   333
    "Modified: 30.4.1996 / 17:21:40 / cg"
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   334
!
cbe56ccc85fa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3996
diff changeset
   335
1071
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   336
family:familyString style:aStyle size:sizeNum
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   337
    "returns a font for given family and size with default encoding.
1071
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   338
     The new fonts face defaults to `medium', its style to `roman'.
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   339
     The returned font is not associated to a specific device"
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   340
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   341
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   342
        family:familyString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   343
        face:(self defaultFace)
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   344
        style:aStyle 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   345
        size:sizeNum
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   346
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   347
        encoding:(self defaultEncoding)
1071
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   348
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   349
    "
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   350
     Font family:'helvetica' style:#roman size:48
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   351
     Font family:'courier' style:#roman size:10
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   352
    "
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   353
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   354
    "Modified: 30.4.1996 / 17:21:40 / cg"
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   355
    "Created: 8.10.1996 / 18:33:55 / cg"
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   356
!
ae5b36b93cf3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 629
diff changeset
   357
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   358
name:aFontName
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   359
    "returns a font with the given explicit name.
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   360
     WARNING:
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   361
       You shuld not use explicit naming, since font names vary
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   362
       with operatingSystems, devices and architecture.
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   363
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   364
     This interface is provided for special purposes only.
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   365
     On X, the name given should be according the X fontname conventions;
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   366
     i.e. something like: '-*-times-bold-r-normal-*-*-240-*-*-*-*-iso8859-1'.
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   367
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   368
     On other devices, font naming may be completely different."
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   369
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   370
    ^ self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   371
        family:aFontName 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   372
        face:nil
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   373
        style:nil
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   374
        size:nil 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   375
        sizeUnit:#px
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   376
        encoding:nil
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   377
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   378
    "
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   379
     Font name:'-*-times-bold-r-normal-*-*-240-*-*-*-*-iso8859-1'
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   380
     Font name:'6x10'
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   381
     Font name:'k14'
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   382
     ((Font name:'k14') on:Display) encoding
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   383
    "
629
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   384
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   385
    "Modified: 30.4.1996 / 17:23:09 / cg"
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
   386
! !
edf02eb2939c Initial revision
claus
parents:
diff changeset
   387
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   388
!FontDescription class methodsFor:'accessing'!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   389
5991
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
   390
defaultEncoding:encodingSymbol
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
   391
    DefaultEncoding := encodingSymbol
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
   392
!
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
   393
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   394
genericFonts
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   395
    ^ GenericFonts
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   396
! !
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   397
3993
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   398
!FontDescription class methodsFor:'defaults'!
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   399
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   400
defaultEncoding
5991
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
   401
    ^ DefaultEncoding ? #'iso10646-1'.
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
   402
"/    ^ #'iso8859-1'
5894
27858a4e6457 changed: #defaultEncoding
Claus Gittinger <cg@exept.de>
parents: 5644
diff changeset
   403
27858a4e6457 changed: #defaultEncoding
Claus Gittinger <cg@exept.de>
parents: 5644
diff changeset
   404
    "Modified: / 20-03-2012 / 23:48:24 / cg"
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   405
!
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   406
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   407
defaultFace
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
   408
    ^ #medium
3996
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   409
!
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   410
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   411
defaultSize
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   412
    ^ 12
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   413
!
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   414
9ed3e413700c *** empty log message ***
ca
parents: 3993
diff changeset
   415
defaultStyle
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
   416
    ^ #roman 
3993
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   417
! !
7fc0939208e2 defaultEncoding is now 8859-1
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   418
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   419
!FontDescription class methodsFor:'queries'!
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   420
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   421
characterSetForCharacterEncoding:encodingName
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   422
    "return the font-encoding for a character encoding"
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   423
4018
473a63a09368 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
   424
    ^ CharacterEncodingToCharacterSetMapping at:encodingName ifAbsent:encodingName
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   425
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   426
    "
4018
473a63a09368 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
   427
     FontDescription characterSetForCharacterEncoding:'utf8'     
473a63a09368 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
   428
     FontDescription characterSetForCharacterEncoding:'koi8-r'     
473a63a09368 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
   429
     FontDescription characterSetForCharacterEncoding:'unicode'     
3987
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   430
    "
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   431
!
796ff0ae8306 more mapping
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
   432
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   433
fontNamePatternForCharset:aCharSetName
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   434
    "return the font-encoding for an iso-charset"
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   435
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   436
    ^ CharacterSetToFontMapping at:aCharSetName ifAbsent:nil
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   437
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   438
    "
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   439
     FontDescription fontNamePatternForCharset:'iso2022-jp'       
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   440
     FontDescription fontNamePatternForCharset:'euc-jp'     
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   441
    "
4010
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   442
!
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   443
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   444
preferredFontEncodingFor:fileEncoding
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   445
    "given a file encoding, return a corresponding match pattern for a preferred fontEncoding"
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   446
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   447
    |ce fe|
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   448
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   449
    ce := FontDescription characterSetForCharacterEncoding:fileEncoding.
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   450
    ce isNil ifTrue:[
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   451
        ce := fileEncoding.
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   452
    ].
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   453
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   454
    fe := FontDescription fontNamePatternForCharset:ce.
7f899eceaf2d preferredFontEncodingFor moved from FileBrowser
Claus Gittinger <cg@exept.de>
parents: 4005
diff changeset
   455
    fe notNil ifTrue:[^ fe].
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
   456
    ^ ce ? self defaultEncoding.
3827
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   457
! !
3390983893a2 font stuff moved from MIMETypes
Claus Gittinger <cg@exept.de>
parents: 3785
diff changeset
   458
3880
c4c8268a2d9f method category rename
Claus Gittinger <cg@exept.de>
parents: 3827
diff changeset
   459
!FontDescription methodsFor:'Compatibility-ST80'!
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   460
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   461
boldness:aNumber
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   462
    "added for ST-80 compatibility; actually ignored currently"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   463
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   464
    |val|
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   465
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   466
    flags isNil ifTrue:[
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   467
        flags := masks := 0
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   468
    ].
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   469
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   470
    "/ scale from 0..1 to 0..BoldnessMask
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   471
    val := (aNumber max:0.0) min:1.0.
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   472
    val := (BoldnessMask * val) rounded.
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   473
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   474
    flags := flags bitOr:val.
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   475
    masks := masks bitOr:BoldnessMask
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   476
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   477
    "Created: 25.1.1997 / 03:20:05 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   478
    "Modified: 25.1.1997 / 03:20:47 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   479
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   480
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   481
color:aColor
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   482
    "added for ST-80 compatibility; actually ignored currently"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   483
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   484
    "Created: 25.1.1997 / 03:21:28 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   485
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   486
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   487
encodings:aCollectionOfEncodings
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   488
    "added for ST-80 compatibility; actually ignored currently"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   489
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   490
    "Created: 20.6.1997 / 09:52:46 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   491
!
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   492
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   493
fixedWidth:aBoolean
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   494
    "added for ST-80 compatibility; actually ignored currently"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   495
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   496
    flags isNil ifTrue:[
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   497
        flags := masks := 0
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   498
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   499
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   500
        flags := flags bitOr:FixedFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   501
        masks := masks bitOr:FixedFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   502
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   503
        flags := flags bitClear:FixedFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   504
        masks := masks bitClear:FixedFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   505
    ].
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   506
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   507
    "Created: 25.1.1997 / 03:14:06 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   508
    "Modified: 25.1.1997 / 03:21:03 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   509
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   510
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   511
italic:aBoolean
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   512
    "added for ST-80 compatibility; actually ignored currently"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   513
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   514
    flags isNil ifTrue:[
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   515
        flags := masks := 0
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   516
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   517
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   518
        flags := flags bitOr:ItalicFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   519
        masks := masks bitOr:ItalicFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   520
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   521
        flags := flags bitClear:ItalicFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   522
        masks := masks bitClear:ItalicFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   523
    ].
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   524
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   525
    "Created: 25.1.1997 / 03:15:37 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   526
    "Modified: 25.1.1997 / 03:20:55 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   527
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   528
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   529
outline:aBoolean
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   530
    "added for ST-80 compatibility; actually ignored currently"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   531
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   532
    flags isNil ifTrue:[
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   533
        flags := masks := 0
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   534
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   535
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   536
        flags := flags bitOr:OutlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   537
        masks := masks bitOr:OutlineFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   538
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   539
        flags := flags bitClear:OutlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   540
        masks := masks bitClear:OutlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   541
    ].
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   542
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   543
    "Modified: 25.1.1997 / 03:20:55 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   544
    "Created: 20.6.1997 / 09:50:06 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   545
!
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   546
5165
3b03bd5bb18e preps for pixelSize fonts
Claus Gittinger <cg@exept.de>
parents: 4894
diff changeset
   547
pixelSize
3b03bd5bb18e preps for pixelSize fonts
Claus Gittinger <cg@exept.de>
parents: 4894
diff changeset
   548
    ^ pixelSize 
3b03bd5bb18e preps for pixelSize fonts
Claus Gittinger <cg@exept.de>
parents: 4894
diff changeset
   549
!
3b03bd5bb18e preps for pixelSize fonts
Claus Gittinger <cg@exept.de>
parents: 4894
diff changeset
   550
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   551
pixelSize:aNumber
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   552
    "if specified, the size is ignored, and a pixel-sized font is chosen."
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   553
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   554
    pixelSize := aNumber.
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   555
    sizeUnit := #px.
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   556
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   557
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   558
serif:aBoolean
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   559
    "added for ST-80 compatibility; actually ignored currently"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   560
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   561
    flags isNil ifTrue:[
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   562
        flags := masks := 0
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   563
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   564
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   565
        flags := flags bitOr:SerifFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   566
        masks := masks bitOr:SerifFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   567
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   568
        flags := flags bitClear:SerifFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   569
        masks := masks bitClear:SerifFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   570
    ].
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   571
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   572
    "Created: 25.1.1997 / 03:15:17 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   573
    "Modified: 25.1.1997 / 03:20:59 / cg"
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   574
!
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   575
5196
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   576
setPixelSize:aNumber
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   577
    pixelSize := aNumber.
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   578
!
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
   579
6326
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   580
setSize:aNumber
6960
d26b0f5856db #FEATURE
Stefan Vogel <sv@exept.de>
parents: 6956
diff changeset
   581
    size := aNumber ? 0.
6326
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   582
!
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   583
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   584
setSizeUnit:aSymbol
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   585
    sizeUnit := aSymbol.
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   586
!
f48560d5ca58 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6320
diff changeset
   587
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   588
shadow:aBoolean
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   589
    "added for ST-80 compatibility; actually ignored currently"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   590
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   591
    flags isNil ifTrue:[
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   592
        flags := masks := 0
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   593
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   594
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   595
        flags := flags bitOr:ShadowFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   596
        masks := masks bitOr:ShadowFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   597
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   598
        flags := flags bitClear:ShadowFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   599
        masks := masks bitClear:ShadowFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   600
    ].
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   601
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   602
    "Modified: 25.1.1997 / 03:20:55 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   603
    "Created: 20.6.1997 / 09:51:03 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   604
!
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   605
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   606
strikeout:aBoolean
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   607
    "added for ST-80 compatibility; actually ignored currently"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   608
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   609
    flags isNil ifTrue:[
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   610
        flags := masks := 0
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   611
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   612
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   613
        flags := flags bitOr:StrikeoutFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   614
        masks := masks bitOr:StrikeoutFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   615
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   616
        flags := flags bitClear:StrikeoutFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   617
        masks := masks bitClear:StrikeoutFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   618
    ].
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   619
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   620
    "Modified: 25.1.1997 / 03:20:55 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   621
    "Created: 20.6.1997 / 09:51:36 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   622
!
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   623
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   624
underline:aBoolean
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   625
    "added for ST-80 compatibility; actually ignored currently"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   626
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   627
    flags isNil ifTrue:[
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   628
        flags := masks := 0
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   629
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   630
    aBoolean ifTrue:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   631
        flags := flags bitOr:UnderlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   632
        masks := masks bitOr:UnderlineFlag
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   633
    ] ifFalse:[
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   634
        flags := flags bitClear:UnderlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   635
        masks := masks bitClear:UnderlineFlag.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   636
    ].
1760
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   637
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   638
    "Modified: 25.1.1997 / 03:20:55 / cg"
ccd221469891 more ST80 compatibility (partially dummy)
Claus Gittinger <cg@exept.de>
parents: 1740
diff changeset
   639
    "Created: 20.6.1997 / 09:51:18 / cg"
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   640
! !
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   641
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
   642
!FontDescription methodsFor:'accessing'!
edf02eb2939c Initial revision
claus
parents:
diff changeset
   643
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   644
device
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   645
    "return the device I am on"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   646
4146
4c46ae30bd64 Use #graphicsDevice
Stefan Vogel <sv@exept.de>
parents: 4018
diff changeset
   647
    <resource:#obsolete>
4c46ae30bd64 Use #graphicsDevice
Stefan Vogel <sv@exept.de>
parents: 4018
diff changeset
   648
3661
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   649
    self obsoleteMethodWarning:'use #graphicsDevice'.
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   650
    ^ self graphicsDevice
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   651
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   652
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   653
encoding
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
   654
    "return the font's encoding, as a symbol
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
   655
     such as #'iso8859', #'jis0208.1983' or #ascii.
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
   656
     If the encoding is not known, return nil; 
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
   657
     You should assume ascii/iso8859-encoding then."
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   658
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   659
    ^ encoding
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   660
575
ad65411701b0 commentary
Claus Gittinger <cg@exept.de>
parents: 478
diff changeset
   661
    "Modified: 20.4.1996 / 23:14:36 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   662
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   663
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   664
face
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   665
    "return the face, a string"
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   666
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   667
    ^ face
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   668
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   669
4892
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   670
face:aString
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   671
    "set the face, a string such as 'bold'"
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   672
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   673
    self assert:(self fontId isNil). "/ cannot change an instantiated font
7120
a13e27041519 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 7118
diff changeset
   674
    weight := nil.      "/ weight is the numeric equivalent to face
4892
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   675
    face := aString
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   676
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   677
    "Created: 25.1.1997 / 03:12:12 / cg"
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   678
!
9b15605f58ff check: bad change of attributes of a REAL font
Claus Gittinger <cg@exept.de>
parents: 4627
diff changeset
   679
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   680
family
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   681
    "return the family, a string"
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   682
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   683
    ^ family
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   684
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   685
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   686
family:aString
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   687
    "set the family, a string"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   688
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   689
    self assert:(self fontId isNil). "/ cannot change an instantiated font
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   690
    family := aString
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   691
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   692
    "Created: 25.1.1997 / 03:12:12 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   693
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   694
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
   695
family:familyString face:faceString style:styleString size:sizeNum encoding:encodingString
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   696
    <resource: #obsolete>
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   697
    "set the instance values"
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   698
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   699
    self 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   700
        family:familyString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   701
        face:faceString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   702
        style:styleString 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   703
        size:sizeNum 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   704
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   705
        encoding:encodingString
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   706
!
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
   707
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   708
family:familyString face:faceString style:styleString size:sizeArg sizeUnit:sizeUnitArg encoding:encodingString
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   709
    "set the instance values"
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   710
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   711
    self assert:(self fontId isNil). "/ cannot change an instantiated font
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   712
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
   713
    family := familyString asSymbol.
6961
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   714
    faceString notEmptyOrNil ifTrue:[
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   715
        face := faceString asSymbol.
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
   716
    ].
6961
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   717
    styleString notEmptyOrNil ifTrue:[
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   718
        style := styleString asSymbol.
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
   719
    ].
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   720
    sizeUnit := sizeUnitArg.
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   721
    sizeUnit == #px ifTrue:[
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   722
        pixelSize := sizeArg.
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   723
    ] ifFalse:[
6961
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   724
        sizeUnit isNil ifTrue:[
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   725
            sizeUnit := #pt.
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   726
        ].
6960
d26b0f5856db #FEATURE
Stefan Vogel <sv@exept.de>
parents: 6956
diff changeset
   727
        size := sizeArg ? 0.
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   728
    ].
6961
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   729
    encodingString notEmptyOrNil ifTrue:[
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   730
        encoding := encodingString asSymbol.
89
ea2bf46eb669 *** empty log message ***
claus
parents: 52
diff changeset
   731
    ]
229
099543e5d779 handle empty family/style/encoding strings
Claus Gittinger <cg@exept.de>
parents: 219
diff changeset
   732
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
   733
    "Modified: 20.4.1996 / 23:19:25 / cg"
52
edf02eb2939c Initial revision
claus
parents:
diff changeset
   734
!
edf02eb2939c Initial revision
claus
parents:
diff changeset
   735
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   736
file:aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   737
    "set the file"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   738
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   739
    self assert:(self fontId isNil). "/ cannot change an instantiated font
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   740
"/    file := aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   741
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   742
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   743
flags
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   744
    ^ flags
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   745
!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   746
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   747
flags:anInteger
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   748
    flags := anInteger.
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   749
!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   750
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   751
fontFormat:aString
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   752
    "set the fontFormat"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   753
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   754
    self assert:(self fontId isNil). "/ cannot change an instantiated font
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   755
"/    fontFormat := aString
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   756
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   757
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   758
fontId
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   759
    "return the device-dependent font-id"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   760
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   761
    ^ nil
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   762
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   763
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   764
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
   765
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   766
fontVersion:aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   767
    "set the fontVersion"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   768
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   769
    self assert:(self fontId isNil). "/ cannot change an instantiated font
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   770
"/    fontVersion := aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   771
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   772
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   773
foundry
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   774
    "return the manufacturer/foundry"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   775
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   776
    ^ manufacturer
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   777
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   778
    "Created: 25.1.1997 / 03:12:43 / cg"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   779
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   780
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   781
foundry:aString
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   782
    "set the value of the manufacturer/foundry"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   783
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   784
    manufacturer := aString.
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   785
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   786
    "Created: 25.1.1997 / 03:12:43 / cg"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   787
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   788
3661
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   789
graphicsDevice
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   790
    "return the device I am on"
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   791
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   792
    ^ nil
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   793
!
b96d4f68b36e device -> graphicsDevice
Michael Beyl <mb@exept.de>
parents: 3629
diff changeset
   794
5644
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   795
hasOverlappingCharacters:aBoolean 
6111
0152b0e4461a class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6105
diff changeset
   796
    "set whether this has overlapping chars (for windows cleartype drawing only)"
5644
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   797
    
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   798
    flags := (flags ? 0) changeMask:OverlappingCharactersFlag to:aBoolean
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   799
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   800
    "Created: / 08-11-2010 / 13:16:23 / cg"
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   801
!
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   802
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   803
isAntialiasedFont:aBoolean 
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   804
    "set whether this is an antialiased font (currently for XftFonts only)"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   805
    
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   806
    flags := (flags ? 0) changeMask:AntialiasedFlag to:aBoolean
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   807
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   808
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   809
isDecorativeFont:aBoolean 
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   810
    "set whether this is a decorative font (currently for XftFonts only)"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   811
    
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   812
    flags := (flags ? 0) changeMask:DecorativeFlag to:aBoolean
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   813
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   814
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   815
isForceNonXFTFont:aBoolean 
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   816
    "set this to prevent that the font is resolved as an Xft font.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   817
     Special workaround hack: some operations (drawing into a form) 
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   818
     may not work correctly with Xft fonts"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   819
    
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   820
    flags := (flags ? 0) changeMask:ForceNonXFTFlag to:aBoolean
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   821
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   822
    "Created: / 12-02-2017 / 22:08:41 / cg"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   823
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
   824
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   825
isGenericFont:aBoolean 
6111
0152b0e4461a class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6105
diff changeset
   826
    "set whether this is a pseudo font"
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   827
    
5644
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   828
    flags := (flags ? 0) changeMask:GenericFlag to:aBoolean
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   829
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
   830
    "Modified: / 08-11-2010 / 12:58:03 / cg"
6111
0152b0e4461a class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6105
diff changeset
   831
    "Modified (comment): / 27-07-2013 / 15:39:50 / cg"
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   832
!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   833
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   834
isOutlineFont:aBoolean 
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   835
    "set whether this is an outline font (currently for XftFonts only)"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   836
    
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   837
    flags := (flags ? 0) changeMask:OutlineFlag to:aBoolean
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   838
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   839
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   840
isScalableFont:aBoolean 
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   841
    "set whether this is a scalable font (currently for XftFonts only)"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   842
    
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   843
    flags := (flags ? 0) changeMask:ScalableFlag to:aBoolean
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   844
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   845
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   846
manufacturer
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   847
    "return the manufacturer/foundry"
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   848
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   849
    ^ manufacturer
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   850
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   851
    "Created: 25.1.1997 / 03:12:43 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   852
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   853
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   854
manufacturer:aString
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   855
    "set the value of the manufacturer/foundry"
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   856
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   857
    manufacturer := aString.
1277
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   858
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   859
    "Created: 25.1.1997 / 03:12:43 / cg"
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   860
!
f79716195219 more ST-80 stuff
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   861
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   862
masks
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   863
    ^ masks
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   864
!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   865
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   866
masks:something
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   867
    masks := something.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   868
!
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
   869
6723
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   870
name
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   871
    "the name (typically filename) if known"
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   872
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   873
    ^ name
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   874
!
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   875
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   876
name:aString
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   877
    name := aString.
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   878
!
8a4be06814d1 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6629
diff changeset
   879
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   880
sizeUnit
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   881
    "currently returns one of #pt or #px (internal use only)"
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   882
6961
29c66fcf1f94 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6960
diff changeset
   883
    ^ sizeUnit
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   884
!
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
   885
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   886
slant
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   887
    "get the slant"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   888
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   889
    ^ 0 "/ slant 
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   890
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   891
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   892
slant:aNumber
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   893
    "set the slant"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   894
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   895
    self assert:(self fontId isNil). "/ cannot change an instantiated font
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   896
"/    slant := aNumber
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   897
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   898
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   899
spacing
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   900
    "get the spacing"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   901
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   902
    ^ 100 "/ spacing 
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   903
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   904
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   905
spacing:aNumber
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   906
    "set the spacing"
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   907
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   908
    self assert:(self fontId isNil). "/ cannot change an instantiated font
6260
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   909
"/    spacing := aNumber
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   910
!
890ecfee1317 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6197
diff changeset
   911
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   912
style
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   913
    "return the style, a string"
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   914
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
   915
    ^ style
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   916
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   917
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   918
style:aString
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   919
    "set the style"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   920
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   921
    self assert:(self fontId isNil). "/ cannot change an instantiated font
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   922
    style := aString
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   923
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   924
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   925
weight:aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   926
    "set the weight"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   927
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   928
    self assert:(self fontId isNil). "/ cannot change an instantiated font
7118
7314cb86e7e2 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 6991
diff changeset
   929
    weight := aNumber
6262
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   930
!
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   931
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   932
width:aNumber
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   933
    "set the width"
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   934
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   935
    self assert:(self fontId isNil). "/ cannot change an instantiated font
e1df0f1d5153 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6260
diff changeset
   936
"/    width := aNumber
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   937
! !
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   938
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   939
!FontDescription methodsFor:'comparing'!
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   940
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   941
= aFont
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   942
    "two fonts are considered equal, if the font-name components are;
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   943
     independent of the device, the font is on"
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   944
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   945
    (aFont species ~~ self species) ifTrue:[^ false].
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   946
    (size ~~ aFont size) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   947
    (family ~= aFont family) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   948
    (face ~= aFont face) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   949
    (style ~= aFont style) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   950
    (encoding ~~ aFont encoding) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   951
    (sizeUnit ~~ aFont sizeUnit) ifTrue:[^ false].
6991
8271065cb89a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6962
diff changeset
   952
    sizeUnit == #px ifTrue:[
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   953
        (pixelSize ~~ aFont pixelSize) ifTrue:[^ false].  
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   954
    ] ifFalse:[
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   955
        (size ~~ aFont size) ifTrue:[^ false].  
6991
8271065cb89a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 6962
diff changeset
   956
    ].
6541
c75c0398462d class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6475
diff changeset
   957
    ^ true
6474
66caa2e18c27 class: FontDescription
sr
parents: 6467
diff changeset
   958
6475
950c091a7bbf class: FontDescription
sr
parents: 6474
diff changeset
   959
    "Modified: / 20-05-2014 / 11:18:31 / gg"
2160
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   960
!
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   961
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   962
hash
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   963
    "return a number for hashing - req'd since = is redefined."
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   964
2771
25c96682a2f3 really avoid LargeInteger arithmetic
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
   965
    ^ ( (family hash bitAnd:16r1FFFFFFF)
25c96682a2f3 really avoid LargeInteger arithmetic
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
   966
      + (face hash bitAnd:16r1FFFFFFF)
25c96682a2f3 really avoid LargeInteger arithmetic
Claus Gittinger <cg@exept.de>
parents: 2770
diff changeset
   967
      + (style hash bitAnd:16r1FFFFFFF)
3019
6dc6821c111c oops - care for fractional size in #hash
Claus Gittinger <cg@exept.de>
parents: 2980
diff changeset
   968
      + (size ? 0) asInteger) bitAnd:16r3FFFFFFF
2160
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   969
b57a3f138ae3 added #hash
Claus Gittinger <cg@exept.de>
parents: 1760
diff changeset
   970
    "Created: / 19.6.1998 / 04:19:06 / cg"
2164
2bd89f5166a9 oops - fixed #hash.
Claus Gittinger <cg@exept.de>
parents: 2160
diff changeset
   971
    "Modified: / 20.6.1998 / 17:04:00 / cg"
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   972
!
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   973
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   974
sameDeviceFontAs:aFont
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   975
    aFont species ~~ self species ifTrue:[^ false].
6541
c75c0398462d class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6475
diff changeset
   976
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   977
    (family ~= aFont family) ifTrue:[ ^ false ].
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   978
    (face ~= aFont face) ifTrue:[ ^ false ].
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   979
    ((style = aFont style) 
6388
22758be61441 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6330
diff changeset
   980
      or:[ (style = 'italic' and:[aFont style = 'oblique'])
22758be61441 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6330
diff changeset
   981
      or:[ style = 'oblique' and:[aFont style = 'italic']]]) ifFalse:[ ^ false ].
5441
04ebe289a7e0 changed: #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
   982
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   983
    (encoding isNil or:[encoding = aFont encoding]) ifFalse:[ ^ false ].
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   984
    (sizeUnit ? #pt) ~= aFont sizeUnit ifTrue:[ ^ false ].
5191
d3b4c72a8871 changed #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5185
diff changeset
   985
    (sizeUnit ? #pt) == #pt ifTrue:[
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   986
        (size ~= aFont size) ifTrue:[ ^ false ].
5191
d3b4c72a8871 changed #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5185
diff changeset
   987
    ] ifFalse:[
7561
a9ba31e29ade #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 7443
diff changeset
   988
        (pixelSize ~= aFont pixelSize) ifTrue:[ ^ false ].
5191
d3b4c72a8871 changed #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5185
diff changeset
   989
    ].
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
   990
    (self isForceNonXFTFont or:[aFont isForceNonXFTFont]) ifTrue:[
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
   991
        (self isXftFont or:[aFont isXftFont]) ifTrue:[^ false].        
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
   992
    ].    
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
   993
    ^ true
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
   994
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
   995
    "Modified: / 12-02-2017 / 22:59:40 / cg"
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   996
! !
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   997
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   998
!FontDescription methodsFor:'converting'!
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
   999
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1000
asBold
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1001
    "return the bold font corresponding to the receiver"
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1002
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1003
    ^ self asFace:#bold
4627
c3992b15969c asBold / asItalic return device fonts, if the receiver is one.
Claus Gittinger <cg@exept.de>
parents: 4626
diff changeset
  1004
!
c3992b15969c asBold / asItalic return device fonts, if the receiver is one.
Claus Gittinger <cg@exept.de>
parents: 4626
diff changeset
  1005
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1006
asEncoding:anotherEncoding
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1007
    |newFont|
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1008
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1009
    family isNil ifTrue:[
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1010
        "CompoundFonts do not have a family"
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1011
        ^ self
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1012
    ].
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1013
    newFont := self class 
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1014
        family:family 
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1015
        face:face 
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1016
        style:style 
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1017
        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1018
        sizeUnit:sizeUnit
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1019
        encoding:anotherEncoding.
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1020
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1021
    newFont isGenericFont:self isGenericFont.
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1022
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1023
    ^ newFont onDevice:self graphicsDevice.
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1024
    "Modified: / 27-09-2006 / 13:08:11 / cg"
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1025
!
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1026
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1027
asFace:anotherFace
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1028
    "return the bold font corresponding to the receiver"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1029
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1030
    |newFont|
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1031
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1032
    family isNil ifTrue:[
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1033
        "CompoundFonts do not have a family"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1034
        ^ self
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1035
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1036
    newFont := self class 
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1037
                    family:family 
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1038
                    face:anotherFace 
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1039
                    style:style 
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1040
                    size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1041
                    sizeUnit:sizeUnit
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1042
                    encoding:encoding.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1043
    newFont isGenericFont:self isGenericFont.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1044
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1045
    ^ newFont onDevice:self graphicsDevice.
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1046
!
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1047
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1048
asFamily:anotherFamily
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1049
    "return another font corresponding to the receiver face, style and size but
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1050
     with another family"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1051
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1052
    family isNil ifTrue:[
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1053
        "CompoundFonts do not have a family"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1054
        ^ self
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1055
    ].
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1056
    ^ (self class 
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1057
        family:anotherFamily 
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1058
        face:face 
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1059
        style:style 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1060
        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1061
        sizeUnit:sizeUnit
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1062
        encoding:encoding) onDevice:self graphicsDevice.
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1063
!
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1064
5560
4f874d66dbde added: #asFontDescription
ca
parents: 5535
diff changeset
  1065
asFontDescription
4f874d66dbde added: #asFontDescription
ca
parents: 5535
diff changeset
  1066
    ^ self
4f874d66dbde added: #asFontDescription
ca
parents: 5535
diff changeset
  1067
!
4f874d66dbde added: #asFontDescription
ca
parents: 5535
diff changeset
  1068
5196
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1069
asFontWithPixelSize:anotherSize
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1070
    "return another font corresponding to the receiver's family, face and style but
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1071
     with another pixel size.
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1072
     Alias for asPixelSize:"
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1073
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1074
    ^ self asPixelSize:anotherSize
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1075
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1076
    "Modified: / 12-08-2017 / 13:19:22 / cg"
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1077
!
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1078
5196
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1079
asItalic
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1080
    "return the italic font corresponding to the receiver"
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1081
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1082
    ^ self asStyle:#oblique
5196
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1083
!
90aeedb2a2b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5191
diff changeset
  1084
6629
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1085
asPixelSize:anotherSize
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1086
    "return another font corresponding to the receiver's family, face and style but
6629
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1087
     with another pixel size"
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1088
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1089
    |newFont|
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1090
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1091
    family isNil ifTrue:[
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1092
        "CompoundFonts do not have a family"
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1093
        ^ self
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1094
    ].
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1095
    newFont := self class 
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1096
        family:family 
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1097
        face:face 
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1098
        style:style 
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1099
        size:anotherSize 
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1100
        sizeUnit:#px
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1101
        encoding:encoding.
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1102
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1103
    newFont isGenericFont:self isGenericFont.
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1104
    ^ newFont onDevice:self graphicsDevice.
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1105
!
38198a85e3ed class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6541
diff changeset
  1106
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1107
asSize:anotherPointSize
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1108
    "return another font corresponding to the receiver's family, 
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1109
     face and style but with another (point-) size"
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1110
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1111
    |newFont|
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1112
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1113
    family isNil ifTrue:[
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1114
        "CompoundFonts do not have a family"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1115
        ^ self
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1116
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1117
    newFont := self class 
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1118
        family:family 
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1119
        face:face 
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1120
        style:style 
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1121
        size:anotherPointSize 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1122
        sizeUnit:#pt
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1123
        encoding:encoding.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1124
6316
7fe0b1c1956f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6313
diff changeset
  1125
    newFont isGenericFont:self isGenericFont.
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1126
    ^ newFont onDevice:self graphicsDevice.
8071
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1127
4b9d1e67dfa2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 8017
diff changeset
  1128
    "Modified (comment): / 12-08-2017 / 13:19:50 / cg"
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1129
!
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1130
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1131
asStyle:anotherStyle
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1132
    |newFont|
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1133
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1134
    family isNil ifTrue:[
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1135
        "CompoundFonts do not have a family"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1136
        ^ self
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1137
    ].
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1138
    newFont := self class 
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1139
        family:family 
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1140
        face:face 
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1141
        style:anotherStyle 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1142
        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1143
        sizeUnit:sizeUnit
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1144
        encoding:encoding.
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1145
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1146
    newFont isGenericFont:self isGenericFont.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1147
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1148
    ^ newFont onDevice:self graphicsDevice.
4894
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1149
    "Modified: / 27-09-2006 / 13:08:11 / cg"
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1150
!
37a8c77e6206 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  1151
4297
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1152
fromLiteralArrayEncoding:literalEncoding
2436
4ef8d33c8951 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
  1153
    "read my contents from a aLiteralEncodedArray.
4ef8d33c8951 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
  1154
     Must match to what is generated in #literalArrayEncoding"
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1155
4297
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1156
    family := literalEncoding at:2.
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1157
    face   := literalEncoding at:3.
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1158
    style  := literalEncoding at:4.
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1159
    size   := literalEncoding at:5.
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1160
    "/ the following kludge is for backward compatibility 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1161
    "/ do not cleanup !!
4297
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1162
    literalEncoding size > 5 ifTrue:[
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1163
        literalEncoding size > 6 ifTrue:[
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1164
            sizeUnit := literalEncoding at:7.
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1165
            literalEncoding size > 7 ifTrue:[
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1166
                pixelSize := literalEncoding at:8.
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1167
            ].
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1168
        ].
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1169
        encoding := literalEncoding at:6.
4298
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1170
    ] ifFalse:[
5906
7aa045d62811 added: #asEncoding:
Stefan Vogel <sv@exept.de>
parents: 5894
diff changeset
  1171
        encoding := self class defaultEncoding.
4297
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1172
    ].
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1173
!
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1174
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1175
literalArrayEncoding
2436
4ef8d33c8951 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
  1176
    "return myself encoded as a literal array.
4ef8d33c8951 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
  1177
     Must match to what is expected in #fromLiteralArrayEncoding:"
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1178
4298
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1179
    |myName|
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1180
4532
81d5a57183bd Fix comments.
Stefan Vogel <sv@exept.de>
parents: 4526
diff changeset
  1181
    myName := self class name.
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1182
    "/ see comment in #fromLiteralArrayEncoding
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1183
    "/ do not cleanup !!
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1184
    (pixelSize isNil
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1185
    and:[ encoding == #'iso8859-1' ]) ifTrue:[
4298
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1186
        ^ Array
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1187
            with:myName
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1188
            with:family
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1189
            with:face
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1190
            with:style
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1191
            with:size
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1192
    ].
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1193
    (pixelSize isNil and:[self sizeUnit == #pt]) ifTrue:[
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1194
        ^ Array
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1195
            with:myName
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1196
            with:family
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1197
            with:face
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1198
            with:style
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1199
            with:size
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1200
            with:encoding
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1201
    ].
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1202
    ^ Array
4298
2b347bca3941 encoding
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1203
        with:myName
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1204
        with:family
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1205
        with:face
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1206
        with:style
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1207
        with:size
4297
10b461a37e26 added encoding to literal vector
Claus Gittinger <cg@exept.de>
parents: 4146
diff changeset
  1208
        with:encoding
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1209
        with:sizeUnit
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1210
        with:pixelSize
1740
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1211
!
804c5b51ec29 fromLiteralArrayEncoding:
ca
parents: 1618
diff changeset
  1212
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1213
on:aDevice
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1214
    "given the receiver, return a device Font"
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1215
3623
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1216
    "/ send out a warning: #on: is typically used to create views
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1217
    "/ operating on a model.
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1218
    "/ Please use #onDevice: to avoid confusion.
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1219
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1220
    <resource:#obsolete>
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1221
16665d9b7263 #on: -> #onDevice
Claus Gittinger <cg@exept.de>
parents: 3265
diff changeset
  1222
    self obsoleteMethodWarning:'use #onDevice:'.
3629
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1223
    ^ self onDevice:aDevice.
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1224
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1225
1497
697ac9b15962 added #onDevice: for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  1226
onDevice:aDevice
697ac9b15962 added #onDevice: for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  1227
    "given the receiver, return a device Font"
697ac9b15962 added #onDevice: for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  1228
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1229
    |newFont|
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1230
2980
409e9547a45c ignore nil device in #onDevice:
Claus Gittinger <cg@exept.de>
parents: 2934
diff changeset
  1231
    aDevice isNil ifTrue:[^ self].
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1232
    
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1233
    newFont := Font
3629
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1234
        family:family 
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1235
        face:face 
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1236
        style:style 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1237
        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1238
        sizeUnit:sizeUnit 
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1239
        encoding:encoding.
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1240
    newFont flags:flags.
5535
06501937fa4f #onDevice:aDevice -> creates a new font
sr
parents: 5511
diff changeset
  1241
    ^ newFont onDevice:aDevice.
5511
bc18d5eb3527 Support a list of replacement fonts and try each in order
Stefan Vogel <sv@exept.de>
parents: 5441
diff changeset
  1242
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1243
    "Created: / 28-03-1997 / 16:09:30 / cg"
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1244
    "Modified (format): / 12-02-2017 / 22:15:12 / cg"
1497
697ac9b15962 added #onDevice: for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  1245
!
697ac9b15962 added #onDevice: for protocol completeness.
Claus Gittinger <cg@exept.de>
parents: 1277
diff changeset
  1246
7566
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1247
scaled:factor 
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1248
    "return another font corresponding to the receiver's family, face and style but
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1249
     with another pixel size"
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1250
    
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1251
    |newFont|
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1252
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1253
    family isNil ifTrue:[
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1254
        "CompoundFonts do not have a family"
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1255
        ^ self
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1256
    ].
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1257
    newFont := self class 
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1258
            family:family
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1259
            face:face
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1260
            style:style
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1261
            size:(size * factor) rounded
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1262
            sizeUnit:sizeUnit
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1263
            encoding:encoding.
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1264
    newFont isGenericFont:self isGenericFont.
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1265
    ^ newFont onDevice:self graphicsDevice.
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1266
!
e15d5734e788 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 7561
diff changeset
  1267
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1268
size:anotherSize
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1269
    <resource: #obsolete>
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1270
 
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1271
    "return a font corresponding to the receiver, but with different size."
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1272
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1273
    self obsoleteMethodWarning:'use #asSize:'.
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1274
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1275
    ^ self class 
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1276
        family:family 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1277
        face:face 
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1278
        style:style 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1279
        size:anotherSize 
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1280
        sizeUnit:#pt
5169
ad531e713603 pixelSized font preps
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
  1281
        encoding:encoding
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1282
! !
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1283
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1284
!FontDescription methodsFor:'displaying'!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1285
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1286
displayOpaqueString:aString from:index1 to:index2 x:x y:y in:aGC
3663
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1287
    "display a partial string at some position in aGC.
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1288
     - display part of a string, drawing both fore- and background pixels"
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1289
3663
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1290
    self displayString:aString from:index1 to:index2 x:x y:y in:aGC opaque:true
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1291
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1292
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1293
displayOpaqueString:aString x:x y:y in:aGC
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1294
    "display a string at some position in aGC."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1295
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1296
    self displayOpaqueString:aString from:1 to:aString size x:x y:y in:aGC
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1297
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1298
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1299
displayString:aString from:index1 to:index2 x:x y:y in:aGC
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1300
    "display a partial string at some position in aGC."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1301
3663
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1302
    self displayString:aString from:index1 to:index2 x:x y:y in:aGC opaque:false
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1303
!
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1304
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1305
displayString:aString from:index1 to:index2 x:x y:y in:aGC opaque:opaque
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1306
    "display a partial string at some position in aGC."
d40999d6cd1e refactored
Michael Beyl <mb@exept.de>
parents: 3661
diff changeset
  1307
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1308
    self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1309
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1310
6467
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1311
displayString:aString from:index1 to:index2 x:x0 y:y0 in:aGC opaque:opaque maxWidth:maxWidth
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1312
    "redefined for subclasses that do not implement maxWidth"
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1313
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1314
    self displayString:aString from:index1 to:index2 x:x0 y:y0 in:aGC opaque:opaque
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1315
!
36da8c7a6ae9 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6388
diff changeset
  1316
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1317
displayString:aString x:x y:y in:aGC
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1318
    "display a string at some position in aGC."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1319
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1320
    self displayString:aString from:1 to:aString size x:x y:y in:aGC
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1321
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1322
! !
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1323
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1324
!FontDescription methodsFor:'errors'!
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1325
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1326
errorNoDevice
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1327
    "a query was made for device-specific info"
109
ba47d9d6bda8 *** empty log message ***
claus
parents: 89
diff changeset
  1328
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1329
    "
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1330
     this happens, when you ask a font for its height or width,
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1331
     ascent or any other dimension which depends on the device on
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1332
     which the font is rendered, AND the receiver font is not (yet)
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1333
     associated to a device.
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1334
     You should always use 
3159
3b040b0e4ae4 Fix error string 'for for'
Stefan Vogel <sv@exept.de>
parents: 3144
diff changeset
  1335
        font := font on:someDevice
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1336
     to get a device font, before asking for device specifics.
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1337
    "
3159
3b040b0e4ae4 Fix error string 'for for'
Stefan Vogel <sv@exept.de>
parents: 3144
diff changeset
  1338
    self error:'query device independent font for device specific info'
3b040b0e4ae4 Fix error string 'for for'
Stefan Vogel <sv@exept.de>
parents: 3144
diff changeset
  1339
3b040b0e4ae4 Fix error string 'for for'
Stefan Vogel <sv@exept.de>
parents: 3144
diff changeset
  1340
    "Modified: / 27.1.2000 / 16:55:05 / stefan"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1341
! !
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1342
3785
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1343
!FontDescription methodsFor:'getting a device font'!
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1344
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1345
onDevice:aDevice ifAbsent:exceptionBlock 
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1346
    "create a new Font representing the same font as
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1347
     myself on aDevice. This does NOT try to look for existing
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1348
     or replacement fonts (i.e. can be used to get physical fonts)."
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1349
7700
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1350
    |prefs|
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1351
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
  1352
    self isForceNonXFTFont ifTrue:[
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1353
        ^ self
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1354
            onDevice:aDevice 
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1355
            xFontsOnly:true 
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1356
            xftFontsOnly:false 
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1357
            ifAbsent:exceptionBlock 
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1358
    ].
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1359
    
7700
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1360
    prefs := UserPreferences current.
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1361
    ^ self
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1362
        onDevice:aDevice 
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1363
        xFontsOnly:(prefs useXFontsOnly) 
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1364
        xftFontsOnly:(prefs useXftFontsOnly) 
7875
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1365
        ifAbsent:exceptionBlock
d3f511dbeadc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7872
diff changeset
  1366
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
  1367
    "Modified: / 12-02-2017 / 22:59:33 / cg"
7700
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1368
!
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1369
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1370
onDevice:aDevice xFontsOnly:xFontsOnly xftFontsOnly:xftFontsOnly ifAbsent:exceptionBlock 
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1371
    "create a new Font representing the same font as myself on aDevice. 
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1372
     The xFontsOnly/xftFontsOnly are only relevant for XWindow devices;
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1373
     xFontsOnly will suppress xft fonts, whereas xftFontsOnly will suppress x fonts
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1374
     (the first is useful if ST/X has a slow remote X connection for display,
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1375
      on which xft fonts are very slow. Yes, this is actually a reasonable setup
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1376
      in use at one of our customers)
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1377
     This does NOT try to look for existing
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1378
     or replacement fonts (i.e. can be used to get physical fonts)."
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1379
7623
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
  1380
    |newFont id xftFont|
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
  1381
7700
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1382
    (aDevice supportsXftFonts) ifTrue:[
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1383
        xFontsOnly ifTrue:[
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1384
            xftFont := (XftFontDescription for:self) onDevice:aDevice ifAbsent:[nil].
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1385
            xftFont notNil ifTrue:[^ xftFont].
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1386
            xftFontsOnly useXftFontsOnly ifTrue:[^ nil].
8a7791c4bceb #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7623
diff changeset
  1387
        ].    
7623
aa70617876bb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7609
diff changeset
  1388
    ].    
3785
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1389
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1390
    "ask that device for the font"
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
  1391
    id := aDevice 
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
  1392
            getFontWithFamily:family 
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
  1393
            face:face 
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
  1394
            style:style 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1395
            size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size])  
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1396
            sizeUnit:sizeUnit  
5166
a9cd84083df5 preps for pixelSized fonts
Claus Gittinger <cg@exept.de>
parents: 5165
diff changeset
  1397
            encoding:encoding.
3785
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1398
    id isNil ifTrue:[
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1399
        "oops did not work - (device has no such font)"
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1400
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1401
        ^ exceptionBlock value
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1402
    ].
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1403
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1404
    newFont := (Font basicNew) 
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1405
                        setFamily:family 
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1406
                        face:face
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1407
                        style:style
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1408
                        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size])  
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1409
                        sizeUnit:sizeUnit  
3785
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1410
                        encoding:encoding
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1411
                        device:aDevice.
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1412
    newFont setFontId:id.
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1413
    newFont getFontInfos.
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1414
    aDevice registerFont:newFont.
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1415
    ^ newFont
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1416
! !
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1417
8017
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1418
!FontDescription methodsFor:'inspecting'!
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1419
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1420
inspector2TabCharacterSet
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1421
    "an extra tab showing the font"
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1422
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1423
    |v|
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1424
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1425
    CharacterSetView 
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1426
            openOn:self 
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1427
            in:(v := View new) 
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1428
            label:'font' clickLabel:nil asInputFor:nil encoder:nil.
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1429
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1430
    ^ self newInspector2Tab
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1431
        label: 'Font';
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1432
        priority: 50;
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1433
        view: (HVScrollableView forView:v)
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1434
!
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1435
8377
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1436
inspector2TabPreview
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1437
    "an extra tab showing the quick brown fox"
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1438
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1439
    ^ self newInspector2Tab
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1440
        label: 'Preview';
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1441
        priority: 50;
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1442
        view: (TextView new
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1443
                contents:'The quick brown fox jumps over the lazy dog';
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1444
                font:self;
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1445
                yourself)
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1446
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1447
    "Created: / 07-06-2018 / 18:34:32 / Claus Gittinger"
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1448
!
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1449
8017
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1450
inspector2Tabs
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1451
    |tabs|
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1452
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1453
    tabs := super inspector2Tabs.
8377
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1454
    ^ tabs , #( inspector2TabCharacterSet inspector2TabPreview )
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1455
c9b6d993484f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  1456
    "Modified: / 07-06-2018 / 18:32:57 / Claus Gittinger"
8017
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1457
! !
59757832e8b0 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 7876
diff changeset
  1458
1618
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1459
!FontDescription methodsFor:'printing & storing'!
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1460
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1461
printOn:aStream
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1462
    "append a user-friendly representation of the receiver to aStream"
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1463
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1464
    aStream nextPutAll:self userFriendlyName
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1465
!
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1466
1618
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1467
userFriendlyName
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1468
    "return a user-friendly printed representation of the receiver"
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1469
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1470
    |nm|
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1471
6197
b4d4a3dc00bf class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6111
diff changeset
  1472
    nm := family ? 'nil font family'.
1618
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1473
    face notNil ifTrue:[
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1474
        nm := nm , '-', face.
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1475
    ].
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1476
    style notNil ifTrue:[
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1477
        nm := nm , '-', style.
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1478
    ].
6962
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1479
    sizeUnit == #px ifTrue:[
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1480
        (pixelSize notNil and:[pixelSize ~~ 0]) ifTrue:[
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1481
            nm := nm , '-', pixelSize printString,'px'.
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1482
        ].
6329
4907031e1432 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6326
diff changeset
  1483
    ] ifFalse:[
6962
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1484
        (size notNil and:[size ~~ 0]) ifTrue:[
e310074c6d77 #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 6961
diff changeset
  1485
            nm := nm , '-', size printString,'pt'.
6329
4907031e1432 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6326
diff changeset
  1486
        ].
1618
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1487
    ].
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1488
    encoding notNil ifTrue:[
3991
9810f304f469 printString
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
  1489
        nm := nm , '(', encoding , ')'.
1618
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1490
    ].
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1491
    ^ nm
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1492
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1493
    "
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1494
     View defaultFont userFriendlyName
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1495
     Button defaultFont userFriendlyName
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1496
    "
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1497
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1498
    "Modified: 20.4.1996 / 23:25:36 / cg"
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1499
    "Created: 19.4.1997 / 18:09:25 / cg"
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1500
! !
044de84f0d5f moved userFriendlyName up
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  1501
7443
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1502
!FontDescription methodsFor:'private'!
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1503
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1504
installInDeviceForGCId:aGCId
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1505
    "install the font for aGCId.
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1506
     This is a No-op. Subclasses may redefine this."
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1507
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1508
    ^ self.
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1509
! !
e2d05b756727 Use devices registry
Stefan Vogel <sv@exept.de>
parents: 7343
diff changeset
  1510
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1511
!FontDescription methodsFor:'queries'!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1512
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1513
bold
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1514
    "return true, if the receiver is a bold font -
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1515
     Added for st-80 compatibility."
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1516
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1517
    "/ Currently, this implementation is a dirty hack and will be changed soon.
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1518
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1519
    ^ face = 'bold'
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1520
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1521
    "Modified: 11.4.1997 / 21:31:25 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1522
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1523
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1524
boldness
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1525
    "return the boldness of the characters in this font 0 .. 1 -
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1526
     Added for st-80 compatibility"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1527
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1528
    "/ Currently, this implementation is a dirty hack and will be changed soon.
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1529
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1530
    face = 'roman' ifTrue:[^ 0.5].
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1531
    face = 'normal' ifTrue:[^ 0.5].
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1532
    face = 'bold' ifTrue:[^ 0.75].
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1533
    face = 'light' ifTrue:[^ 0.25].
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1534
    ^ 0.5
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1535
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1536
    "Modified: 11.4.1997 / 21:31:31 / cg"
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1537
!
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1538
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1539
color
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1540
    "return the default color in which this font is to be rendered.
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1541
     Added for st-80 compatibility.
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1542
     For now always black."
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1543
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1544
    ^ Color black
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1545
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1546
    "Created: 25.1.1997 / 02:59:15 / cg"
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1547
    "Modified: 25.1.1997 / 03:02:14 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1548
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1549
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1550
existsOn:aDevice
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1551
    "return true, if the receiver is available on aDevice;
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1552
     false otherwise. This is a kludge method; its better to
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1553
     ask a device for its available fonts and use this info ...
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1554
     Notice, that if you simply use a font by name, the system
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1555
     will automatically take a replacement font."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1556
3629
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1557
    ^ ((Font
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1558
        family:family 
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1559
        face:face 
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1560
        style:style 
5185
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1561
        size:(sizeUnit == #px ifTrue:[pixelSize] ifFalse:[size]) 
c807ae478014 pixelSize stuff
Claus Gittinger <cg@exept.de>
parents: 5169
diff changeset
  1562
        sizeUnit:sizeUnit
3629
9d06228191a6 Fix obsolete methods
Stefan Vogel <sv@exept.de>
parents: 3623
diff changeset
  1563
        encoding:encoding) onDevice:aDevice ifAbsent:nil) notNil
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1564
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1565
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1566
fullName
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1567
    ^ nil
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1568
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1569
    "Created: 23.2.1996 / 00:45:45 / cg"
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1570
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1571
5644
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1572
hasOverlappingCharacters
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1573
    "answer true, if this is a windows font where characters overlap"
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1574
    
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1575
    ^ flags notNil and:[ flags bitTest:OverlappingCharactersFlag ].
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1576
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1577
    "Created: / 08-11-2010 / 13:16:51 / cg"
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1578
!
664ce01f38f5 +hasOverlappingCharacters
Claus Gittinger <cg@exept.de>
parents: 5560
diff changeset
  1579
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1580
isAntialiasedFont
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1581
    "answer true, if this is an antialiased font (currently Xft only)"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1582
    
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1583
    ^ (flags ? 0) bitTest:AntialiasedFlag
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1584
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1585
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1586
isDecorativeFont
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1587
    "answer true, if this is an decorative font (currently Xft only)"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1588
    
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1589
    ^ (flags ? 0) bitTest:DecorativeFlag
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1590
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1591
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
  1592
isForceNonXFTFont
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1593
    "this flag is set if someone wants to preven an XFT font to be used
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1594
     when the receiver is resolved.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1595
     This is a temporary hack - some functions (drawing into a bitmap) may not work
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1596
     correctly when Xft fonts are used"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1597
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1598
    ^ flags notNil and:[flags bitTest:ForceNonXFTFlag]
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1599
7876
44314d769878 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 7875
diff changeset
  1600
    "Created: / 12-02-2017 / 22:59:25 / cg"
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1601
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1602
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1603
isGenericFont
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1604
    "answer true, if this is a pseudo font"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1605
    
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1606
    ^ (flags ? 0) bitTest:GenericFlag
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1607
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1608
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1609
isOutlineFont
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1610
    "answer true, if this is an outline font (currently Xft only)"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1611
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1612
    ^ (flags ? 0) bitTest:OutlineFlag 
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1613
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1614
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1615
isScaledFont
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1616
    "answer true, if this is a scalable font"
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1617
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1618
    ^ (sizeUnit ~= #px and:[size = 0]) or:[flags notNil and:[flags bitTest:ScalableFlag]] 
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1619
!
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1620
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1621
italic
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1622
    "return true if this is an italic font -
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1623
     Added for st-80 compatibility"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1624
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1625
    "/ Currently, this implementation is a dirty hack and will be changed soon.
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1626
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1627
    style = 'italic' ifTrue:[^ true].
3246
213e4771d6fb typo fixed
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  1628
    style = 'oblique' ifTrue:[^ true].
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1629
    ^ false
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1630
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1631
    "Modified: 11.4.1997 / 21:31:42 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1632
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1633
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1634
serif
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1635
    "return true, if this font has serifs.
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1636
     Added for st-80 compatibility"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1637
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1638
    "/ Currently, this implementation is a dirty hack and will be changed soon.
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1639
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1640
    family = 'Times' ifTrue:[^ true].
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1641
    family = 'times' ifTrue:[^ true].
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1642
    ^ false.
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1643
1585
7892ed31d333 fixed #italic and #bold
Claus Gittinger <cg@exept.de>
parents: 1497
diff changeset
  1644
    "Modified: 11.4.1997 / 21:31:51 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1645
!
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1646
3265
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1647
size
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1648
    "return the size, a number"
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1649
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1650
    ^ size
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1651
!
408fac627dc4 category change
Claus Gittinger <cg@exept.de>
parents: 3254
diff changeset
  1652
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1653
species
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1654
    ^ Font
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1655
!
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1656
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1657
underline
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1658
    "return true if this is an underlined font -
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1659
     Added for st-80 compatibility
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1660
     (always false here)"
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1661
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1662
    ^ false
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1663
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1664
    "Created: 25.1.1997 / 02:58:30 / cg"
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1665
    "Modified: 25.1.1997 / 03:01:12 / cg"
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1666
! !
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1667
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1668
!FontDescription methodsFor:'queries-dimensions'!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1669
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1670
ascent
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1671
    "return the ascent - the number of pixels above the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1672
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1673
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1674
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1675
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1676
ascentOn:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1677
    "return the ascent - the number of pixels above the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1678
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1679
    ^ (self onDevice:aDevice) ascent
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1680
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1681
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1682
descent
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1683
    "return the descent - the number of pixels below the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1684
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1685
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1686
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1687
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1688
descentOn:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1689
    "return the ascent - the number of pixels above the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1690
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1691
    ^ (self onDevice:aDevice) descent
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1692
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1693
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1694
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1695
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1696
height
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1697
    "return the height - the number of pixels above plus below the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1698
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1699
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1700
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1701
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1702
heightOf:aString
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1703
    "return the height of the given string.
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1704
     Here, assume the characters are of constant height"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1705
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1706
    ^ self height
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1707
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1708
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1709
heightOf:aString on:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1710
    "return the height of the given string on the given device."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1711
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1712
    ^ (self onDevice:aDevice) heightOf:aString
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1713
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1714
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1715
heightOn:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1716
    "return the height - the number of pixels above PLUS below the baseLine."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1717
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1718
    ^ (self onDevice:aDevice) height
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1719
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1720
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1721
isFixedWidth
7609
bb3fd768e511 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7607
diff changeset
  1722
    "return true, if this is a fixed pitch font 
bb3fd768e511 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7607
diff changeset
  1723
     (i.e. all characters are of the same width).
bb3fd768e511 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7607
diff changeset
  1724
     Also called monospaced fonts"
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1725
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1726
    self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1727
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1728
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1729
maxAscent
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
  1730
    "return the font's maximum-ascent (i.e. the maximum of all characters);
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1731
     That is the number of units (usually pixels) above the baseline."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1732
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1733
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1734
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1735
6313
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1736
maxCode
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1737
    "return the biggest UCS code in font.
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1738
     Dummy for now"
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1739
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1740
    ^ 16rFFFF
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1741
!
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1742
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1743
maxDescent
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
  1744
    "return the font's maximum-descent (i.e. the maximum of all characters);
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1745
     That is the number of units (usually pixels) below the baseline."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1746
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1747
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1748
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1749
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1750
maxHeight
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
  1751
    "return the font's characters maximum height;
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1752
     That is the number of units (usually pixels)."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1753
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1754
    ^ self maxAscent + self maxDescent
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1755
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1756
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1757
maxWidth
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
  1758
    "return the font's maximum-width character (i.e. the maximum of all characters);
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1759
     That is a number of units (usually pixels)."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1760
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1761
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1762
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1763
6313
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1764
minCode
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1765
    "return the smallest UCS code in font.
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1766
     Dummy for now"
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1767
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1768
    ^ 0
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1769
!
2b9a1e4d6f96 class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 6262
diff changeset
  1770
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1771
width
7343
7ec79c481378 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 7239
diff changeset
  1772
    "return the font's characters width;
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1773
     That is a number of units (usually pixels).
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1774
     For variable pitch fonts, the width of the space character is returned.
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1775
     For fixed fonts, this is the same as minWidth or maxWidth (or any character).
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1776
     The receiver must be associated to a device, for this query to be legal."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1777
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1778
    ^ self widthOf:' '
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1779
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1780
    "Modified: 30.4.1996 / 16:43:45 / cg"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1781
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1782
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1783
widthOf:aString
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1784
    "return the width of a string"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1785
3667
53ebf11c6dd9 widthOf fixed for Text-item
Michael Beyl <mb@exept.de>
parents: 3663
diff changeset
  1786
    ^ self widthOf:aString string from:1 to:aString size
2544
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1787
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1788
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1789
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1790
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1791
widthOf:aString from:start to:stop
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1792
    "return the width of a sub string"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1793
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1794
    ^ self subclassResponsibility
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1795
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1796
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1797
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1798
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1799
widthOf:aString from:start to:stop on:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1800
    "return the width of a sub string.
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1801
     Here, assume that this fonts width is device independent."
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1802
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1803
    ^ (self onDevice:aDevice) widthOf:aString from:start to:stop
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1804
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1805
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1806
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1807
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1808
widthOf:aString on:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1809
    "return the width of a string"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1810
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1811
    ^ (self onDevice:aDevice) widthOf:aString
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1812
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1813
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1814
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1815
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1816
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1817
!
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1818
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1819
widthOn:aDevice
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1820
    "return the width on some device; that is the width of the space character
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1821
     (which is the width of any character iff the font is a fixed pitch font)"
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1822
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1823
    ^ (self onDevice:aDevice) width
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1824
! !
8fdf3d873964 code refactoring
Claus Gittinger <cg@exept.de>
parents: 2436
diff changeset
  1825
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1826
!FontDescription methodsFor:'queries-encoding'!
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1827
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1828
isASCII
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1829
    "return true, if the receiver's encoding is
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1830
     compatible with ascii (i.e. its ascii or iso8859)"
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1831
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1832
    ^ (encoding == #iso8859) or:[encoding == #ascii]
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1833
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1834
    "Created: 24.2.1996 / 22:47:30 / cg"
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1835
    "Modified: 20.4.1996 / 23:20:01 / cg"
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1836
!
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1837
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1838
isISO8859
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1839
    "return true, if the receiver's encoding is
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1840
     compatible with iso8859 (i.e. iso8859)"
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1841
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1842
    ^ encoding == #iso8859
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1843
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1844
    "Created: 24.2.1996 / 22:47:12 / cg"
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1845
    "Modified: 20.4.1996 / 23:20:13 / cg"
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1846
!
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1847
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1848
isJIS
7239
fc6eccef933b #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 7220
diff changeset
  1849
    "return true, if the receiver's encoding is
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1850
     compatible with jis (i.e. jisXXX)"
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1851
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1852
    ^ (encoding startsWith:'jis')
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1853
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1854
    "Created: 24.2.1996 / 22:47:47 / cg"
576
6a7392220976 commentary
Claus Gittinger <cg@exept.de>
parents: 575
diff changeset
  1855
    "Modified: 20.4.1996 / 23:20:30 / cg"
456
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1856
! !
3ab60f26b5a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
  1857
6105
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1858
!FontDescription methodsFor:'testing'!
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1859
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1860
isAlienFont
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1861
    "answer true, if this is an alien font which does not have a device representation.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1862
     Alien fonts are eg. Hershey or Bitmap fonts, which are drawn by st/x itself."
6105
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1863
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1864
    ^ true
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1865
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1866
    "Modified (comment): / 12-02-2017 / 22:03:22 / cg"
6320
3205a83288d3 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6316
diff changeset
  1867
!
3205a83288d3 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6316
diff changeset
  1868
3205a83288d3 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6316
diff changeset
  1869
isXftFont
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1870
    "anwer true, if this is an Xft font.
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1871
     return false here; to be redefined in subclass(es)"
6320
3205a83288d3 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6316
diff changeset
  1872
3205a83288d3 class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 6316
diff changeset
  1873
    ^ false
7872
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1874
eb7e735df7b5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 7700
diff changeset
  1875
    "Modified (comment): / 12-02-2017 / 22:04:06 / cg"
6105
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1876
! !
156735f7972f class: FontDescription
Stefan Vogel <sv@exept.de>
parents: 5991
diff changeset
  1877
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1878
!FontDescription class methodsFor:'documentation'!
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1879
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1880
version
6956
96f7888403e5 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 6825
diff changeset
  1881
    ^ '$Header$'
5441
04ebe289a7e0 changed: #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
  1882
!
04ebe289a7e0 changed: #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
  1883
04ebe289a7e0 changed: #sameDeviceFontAs:
Claus Gittinger <cg@exept.de>
parents: 5223
diff changeset
  1884
version_CVS
6956
96f7888403e5 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 6825
diff changeset
  1885
    ^ '$Header$'
437
a81ce3a8038b return dummy default encoding & fullNames
Claus Gittinger <cg@exept.de>
parents: 229
diff changeset
  1886
! !
3785
045a05c6abbe onDevice:ifAbsent:
Claus Gittinger <cg@exept.de>
parents: 3667
diff changeset
  1887
5991
c89cdc73a6bb class: FontDescription
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1888
1275
9c3461bb0232 more ST-80 mimicri
Claus Gittinger <cg@exept.de>
parents: 1266
diff changeset
  1889
FontDescription initialize!