Text.st
author Claus Gittinger <cg@exept.de>
Sat, 02 May 2020 21:40:13 +0200
changeset 5476 7355a4b11cb6
parent 5438 2f5749ce202a
permissions -rw-r--r--
#FEATURE by cg class: Socket class added: #newTCPclientToHost:port:domain:domainOrder:withTimeout: changed: #newTCPclientToHost:port:domain:withTimeout:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
891
f21b987d97b6 more to compare
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
f21b987d97b6 more to compare
Claus Gittinger <cg@exept.de>
parents: 872
diff changeset
    13
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
    14
"{ NameSpace: Smalltalk }"
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
    15
4426
24e3f90e84ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
    16
CharacterArray subclass:#Text
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
    17
	instanceVariableNames:'string runs'
4425
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    18
	classVariableNames:'BackgroundColorEmphasis BoldEmphasis BoldOverlineEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    19
		BoldUnderlineEmphasis BoldUnderwaveEmphasis ColorEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    20
		EtchColorEmphasis FontEmphasis ItalicEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    21
		ItalicUnderlineEmphasis ItalicUnderwaveEmphasis OverlineEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    22
		ReverseEmphasis StrikeoutColorEmphasis StrikeoutEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    23
		Subscript Superscript UnderlineColorEmphasis UnderlineEmphasis
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
    24
		UnderwaveEmphasis'
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
    25
	poolDictionaries:''
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
    26
	category:'Collections-Text'
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
    29
!Text class methodsFor:'documentation'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
copyright
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 COPYRIGHT (c) 1996 by Claus Gittinger
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
              All Rights Reserved
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 This software is furnished under a license and may be used
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 only in accordance with the terms of that license and with the
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
 inclusion of the above copyright notice.   This software may not
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
 be provided or otherwise made available to, or used by, any
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
 other person.  No title to or ownership of the software is
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
 hereby transferred.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
documentation
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    Texts add emphasis information to a string.
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    49
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
    50
    Texts and strings should behave interchanchably to the outside
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
    51
    world, except that texts keep per-character emphasis information.
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    52
    (strings return nil when asked for an element's emphasis).
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    53
    Use #string, to get a text's underlying plain string without any emphasis
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
    54
    information.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    56
    Currently, the following attributes are supported:
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    57
        #bold
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    58
        #italic
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    59
        #underline
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    60
        #underwave
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    61
        #strikeout
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    62
        (#color -> aColor)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    63
        (#backgroundColor -> aColor)
759
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
    64
        (#underlineColor -> aColor)
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
    65
        (#strikeoutColor -> aColor)
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    66
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    67
    Attributes may be combined (pass an array of above) as emphasis.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    68
    See examples.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
    69
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    70
    This class is a hack and may need some massage.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    [author:]
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
        Claus Gittinger
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    [see also:]
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
        CharacterArray String RunArray
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
"
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
    78
!
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
    79
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
    80
examples
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
    81
"
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    82
  In a textView:
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    83
                                                                        [exBegin]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    84
    |t v|
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    85
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    86
    t := 'The quick brown fox jumps over the lazy dog' asText.
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    87
    t emphasizeFrom:(t findString:'quick')
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    88
      count:5 with:#bold.
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    89
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    90
    t emphasizeFrom:(t findString:'brown')
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    91
      count:9 with:(Array with:#color->(Color name:'brown')
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    92
                                                     with:#bold).
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    93
    t emphasizeFrom:(t findString:'lazy')
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    94
      count:4 with:(Array with:#color->(Color red)
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    95
                                                      with:#italic).
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
    96
    t emphasizeFrom:(t findString:'dog')
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    97
      count:3 with:#underline.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    98
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
    99
    v := HVScrollableView for:EditTextView.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   100
    v contents:t.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   101
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   102
    v width:450.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   103
    v open.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   104
                                                                        [exEnd]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   105
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   106
                                                                        [exBegin]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   107
    |t v|
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
   108
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   109
    t := 'a',('1' emphasizeAllWith:#subscript),'x',('3' emphasizeAllWith:#superscript)
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   110
         ,'a',('2' emphasizeAllWith:#subscript),'x',('2' emphasizeAllWith:#superscript)
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   111
         ,'a',('3' emphasizeAllWith:#subscript),'x',('n' emphasizeAllWith:#superscript).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   112
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   113
    Dialog information:t.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   114
                                                                        [exEnd]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   115
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   116
  plain string (for comparison):
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   117
                                                                        [exBegin]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   118
    Dialog information:'hello'
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   119
                                                                        [exEnd]
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   120
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   121
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   122
  emphasized strings as dialog titles:
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   123
                                                                        [exBegin]
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
   124
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   125
        information:((Text string:'hello') allBold)
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   126
                                                                        [exEnd]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   127
                                                                        [exBegin]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   128
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   129
        information:(Text string:'hello' emphasis:#italic)
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   130
                                                                        [exEnd]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   131
                                                                        [exBegin]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   132
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   133
        information:(Text string:'hello' emphasis:#(underline))
702
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   134
                                                                        [exEnd]
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   135
                                                                        [exBegin]
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   136
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   137
        information:(Text string:'hello' emphasis:#(underwave))
702
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   138
                                                                        [exEnd]
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   139
                                                                        [exBegin]
0c2c9b9fb4aa added support for wave-line underlining
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
   140
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   141
        information:(Text string:'hello' emphasis:#(bold underline))
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   142
                                                                        [exEnd]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   143
                                                                        [exBegin]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   144
    Dialog
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
   145
        information:(Text string:'hello'
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   146
                 emphasis:(Array with:#bold
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   147
                                 with:#strikeout
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   148
                                 with:(#color->Color red)))
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   149
                                                                        [exEnd]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   150
                                                                        [exBegin]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   151
    Dialog
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
   152
        information:(Text string:'hello'
759
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   153
                 emphasis:(Array with:(#color->Color black)
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   154
                                 with:#underwave
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   155
                                 with:(#underlineColor->Color red)))
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   156
                                                                        [exEnd]
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   157
                                                                        [exBegin]
3527d6b2fb6d new emphasises: #underlineColor->aColor and
Claus Gittinger <cg@exept.de>
parents: 758
diff changeset
   158
    Dialog
4015
959155308ecb #OTHER by mawalch
mawalch
parents: 3829
diff changeset
   159
        information:(Text string:'hello'
315
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   160
                 emphasis:(Array with:#bold
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   161
                                 with:#strikeout
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   162
                                 with:(#color->Color red)
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   163
                                 with:(#backgroundColor->Color yellow)))
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   164
                                                                        [exEnd]
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   165
                                                                        [exBegin]
e4ef56137893 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 314
diff changeset
   166
    Dialog
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   167
        information:(Text string:'hello' color:(Color red))
313
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   168
                                                                        [exEnd]
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   169
46cf6fb8ed5d examples
Claus Gittinger <cg@exept.de>
parents: 310
diff changeset
   170
"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   173
!Text class methodsFor:'initialization'!
314
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   174
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   175
initialize
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   176
    "initialize the class"
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   177
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   178
    "
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   179
     consider this a kludge:
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   180
     I want to inherit behavior from CharacterArray, but not
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   181
     its implementation (indexed access).
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   182
    "
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   183
    self flags:(Behavior flagRegular).
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   184
4425
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   185
    "/
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   186
    "/ although it looks like, these enum-symbols cannot
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   187
    "/ be easily renamed (they already found their way into many user-app-classes)
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   188
    "/
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   189
    BackgroundColorEmphasis := #backgroundColor.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   190
    ColorEmphasis := #color.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   191
    ItalicEmphasis := #italic.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   192
    BoldEmphasis := #bold.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   193
    UnderlineEmphasis := #underline.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   194
    UnderwaveEmphasis := #underwave.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   195
    OverlineEmphasis := #overline. 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   196
    StrikeoutEmphasis := #strikeout.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   197
    ReverseEmphasis := #reverse.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   198
    BoldUnderlineEmphasis := #boldUnderline.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   199
    BoldOverlineEmphasis := #boldOverline. 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   200
    BoldUnderwaveEmphasis := #boldUnderwave.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   201
    ItalicUnderlineEmphasis := #italicUnderline. 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   202
    ItalicUnderwaveEmphasis := #italicUnderwave.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   203
    UnderlineColorEmphasis := #underlineColor. 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   204
    StrikeoutColorEmphasis := #strikeoutColor. 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   205
    EtchColorEmphasis := #etchColor.
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   206
    FontEmphasis := #font.
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   207
    Superscript := #superscript.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   208
    Subscript := #subscript.
314
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   209
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   210
    "
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   211
     Text initialize
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   212
    "
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   213
4425
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   214
    "Modified: / 12-05-1996 / 17:53:50 / cg"
efa00eb073ed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
   215
    "Modified (comment): / 20-06-2017 / 08:40:53 / cg"
314
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   216
! !
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
   217
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   218
!Text class methodsFor:'instance creation'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
fromString:aString 
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   221
    "create a Text instance, for the characters in aString,
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   222
     without emphasis."
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   223
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   224
    ^ super new string:aString emphasis:nil
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
     Text fromString:'hello'
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   230
    "Modified: 12.5.1996 / 17:05:34 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   233
new
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   234
    "create a new empty Text instance.
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   235
     Redefined for string-protocol compatibility"
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   236
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   237
    ^ super new string:'' emphasis:nil
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   238
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   239
    "Text new"
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   240
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   241
    "Modified: 12.5.1996 / 17:05:17 / cg"
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   242
    "Modified: 31.12.1996 / 12:39:57 / stefan"
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   243
!
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   244
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   245
new:size
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   246
    "create a new empty Text instance.
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   247
     Redefined for string-protocol compatibility"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   248
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   249
    ^ self string:(String new:size)
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   250
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   251
    "Created: 12.5.1996 / 11:57:27 / cg"
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   252
    "Modified: 12.5.1996 / 17:05:17 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   253
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   254
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
string:aString 
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   256
    "create a Text instance, for the characters in aString,
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   257
     without emphasis."
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   258
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   259
    ^ super new string:aString emphasis:nil
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
     Text string:'hello'
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   265
    "Modified: 12.5.1996 / 17:05:00 / cg"
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   266
!
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   267
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   268
string:aString color:aColor
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   269
    "create a Text instance, for the characters in aString,
345
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   270
     which are colored as aColor (only the foregroundColor is affected).
496
509b18547136 comment
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   271
     This is a shortCut for creating an emphasis of (#color->aColor)"
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   272
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   273
    ^ super new string:aString emphasis:(#color->aColor)
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   274
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   275
    "
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   276
     Dialog
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   277
        information:(Text string:'hello' color:(Color red))
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   278
    "
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   279
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   280
    "Created: 12.5.1996 / 17:03:20 / cg"
496
509b18547136 comment
Claus Gittinger <cg@exept.de>
parents: 466
diff changeset
   281
    "Modified: 27.2.1997 / 10:13:36 / cg"
344
72fe9b7ae4b5 added #string:color:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
   282
!
72fe9b7ae4b5 added #string:color:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 343
diff changeset
   283
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
string:aString emphasis:attribute
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   285
    "create a Text instance, for the characters in aString,
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   286
     which are emphasized as described by attribute."
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   287
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   288
    ^ super new string:aString emphasis:attribute
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   289
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
     Text string:'hello' emphasis:#bold
309
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   292
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   293
     Dialog
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   294
        information:(Text string:'hello' emphasis:#bold)
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   295
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   296
     Dialog
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   297
        information:(Text string:'hello' emphasis:#italic)
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   298
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   299
     Dialog
6458ec5cc033 added convenient #string:color: instance creation message
Claus Gittinger <cg@exept.de>
parents: 308
diff changeset
   300
        information:(Text string:'hello' emphasis:#underline)
310
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   301
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   302
     Dialog
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   303
        information:(Text string:'hello' emphasis:#strikeout)
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
310
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   306
    "Modified: 12.5.1996 / 17:16:03 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   307
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   308
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   309
string:aString emphasisCollection:attributeCollection
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   310
    "create a Text instance, for the characters in aString,
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   311
     which are individually emphasized as described by attributeCollection."
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   312
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   313
    ^ super new string:aString emphasisCollection:attributeCollection
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   314
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   315
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   316
     Text 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   317
        string:'hello' 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   318
        emphasisCollection:#(#bold #bold #italic #italic #italic)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   319
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   320
     Dialog
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   321
        information:(Text 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   322
                        string:'hello' 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   323
                        emphasisCollection:#(#bold #bold #italic #italic #(#underline italic)))
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   324
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   325
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   326
    "Created: 14.5.1996 / 14:02:18 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   327
    "Modified: 14.5.1996 / 15:01:28 / cg"
345
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   328
!
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   329
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   330
string:aString foregroundColor:fgColor backgroundColor:bgColor
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   331
    "create a Text instance, for the characters in aString,
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   332
     which are colored in fgColor on bgColor.
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   333
     This is a shortCut for creating an emphasis of 
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   334
     #( #color->fgColor) (#backgroundColor->bgColor)"
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   335
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   336
    ^ super new 
345
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   337
        string:aString 
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   338
        emphasis:(Array with:#color->fgColor
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   339
                        with:#backgroundColor->bgColor)
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   340
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   341
    "
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   342
     Dialog
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   343
        information:(Text string:'hello' 
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   344
                          foregroundColor:(Color red)
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   345
                          backgroundColor:(Color yellow))
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   346
    "
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   347
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   348
    "Modified: 11.5.1996 / 14:21:01 / cg"
062032f9e401 renamed to #string:foregroundColor:backgroundColor:
Claus Gittinger <cg@exept.de>
parents: 344
diff changeset
   349
    "Created: 16.5.1996 / 12:37:24 / cg"
395
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   350
!
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   351
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   352
string:aString runs:aRun
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   353
    "create a Text instance, for the characters in aString,
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   354
     which are individually emphasized as described by attributeCollection."
30c7f6a7c9bb class string:runs
ca
parents: 394
diff changeset
   355
466
a806fe2ac753 'Text new' noe returns an empty text instead of an invalid text
Stefan Vogel <sv@exept.de>
parents: 454
diff changeset
   356
    ^ super new string:aString emphasisCollection:aRun.
2016
9ad5248e5920 Text class>>#writeStream - answer a TextStream
Stefan Vogel <sv@exept.de>
parents: 1780
diff changeset
   357
!
9ad5248e5920 Text class>>#writeStream - answer a TextStream
Stefan Vogel <sv@exept.de>
parents: 1780
diff changeset
   358
2259
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   359
uninitializedNew:size
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   360
    "for compatibility only"
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   361
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   362
    ^ self new:size
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   363
!
d9b94e7b06a5 +uninitializedNew for compatibility
Claus Gittinger <cg@exept.de>
parents: 2240
diff changeset
   364
2867
daa1394cdf05 class: Text
Stefan Vogel <sv@exept.de>
parents: 2852
diff changeset
   365
writeStreamClass
4236
4e332e9282a3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4183
diff changeset
   366
    "the type of stream used in writeStream"
2016
9ad5248e5920 Text class>>#writeStream - answer a TextStream
Stefan Vogel <sv@exept.de>
parents: 1780
diff changeset
   367
2867
daa1394cdf05 class: Text
Stefan Vogel <sv@exept.de>
parents: 2852
diff changeset
   368
    ^ TextStream
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   369
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   370
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   371
!Text class methodsFor:'emphasis constants'!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   372
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   373
backgroundColorEmphasis
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   374
    ^ BackgroundColorEmphasis
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   375
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   376
4423
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   377
boldEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   378
    ^ BoldEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   379
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   380
    "Created: / 20-06-2017 / 08:13:07 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   381
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   382
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   383
colorEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   384
    ^ ColorEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   385
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   386
    "Created: / 20-06-2017 / 08:12:40 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   387
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   388
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   389
etchColorEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   390
    ^ EtchColorEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   391
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   392
    "Created: / 20-06-2017 / 08:14:30 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   393
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   394
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   395
foregroundColorEmphasis
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   396
    ^ ColorEmphasis
4423
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   397
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   398
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   399
italicEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   400
    ^ ItalicEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   401
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   402
    "Created: / 20-06-2017 / 08:12:53 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   403
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   404
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   405
overlineEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   406
    ^ OverlineEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   407
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   408
    "Created: / 20-06-2017 / 08:13:43 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   409
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   410
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   411
reverseEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   412
    ^ ReverseEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   413
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   414
    "Created: / 20-06-2017 / 08:14:05 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   415
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   416
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   417
strikeoutEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   418
    ^ StrikeoutEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   419
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   420
    "Created: / 20-06-2017 / 08:13:53 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   421
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   422
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   423
subscriptEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   424
    ^ Subscript
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   425
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   426
    "Created: / 20-06-2017 / 08:11:41 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   427
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   428
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   429
superscriptEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   430
    ^ Superscript
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   431
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   432
    "Created: / 20-06-2017 / 08:11:27 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   433
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   434
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   435
underlineEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   436
    ^ UnderlineEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   437
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   438
    "Created: / 20-06-2017 / 08:13:17 / cg"
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   439
!
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   440
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   441
underwaveEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   442
    ^ UnderwaveEmphasis
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   443
08dc2469ed40 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4351
diff changeset
   444
    "Created: / 20-06-2017 / 08:13:30 / cg"
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   445
! !
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   446
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   447
!Text class methodsFor:'emphasis helper'!
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   448
4964
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   449
actionBlockFromEmphasis:emphasis
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   450
    (emphasis isNil or:[emphasis isSymbol]) ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   451
        ^ nil.
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   452
    ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   453
    emphasis isAssociation ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   454
        emphasis key == #actionBlock ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   455
            ^ emphasis value.
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   456
        ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   457
        ^ nil.
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   458
    ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   459
    emphasis do:[:eachElement|
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   460
        eachElement isAssociation ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   461
            eachElement key == #actionBlock ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   462
                ^ eachElement value.
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   463
            ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   464
        ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   465
    ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   466
    ^ nil.
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   467
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   468
    "Created: / 28-05-2019 / 11:00:45 / Claus Gittinger"
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   469
!
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
   470
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   471
addEmphasis:e1 to:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   472
    "merge two emphasis's into one"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   473
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   474
    |ne|
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   475
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   476
    e1 isNil ifTrue:[^ e2].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   477
    e2 isNil ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   478
    e1 == e2 ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   479
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   480
    (e1 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   481
     or:[e1 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   482
        (e2 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   483
         or:[e2 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   484
            ^ Array with:e1 with:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   485
        ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   486
        (e2 includes:e1) ifTrue:[^ e2].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   487
        ^ e2 copyWith:e1
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   488
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   489
    (e2 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   490
     or:[e2 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   491
        (e1 includes:e2) ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   492
        ^ e1 copyWith:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   493
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   494
    "/ ould use:
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   495
    "/    ^ (e1 asSet addAll:e2; asArray)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   496
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   497
    "/ but we do it manually, to preserve the
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   498
    "/ order. (should create longer runs, while editing)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   499
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   500
    ne := e1.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   501
    e2 do:[:e |
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   502
        (ne includes:e) ifFalse:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   503
           ne := ne copyWith:e
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   504
        ]
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   505
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   506
    ^ ne.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   507
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   508
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   509
     Text addEmphasis:#bold to:#bold           
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   510
     Text addEmphasis:#bold to:#italic         
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   511
     Text addEmphasis:#bold to:#(italic strikeout)   
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   512
     Text addEmphasis:#italic to:#(italic strikeout) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   513
     Text addEmphasis:#(italic strikeout) to:#bold  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   514
     Text addEmphasis:#(italic strikeout) to:#italic 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   515
     Text addEmphasis:#(italic strikeout) to:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   516
     Text addEmphasis:(#color->Color red) to:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   517
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   518
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   519
    "Modified: 14.5.1996 / 17:15:44 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   520
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   521
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   522
emphasis:e1 includes:e2
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   523
    "return true, if e1 includes e2.
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   524
     e2 should be a single emphasis."
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   525
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   526
    e1 isNil ifTrue:[^ false].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   527
    e2 isNil ifTrue:[^ false].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   528
    e1 == e2 ifTrue:[^ true].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   529
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   530
    e1 isSymbol ifTrue:[
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   531
        ^ false
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   532
    ].
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   533
    e1 isAssociation ifTrue:[
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   534
        ^ e1 key == e2
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   535
    ].
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   536
    (e1 isSymbol 
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   537
     or:[e1 isAssociation]) ifTrue:[
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   538
        ^ false
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   539
    ].
1780
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   540
    e2 isSymbol ifTrue:[
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   541
        ^ (e1 includes:e2) or:[e1 contains:[:e |e isAssociation and:[e key == e2]]].
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   542
    ].
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   543
    e2 isAssociation ifTrue:[
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   544
        ^ (e1 includes:e2 key) or:[e1 contains:[:e |e isAssociation and:[e key == e2 key]]].
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   545
    ].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   546
    ^ false
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   547
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   548
    "
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   549
     Text emphasis:#bold includes:#bold           
1780
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   550
     Text emphasis:#bold includes:#italic         
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   551
     Text emphasis:#(italic strikeout) includes:#bold  
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   552
     Text emphasis:#(italic strikeout) includes:#italic 
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   553
     Text emphasis:(#color->Color red) includes:#color 
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   554
    "
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   555
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   556
    "Modified: 14.5.1996 / 17:45:11 / cg"
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   557
!
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   558
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   559
extractEmphasis:key from:e
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   560
    "if key is included in the emphasis, e then return the key.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   561
     Otherwise, if a n association with that key is included, return the value.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   562
     Otherwise, return nil."
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   563
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   564
    e isNil ifTrue:[^ nil].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   565
    key == e ifTrue:[^ e].
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   566
    e isSymbol ifTrue:[^ nil].
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   567
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   568
    e isAssociation ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   569
        e key == key ifTrue:[^ e value].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   570
        ^ nil
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   571
    ].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   572
    e do:[:entry | 
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   573
        entry == key ifTrue:[^ key].
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   574
        entry isAssociation ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   575
            entry key == key ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   576
                ^ entry value
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   577
            ]
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   578
        ]
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   579
    ].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   580
    ^ nil
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   581
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   582
    "
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   583
     Text extractEmphasis:#bold  from:#bold           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   584
     Text extractEmphasis:#bold  from:#italic           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   585
     Text extractEmphasis:#bold  from:#(italic strikeout)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   586
     Text extractEmphasis:#bold  from:#(italic bold)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   587
     Text extractEmphasis:#color  from:(#color->Color red)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   588
     Text extractEmphasis:#color  from:(#foo->Color red)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   589
    "
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   590
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   591
    "Modified: 14.5.1996 / 17:45:11 / cg"
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   592
    "Created: 11.7.1996 / 09:49:58 / cg"
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   593
!
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   594
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   595
removeEmphasis:emToRemove from:empArg
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   596
    "remove an emphasis; if it was not in empArg, do nothing"
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   597
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   598
    |ne idx emp|
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   599
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   600
    emp := empArg.
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   601
    emToRemove isNil ifTrue:[^ emp].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   602
    emp isNil ifTrue:[^ emp].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   603
    emToRemove == emp ifTrue:[^ nil].
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   604
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   605
    emp isSymbol ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   606
        emToRemove isSymbol ifTrue:[^ emp].  "/ knowing they are not identical
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   607
        emToRemove isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   608
            emToRemove key == emp ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   609
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   610
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   611
        (emToRemove includes:emp) ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   612
        ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   613
    ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   614
    emp isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   615
        emToRemove isSymbol ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   616
            emp key == emToRemove ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   617
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   618
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   619
        emToRemove isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   620
            emToRemove key == emp key ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   621
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   622
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   623
        (emToRemove includes:emp) ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   624
        ^ emp
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   625
    ].
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   626
    "/ e2 must be a collection
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   627
    (emToRemove isSymbol 
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   628
     or:[emToRemove isAssociation]) ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   629
        (emp includes:emToRemove) ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   630
            ne := emp copyWithout:emToRemove.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   631
            ne size == 1 ifTrue:[^ ne at:1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   632
            ne size == 0 ifTrue:[^ nil].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   633
            ^ ne
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   634
        ].
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   635
        
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   636
        idx := emp findFirst:[:em | em isAssociation and:[em key == emToRemove]].
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   637
        (idx ~~ 0) ifTrue:[
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   638
            emp := emp copyWithoutIndex:idx.
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   639
            [ 
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   640
                idx := emp findFirst:[:em | em isAssociation and:[em key == emToRemove]] startingAt:idx.
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   641
                idx ~~ 0 
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   642
            ] whileTrue:[
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   643
                emp := emp copyWithoutIndex:idx.
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   644
            ]
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   645
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   646
        ^ emp
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   647
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   648
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   649
    "/ could use:
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   650
    "/    ^ (e2 asSet removeAll:e1; asArray)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   651
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   652
    "/ but we do it manually, to preserve the
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   653
    "/ order. (should create longer runs, while editing)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   654
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   655
    ne := emp.
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   656
    emToRemove do:[:e |
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   657
        (ne includes:e) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   658
           ne := ne copyWithout:e
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   659
        ]
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   660
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   661
    ne size == 1 ifTrue:[^ ne at:1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   662
    ne size == 0 ifTrue:[^ nil].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   663
    ^ ne.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   664
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   665
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   666
     Text removeEmphasis:#bold from:#bold           
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   667
     Text removeEmphasis:#bold from:#italic         
1067
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   668
     Text removeEmphasis:#bold from:#(italic strikeout)    
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   669
     Text removeEmphasis:#bold from:#(italic bold strikeout)    
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   670
     Text removeEmphasis:#italic from:#(italic strikeout) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   671
     Text removeEmphasis:#(italic strikeout) from:#bold  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   672
     Text removeEmphasis:#(italic strikeout) from:#italic  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   673
     Text removeEmphasis:#(italic strikeout) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   674
     Text removeEmphasis:#(italic strikeout bold) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   675
     Text removeEmphasis:#(italic strikeout bold underline) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   676
     Text removeEmphasis:(#color->Color red) from:#(bold underline) 
756
43d8932d307a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 755
diff changeset
   677
     Text removeEmphasis:(#color->Color red) from:(#color->Color red) 
1067
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   678
     Text removeEmphasis:#color from:(#color->Color red)   
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   679
     Text removeEmphasis:#color from:(#backgroundColor->Color red)      
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   680
     Text removeEmphasis:#color from:(Array with:#bold with:#underline with:#color->Color red) 
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   681
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   682
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   683
    "Modified: / 25-01-2001 / 15:24:46 / ps"
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   684
    "Modified (comment): / 06-03-2012 / 18:23:32 / cg"
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   685
! !
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   686
4731
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   687
735
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   688
!Text methodsFor:'accessing'!
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   689
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   690
at:characterIndex
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   691
    "return the plain character at characterIndex"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   692
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   693
    ^ string at:characterIndex
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   694
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   695
    "Created: 11.5.1996 / 14:25:41 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   696
    "Modified: 16.5.1996 / 11:15:33 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   697
!
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   698
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   699
at:characterIndex put:aCharacter
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   700
    "change the character at characterIndex to be aCharacter.
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   701
     The emphasis (if any) of that character remains unchanged."
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   702
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   703
    ^ string at:characterIndex put:aCharacter
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   704
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   705
    "Created: 11.5.1996 / 14:25:49 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   706
    "Modified: 16.5.1996 / 11:15:57 / cg"
2734
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   707
!
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   708
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   709
byteAt:characterIndex
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   710
    "return the plain character at characterIndex"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   711
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   712
    ^ string byteAt:characterIndex
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   713
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   714
    "Created: 11.5.1996 / 14:25:41 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   715
    "Modified: 16.5.1996 / 11:15:33 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   716
!
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   717
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   718
byteAt:characterIndex put:aCharacter
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   719
    "change the character at characterIndex to be aCharacter.
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   720
     The emphasis (if any) of that character remains unchanged."
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   721
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   722
    ^ string byteAt:characterIndex put:aCharacter
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   723
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   724
    "Created: 11.5.1996 / 14:25:49 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   725
    "Modified: 16.5.1996 / 11:15:57 / cg"
735
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   726
! !
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   727
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   728
!Text methodsFor:'comparing'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
= aStringOrText
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
    "compare the receiver and the argument, ignoring emphasis"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
384
866650ee29fd fixed = for non-string args
Claus Gittinger <cg@exept.de>
parents: 360
diff changeset
   733
    aStringOrText isString ifFalse:[^ false].
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
    ^ string = aStringOrText string
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
     'hello' asText = 'hello'        
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
     'hello' asText = 'hello' asText 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
     'hello' asText allBold = 'hello' 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
384
866650ee29fd fixed = for non-string args
Claus Gittinger <cg@exept.de>
parents: 360
diff changeset
   743
    "Modified: 4.6.1996 / 11:14:58 / cg"
662
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   744
!
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   745
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   746
hash
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   747
    "return a suitable hashcode (req'd since = is redefined)"
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   748
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   749
    ^ string hash
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   750
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   751
    "Created: / 19.6.1998 / 04:15:57 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
!Text methodsFor:'converting'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   755
4762
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   756
asFilename
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   757
    "return a Filename with pathname taken from the receiver"
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   758
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   759
    ^ Filename named:string
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   760
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   761
    "Created: / 05-11-2018 / 10:47:54 / Stefan Vogel"
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   762
!
949e21ac42ec #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4757
diff changeset
   763
3662
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   764
asSingleByteString
4952
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   765
    ^ self class string:(string asSingleByteString) runs:runs.
3662
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   766
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   767
    "
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   768
      'hello world' asUnicodeString asText asSingleByteString
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   769
    "
4952
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   770
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   771
    "Modified (format): / 26-05-2019 / 12:49:56 / Claus Gittinger"
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   772
!
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   773
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   774
asStringWithBitsPerCharacterAtLeast:numRequiredBitsPerCharacter
4953
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   775
    |newString|
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   776
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   777
    newString := string asStringWithBitsPerCharacterAtLeast:numRequiredBitsPerCharacter.
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   778
    newString == string ifTrue:[^ self].
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   779
    
6edf19df28ec #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4952
diff changeset
   780
    ^ self class string:newString runs:runs.
4952
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   781
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   782
    "
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   783
      'hello world' asUnicodeString asText asSingleByteString
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   784
    "
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   785
719cd55af016 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4778
diff changeset
   786
    "Created: / 26-05-2019 / 12:51:40 / Claus Gittinger"
3662
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   787
!
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   788
4731
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   789
asStringWithoutEmphasis
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   790
    "return myself as a string without any emphasis"
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   791
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   792
    ^ string
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   793
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   794
    "Created: / 29-08-2018 / 09:22:07 / Claus Gittinger"
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   795
!
df197df8542e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4575
diff changeset
   796
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
asText
1645
bc07074c18f4 documentation
Stefan Vogel <sv@exept.de>
parents: 1402
diff changeset
   798
    "return a Text-object (string with emphasis) from myself.
bc07074c18f4 documentation
Stefan Vogel <sv@exept.de>
parents: 1402
diff changeset
   799
     I am already a text object."
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   800
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
    ^ self
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
    "Created: 11.5.1996 / 14:08:36 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   804
    "Modified: 16.5.1996 / 11:15:12 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
!Text methodsFor:'copying'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
, aStringOrText
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   810
    "concatenate the receiver's characters with the argument's characters, 
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   811
     and return string or text object containing those characters.
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   812
     If either the receiver or the argument contains emphasis information,
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   813
     a text object will be returned. 
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   814
     Otherwise, a string (i.e. without emphasis) is returned."
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   816
    |newRuns stringifiedArg|
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
   817
758
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   818
    aStringOrText isCharacter ifTrue:[
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   819
        ^ self , aStringOrText asString
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   820
    ].
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   821
    stringifiedArg := aStringOrText asString.
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   822
    stringifiedArg hasChangeOfEmphasis ifTrue:[    
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   823
        ^ self species new
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   824
            string:(string , stringifiedArg)
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   825
            emphasisCollection:(runs , stringifiedArg emphasisCollection)
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   826
    ].
615
3be71f2a9b9b a very 'uebel' error fixed (?) in #,
tz
parents: 607
diff changeset
   827
    runs notNil "self hasChangeOfEmphasis" ifTrue:[ 
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
   828
        newRuns := runs copyFrom:1 to:(runs size).
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   829
        newRuns add:nil withOccurrences:(stringifiedArg size).
408
90799280d574 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 407
diff changeset
   830
        ^ self species new
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   831
            string:(string , stringifiedArg)
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   832
            emphasisCollection:newRuns
408
90799280d574 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 407
diff changeset
   833
    ].
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   834
    ^ string , stringifiedArg string
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   835
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   836
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   837
     ('hello' asText allBold) , ' world'    
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   838
     'hello' allBold,' world'    
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   839
     'hello' allBold,' world' allItalic    
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   840
     'hello' allBold,123,'world' allItalic    
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   841
     'hello' , (' world' asText allBold)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   842
     'hello' , ' world'
4575
d34168bc0691 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   843
     'hello',123,' world'
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   844
     ('hello' asText allBold) , (' world' asText allBold)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   845
    "
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   847
    "Modified: / 31-03-1998 / 16:34:04 / cg"
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   848
    "Modified (comment): / 01-04-2012 / 13:20:02 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   849
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   850
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   851
concatenateFromString:aString
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   852
    "return the concatenation of aString and myself.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   853
     This may be a Text (if I have emphasis) or a string (if not)."
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   854
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   855
    self hasChangeOfEmphasis ifTrue:[
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   856
        ^ self species new
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   857
                string:(aString , string)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   858
                emphasisCollection:((RunArray new:(aString size)) , runs).
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   859
    ].
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   860
    ^ aString , string
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   861
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   862
    "Modified: 14.5.1996 / 15:56:05 / cg"
394
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   863
!
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   864
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   865
copyFrom:start to:stop
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   866
    "return the subcollection starting at index start, anInteger and ending
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   867
     at stop, anInteger."
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   868
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   869
    self hasChangeOfEmphasis ifTrue:[
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   870
        ^ self species new
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   871
                string:(string copyFrom:start to:stop)
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   872
                emphasisCollection:(runs copyFrom:start to:stop).
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   873
    ].
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   874
    ^ string copyFrom:start to:stop
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   875
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   876
    "Modified: 14.5.1996 / 15:56:05 / cg"
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   877
    "Created: 22.10.1996 / 21:01:16 / cg"
4958
3f7c2288f78a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4953
diff changeset
   878
! !
3f7c2288f78a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4953
diff changeset
   879
3f7c2288f78a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4953
diff changeset
   880
!Text methodsFor:'copying-private'!
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   881
394
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   882
postCopy
4778
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   883
    string := string asString copy.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   884
    runs := runs copy.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   885
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   886
    "
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   887
     |t|
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   888
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   889
     t := 'hello' emphasizeAllWith:#bold.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   890
     t inspect. t copy inspect.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   891
     t emphasisAllRemove:#bold.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   892
    "
4778
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   893
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   894
    "
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   895
     |t|
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   896
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   897
     t := #'hello' emphasizeAllWith:#bold.
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   898
     t inspect. t copy inspect.
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   899
     t emphasisAllRemove:#bold.
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   900
    "
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   901
48fe8ed83ac8 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4762
diff changeset
   902
    "Modified (comment): / 21-12-2018 / 19:49:46 / Claus Gittinger"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   903
! !
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   904
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   905
!Text methodsFor:'displaying'!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   906
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   907
displayOn:aGCOrView x:x0 y:yBase opaque:opaqueWanted
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   908
    "display the receiver on a GC.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   909
     This is one of the ugliest pieces of code..."
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   910
1000
927894af9a9f etching
Claus Gittinger <cg@exept.de>
parents: 999
diff changeset
   911
    |savedFont savedPaint savedFgPaint savedBgPaint font color boldFont italicFont boldItalicFont 
310
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   912
     pos    "{ Class: SmallInteger }"
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   913
     endPos "{ Class: SmallInteger }"
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   914
     x y    
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   915
     len    "{ Class: SmallInteger }"
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   916
     yL k value device opaque|
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   917
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   918
    savedFont := aGCOrView basicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   919
    savedPaint := aGCOrView paint.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   920
    savedBgPaint := aGCOrView backgroundPaint.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   921
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   922
    opaque := opaqueWanted.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   923
    device := aGCOrView graphicsDevice.
705
9e247eeb134a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 702
diff changeset
   924
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   925
    pos := 1.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   926
    x := x0.
5437
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
   927
    "/ bold := italic := underline := underwave := strikeout := reverse := overline := false.
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
   928
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   929
    runs size > string size ifTrue:[
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   930
        Transcript showCR:'inconsistent text: runs size > string size'.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   931
        runs := runs copyTo:(string size)
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   932
    ].
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   933
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   934
    runs runsDo:[:runLen :emphasis |
5437
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
   935
        |bgBrightness wasItalic
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
   936
         bold italic underline underwave strikeout reverse subOrSuperscript
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
   937
         etchColor bgPaint ulPaint strikePaint overline altFont bgFill|
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
   938
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   939
        wasItalic := italic.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   940
        color := savedPaint.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   941
        bold := italic := underline := underwave := strikeout := reverse := overline := false.
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   942
        altFont := subOrSuperscript := nil.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   943
        bgPaint := savedBgPaint.
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   944
        y := yBase.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   945
        
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   946
        emphasis isSymbol ifTrue:[
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   947
            emphasis == BoldEmphasis ifTrue:[bold := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   948
            ifFalse:[emphasis == ItalicEmphasis ifTrue:[italic := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   949
            ifFalse:[emphasis == UnderlineEmphasis ifTrue:[underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   950
            ifFalse:[emphasis == OverlineEmphasis ifTrue:[overline := true]   "MB:added"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   951
            ifFalse:[emphasis == UnderwaveEmphasis ifTrue:[underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   952
            ifFalse:[emphasis == StrikeoutEmphasis ifTrue:[strikeout := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   953
            ifFalse:[emphasis == ReverseEmphasis ifTrue:[reverse := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   954
            ifFalse:[emphasis == BoldUnderlineEmphasis ifTrue:[bold := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   955
            ifFalse:[emphasis == BoldOverlineEmphasis ifTrue:[bold := overline := true]     "MB:added"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   956
            ifFalse:[emphasis == BoldUnderwaveEmphasis ifTrue:[bold := underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   957
            ifFalse:[emphasis == ItalicUnderlineEmphasis ifTrue:[italic := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   958
            ifFalse:[emphasis == ItalicUnderwaveEmphasis ifTrue:[italic := underwave := true]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   959
            ifFalse:[emphasis == Subscript ifTrue:[subOrSuperscript := Subscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   960
            ifFalse:[emphasis == Superscript ifTrue:[subOrSuperscript := Superscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   961
            ]]]]]]]]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   962
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   963
            emphasis isAssociation ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   964
                value := emphasis value.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   965
                value notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   966
                    k := emphasis key.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   967
                    k == ColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   968
                        color := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   969
                        "/ emphasis value:color.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   970
                    ] ifFalse:[k == BackgroundColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   971
                        bgPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   972
                        "/ emphasis value:bgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   973
                        opaque := true.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   974
                    ] ifFalse:[k == UnderlineColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   975
                        ulPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   976
                        "/ emphasis value:ulPaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   977
                    ] ifFalse:[k == StrikeoutColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   978
                        strikePaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   979
                        "/ emphasis value:strikePaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   980
                    ] ifFalse:[k == EtchColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   981
                        etchColor := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   982
                        "/ emphasis value:etchColor.
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   983
                    ] ifFalse:[k == FontEmphasis ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   984
                        altFont := value onDevice:device.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   985
                        "/ emphasis value:altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   986
                    ]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   987
                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   988
            ] ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   989
                emphasis notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   990
                    emphasis do:[:entry |
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   991
                        entry == BoldEmphasis ifTrue:[bold := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   992
                        ifFalse:[entry == ItalicEmphasis ifTrue:[italic := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   993
                        ifFalse:[entry == UnderlineEmphasis ifTrue:[underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   994
                        ifFalse:[entry == OverlineEmphasis ifTrue:[overline := true] 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   995
                        ifFalse:[entry == UnderwaveEmphasis ifTrue:[underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   996
                        ifFalse:[entry == StrikeoutEmphasis ifTrue:[strikeout := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   997
                        ifFalse:[entry == ReverseEmphasis ifTrue:[reverse := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   998
                        ifFalse:[entry == BoldUnderlineEmphasis ifTrue:[bold := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   999
                        ifFalse:[emphasis == BoldUnderwaveEmphasis ifTrue:[bold := underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1000
                        ifFalse:[entry == ItalicUnderlineEmphasis ifTrue:[italic := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1001
                        ifFalse:[emphasis == ItalicUnderwaveEmphasis ifTrue:[italic := underwave := true]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1002
                        ifFalse:[emphasis == Subscript ifTrue:[subOrSuperscript := Subscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1003
                        ifFalse:[emphasis == Superscript ifTrue:[subOrSuperscript := Superscript]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1004
                        ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1005
                            entry isAssociation ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1006
                                value := entry value.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1007
                                value notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1008
                                    k := entry key.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1009
                                    k == ColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1010
                                        color := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1011
                                        "/ entry value:color.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1012
                                    ] ifFalse:[k == BackgroundColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1013
                                        bgPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1014
                                        "/ entry value:bgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1015
                                        opaque := true.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1016
                                    ] ifFalse:[k == UnderlineColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1017
                                        ulPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1018
                                        "/ entry value:ulPaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1019
                                    ] ifFalse:[k == StrikeoutColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1020
                                        strikePaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1021
                                        "/ entry value:strikePaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1022
                                    ] ifFalse:[k == EtchColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1023
                                        etchColor := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1024
                                        "/ entry value:etchColor.
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1025
                                    ] ifFalse:[k == FontEmphasis ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1026
                                        altFont := value onDevice:device.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1027
                                        "/ entry value:altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1028
                                    ]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1029
                                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1030
                            ]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1031
                        ]]]]]]]]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1032
                    ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1033
                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1034
            ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1035
        ].
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1036
        altFont notNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1037
            font := altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1038
        ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1039
            bold ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1040
                italic ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1041
                    boldItalicFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1042
                        boldItalicFont := savedFont asBold asItalic onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1043
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1044
                    font := boldItalicFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1045
                ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1046
                    boldFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1047
                        boldFont := savedFont asBold onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1048
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1049
                    font := boldFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1050
                ]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1051
            ] ifFalse:[
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1052
                italic ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1053
                    italicFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1054
                        italicFont := savedFont asItalic onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1055
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1056
                    font := italicFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1057
                ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1058
                    font := savedFont
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1059
                ]
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
  1060
            ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1061
        ].
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1062
        subOrSuperscript notNil ifTrue:[
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1063
            font := font asSize:(font size * 3 // 4).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1064
            subOrSuperscript == Superscript ifTrue:[
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1065
                y := y - (font height // 3).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1066
            ] ifFalse:[                
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1067
                y := y + (font height // 3).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1068
            ].    
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
  1069
        ].    
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1070
        aGCOrView basicFont:font.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1071
        reverse ifTrue:[
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1072
            aGCOrView paint:bgPaint on:(bgFill := color).
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1073
            opaque := true.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1074
        ] ifFalse:[
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1075
            aGCOrView paint:color on:(bgFill := bgPaint).
5437
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1076
            (bgFill isColor) ifTrue:[
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1077
                bgBrightness := bgFill brightness.
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1078
                bgBrightness < 0.5 ifTrue:[
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1079
                    (bgBrightness - color brightness) abs < 0.5 ifTrue:[
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1080
                        etchColor := color lightened
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1081
                    ].
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1082
                ].
2f703a63365c #UI_ENHANCEMENT by exept
Claus Gittinger <cg@exept.de>
parents: 4964
diff changeset
  1083
            ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1084
        ].
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1085
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1086
        endPos := pos + runLen - 1.
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1087
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1088
"/ disabled - it is too ugly (and not handled correctly, anyway).
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1089
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1090
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1091
"/                "/ going from italic to non-italic; leave some space for the shear
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1092
"/                x := x + (font width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1093
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1094
"/        ].
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  1095
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1096
        len := font widthOf:string from:pos to:endPos.
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1097
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1098
        (opaque and:[etchColor isNil]) ifTrue:[
4295
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1099
            aGCOrView fillRectangleX:x y:y"+1"-(font ascent) width:len height:(font descent+font ascent) color:bgFill.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1100
            aGCOrView displayOpaqueString:string from:pos to:endPos x:x y:y.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1101
        ] ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1102
            etchColor notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1103
                opaque ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1104
                    "/ sigh - must draw the background rectangle;
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1105
                    "/ it's easier (and faster) to draw the string twice here ...
4295
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1106
                    aGCOrView fillRectangleX:x y:y"+1"-(font ascent) width:len height:(font descent+font ascent) color:bgFill.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1107
                    aGCOrView displayOpaqueString:string from:pos to:endPos x:x y:y.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1108
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1109
                savedFgPaint := aGCOrView paint.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1110
                aGCOrView paint:etchColor.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1111
                aGCOrView displayString:string from:pos to:endPos x:x+1 y:y+1.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1112
                aGCOrView paint:savedFgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1113
            ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1114
            aGCOrView displayString:string from:pos to:endPos x:x y:y.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1115
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1116
        len := font widthOf:string from:pos to:endPos.
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  1117
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1118
        underline ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1119
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1120
            yL := y+1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1121
            aGCOrView displayLineFromX:x y:yL toX:x+len-1 y:yL
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1122
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1123
        overline ifTrue:[                               "MB:added v"
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1124
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1125
            yL := y-(font heightOf: string) + 2.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1126
            aGCOrView displayLineFromX:x y:yL toX:x+len-1 y:yL
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1127
        ].                                               "MB:added ^"
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1128
        underwave ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1129
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1130
            yL := y+1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1131
            aGCOrView displayHorizontalWavelineFromX:x y:yL toX:x+len-1
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1132
        ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1133
        strikeout ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1134
            strikePaint notNil ifTrue:[aGCOrView paint:strikePaint].
4757
0c9a9ca3f1cb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4731
diff changeset
  1135
            "/ (1/2) + (1/3) / 2
0c9a9ca3f1cb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4731
diff changeset
  1136
            yL := y-(font ascent * (1/3)).
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1137
            aGCOrView displayLineFromX:x y:yL toX:x+len-1 y:yL
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1138
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1139
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1140
        x := x + len.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1141
        pos := endPos + 1
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
    ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1143
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1144
    aGCOrView basicFont:savedFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1145
    aGCOrView paint:savedPaint on:savedBgPaint.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1146
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1147
    pos < string size ifTrue:[
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1148
       "/ draw rest
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1149
       aGCOrView displayString:string from:pos to:string size x:x y:y.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1150
    ].
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1151
4295
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1152
    "Created: / 12-05-1996 / 11:14:30 / cg"
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1153
    "Modified: / 03-02-2017 / 11:45:51 / cg"
4757
0c9a9ca3f1cb #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4731
diff changeset
  1154
    "Modified (format): / 31-10-2018 / 01:38:30 / Claus Gittinger"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1155
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1156
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
!Text methodsFor:'emphasis'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1158
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1159
actionForAll:aBlock
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1160
    "change the actionBlock of all characters. 
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1161
     Some widgets use this like a href if clicked onto the text."
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1162
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1163
    self emphasisAllAdd:(#actionBlock -> aBlock).
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1164
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1165
    "transcript ignores this...
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1166
     Transcript showCR:
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1167
        ((Text string:'hello - click on me') actionForAll:[Transcript flash]) 
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1168
    "
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1169
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1170
    "labels also...
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1171
     Label new
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1172
        label: ((Text string:'hello - click on me') actionForAll:[Transcript flash]);
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1173
        open
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1174
    "
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1175
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1176
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1177
allBold
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1178
    "make all characters bold"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1180
    self emphasisAllAdd:BoldEmphasis
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
     (Text string:'hello') allBold
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1184
     Transcript showCR: ('hello' allBold)   
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1186
406
b4bf187dd46d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 404
diff changeset
  1187
    "Modified: 10.7.1996 / 12:07:51 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1189
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1190
allBoldOverline
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1191
    "make all characters bold and overline"
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1192
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1193
    self emphasisAllAdd:BoldOverlineEmphasis
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1194
!
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1195
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1196
allItalic
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1197
    "make all characters italic"
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1198
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1199
    self emphasisAllAdd:ItalicEmphasis
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1200
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1201
    "
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1202
     (Text string:'hello') allItalic
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1203
     Transcript showCR: ('hello' allItalic)   
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1204
    "
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1205
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1206
    "Modified: 10.7.1996 / 12:07:51 / cg"
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1207
!
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1208
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1209
allNonBold
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1210
    "make all characters non-bold"
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1211
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1212
    self emphasisAllRemove:BoldEmphasis
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1213
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1214
    "
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1215
     (Text string:'hello') allBold allNonBold
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1216
    "
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1217
!
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1218
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1219
allOverline
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1220
    "make all characters overline"
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1221
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1222
    self emphasisAllAdd:OverlineEmphasis
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1223
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1224
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1225
     Transcript showCR: ('hello' asText allOverline)   
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1226
    "
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1227
!
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1228
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1229
allStrikedOut
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1230
    "strikeOut all characters"
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1231
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1232
    self emphasisAllAdd:StrikeoutEmphasis.
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1233
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1234
    "
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1235
     Transcript showCR: ('hello' allStrikedOut)   
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1236
    "
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1237
!
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1238
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1239
allUnderlined
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1240
    "underline all characters"
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1241
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1242
    self emphasisAllAdd:UnderlineEmphasis.
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1243
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1244
    "
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1245
     Transcript showCR:('hello' allUnderlined) 
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1246
    "
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1247
!
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1248
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1249
allUnderwaved
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1250
    "underwave all characters"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1251
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1252
    self emphasisAllAdd:UnderwaveEmphasis.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1253
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1254
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1255
     Transcript showCR:('hello' asText allUnderwaved) 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1256
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1257
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1258
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1259
backgroundColorizeAllWith:aColor
2552
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1260
    "change the bg-color of all characters"
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1261
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1262
    self emphasisAllAdd:(BackgroundColorEmphasis -> aColor).
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1263
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1264
    "
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1265
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1266
        ((Text string:'hello') backgroundColorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1267
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1268
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1269
        ('hello' allBold backgroundColorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1270
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1271
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1272
        ('hello' asText backgroundColorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1273
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1274
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1275
        ('hello ' , ('red' allBold backgroundColorizeAllWith:(Color red)) , ' world')
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1276
    "
2552
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1277
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1278
    "Modified: / 01-04-2011 / 16:19:21 / cg"
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1279
!
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1280
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1281
colorizeAllWith:aColor
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1282
    "change the color of all characters"
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1283
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1284
    self emphasisAllAdd:(ColorEmphasis -> aColor).
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1285
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1286
    "
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1287
     Transcript showCR:
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1288
        ((Text string:'hello') colorizeAllWith:(Color red)) 
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1289
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1290
     Transcript showCR:
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1291
        ('hello' colorizeAllWith:(Color red)) 
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1292
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1293
     Transcript showCR:
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1294
        ('hello' allBold colorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1295
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1296
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1297
        ('hello' asText colorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1298
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1299
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1300
        ('hello ' , ('red' allBold colorizeAllWith:(Color red)) , ' world')
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1301
    "
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1302
!
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1303
2312
ab6ab043d9ca comment/format in: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 2311
diff changeset
  1304
colorizeAllWith:fgColor on:bgColor
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1305
    "change the color and bg-color of all characters"
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1306
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1307
    self emphasisAllAdd:(ColorEmphasis -> fgColor).
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1308
    self emphasisAllAdd:(BackgroundColorEmphasis -> bgColor).
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1309
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1310
    "
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1311
     Transcript showCR:
2312
ab6ab043d9ca comment/format in: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 2311
diff changeset
  1312
        ((Text string:'hello') colorizeAllWith:(Color blue) on:(Color yellow)) 
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1313
    "
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1314
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1315
    "Created: / 05-08-2006 / 14:48:13 / cg"
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1316
!
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1317
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1318
emphasis
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1319
    "return the emphasis"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1320
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1321
    ^ runs
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1322
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1323
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1324
     (Text string:'hello') allBold emphasis 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1325
     'hello' emphasis   
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1326
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1327
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1328
    "Modified: 11.5.1996 / 14:22:31 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1329
    "Created: 14.5.1996 / 13:59:03 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1330
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1331
1070
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1332
emphasis:emArray
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1333
    1 to:string size do:[:characterIndex |
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1334
        self emphasisAt:characterIndex put:(emArray at:characterIndex)
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1335
    ].
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1336
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1337
    "
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1338
     (Text string:'hello') emphasis:#(italic bold italic bold bold)
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1339
    "
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1340
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1341
    "Modified: / 31.3.1998 / 16:45:14 / cg"
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1342
!
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1343
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1344
emphasisAllAdd:newEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1345
    "add to the emphasis to all characters. return the receiver"
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1346
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1347
    runs isNil ifTrue:[ ^ self ].   "/ just in case: empty
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1348
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1349
    (runs conform:[:runValue | runValue isNil]) ifTrue:[
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1350
        "/ no emphasis - happens often
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1351
        runs atAllPut:newEmphasis.
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1352
    ] ifFalse:[
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1353
        self emphasisFrom:1 to:(self size) add:newEmphasis
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1354
    ].
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1355
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1356
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1357
     (Text string:'hello') allBold 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1358
        emphasisAllAdd:#italic
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1359
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1360
     Transcript show:((Text string:'hello') allBold 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1361
                        emphasisAllAdd:#italic)
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1362
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1363
!
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1364
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1365
emphasisAllRemove:anEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1366
    "remove the emphasis from all characters. return the receiver"
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1367
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1368
    self emphasisFrom:1 to:(self size) remove:anEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1369
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1370
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1371
     ((Text string:'hello') emphasizeAllWith:#(bold italic))
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1372
        emphasisAllRemove:#italic
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1373
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1374
     ((Text string:'hello') emphasizeAllWith:(Array with:#color->Color red
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1375
                                                    with:#italic))
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1376
        emphasisAllRemove:#italic
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1377
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1378
     ((Text string:'hello') emphasizeAllWith:(Array with:#color->Color red
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1379
                                                    with:#italic))
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1380
        emphasisAllRemove:#color
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1381
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1382
     Transcript show:(((Text string:'hello') emphasizeAllWith:#(bold italic)) 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1383
                        emphasisAllRemove:#italic)
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1384
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1385
!
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1386
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
emphasisAt:characterIndex
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
    "return the emphasis at some index"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
    ^ runs at:characterIndex
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
     (Text string:'hello') allBold emphasisAt:2 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
    "Modified: 11.5.1996 / 14:22:31 / cg"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1399
emphasisAt:characterIndex add:newEmphasis
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1400
    "add to the emphasis at some index. return the receiver"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1401
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1402
    |e prevE|
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1403
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1404
    e := runs at:characterIndex.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1405
    e := self class addEmphasis:newEmphasis to:e.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1406
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1407
    "/ if it's equal to the previous emphasis, make it identical.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1408
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1409
    characterIndex > 1 ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1410
        prevE := runs at:characterIndex-1.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1411
        e = prevE ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1412
            e := prevE
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1413
        ]
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1414
    ].
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1415
    runs at:characterIndex put:e.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1416
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1417
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1418
     (Text string:'hello') allBold emphasisAt:2 add:#italic
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1419
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1420
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1421
    "Created: / 14-05-1996 / 16:48:39 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1422
    "Modified: / 31-03-1998 / 15:29:14 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1423
    "Modified (comment): / 13-02-2017 / 20:31:59 / cg"
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1424
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1425
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1426
emphasisAt:characterIndex put:emphasis
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1427
    "change the emphasis at some index. return the receiver"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1428
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1429
    |e prevE|
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1430
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1431
    e := emphasis.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1432
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1433
    "/ if it's equal to the previous emphasis, make it identical.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1434
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1435
    characterIndex > 1 ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1436
        prevE := runs at:characterIndex-1.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1437
        emphasis = prevE ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1438
            e := prevE
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1439
        ]
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1440
    ].
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1441
    runs at:characterIndex put:e.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1442
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1443
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1444
     (Text string:'hello') allBold emphasisAt:2 put:#italic
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1445
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1446
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1447
    "Modified: / 31-03-1998 / 16:45:14 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1448
    "Modified (comment): / 13-02-2017 / 20:32:03 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1449
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1450
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1451
emphasisAt:characterIndex remove:emphasisToRemove
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1452
    "remove from the emphasis at some index. return the receiver"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1453
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1454
    |e|
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1455
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1456
    e := runs at:characterIndex.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1457
    e := self class removeEmphasis:emphasisToRemove from:e.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1458
    runs at:characterIndex put:e.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1459
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1460
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1461
     (Text string:'hello') 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1462
        allBold emphasisAt:2 remove:#bold
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1463
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1464
     (Text string:'hello' emphasis:#(bold italic)) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1465
        emphasisAt:2 remove:#bold
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1466
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1467
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1468
    "Created: 14.5.1996 / 16:48:39 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1469
    "Modified: 14.5.1996 / 17:25:04 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1470
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1471
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1472
emphasisCollection
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1473
    "return the emphasis"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1474
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1475
    ^ runs
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1476
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1477
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1478
     (Text string:'hello') allBold emphasis 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1479
     'hello' emphasis   
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1480
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1481
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1482
    "Created: 14.5.1996 / 13:59:03 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1483
    "Modified: 14.5.1996 / 15:02:11 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1484
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1485
777
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1486
emphasisFrom:start to:stop add:newEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1487
    "add to the emphasis within some range. return the receiver"
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1488
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1489
    start to:stop do:[:characterIndex |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1490
        self emphasisAt:characterIndex add:newEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1491
    ].
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1492
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1493
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1494
     (Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1495
        emphasisFrom:2 to:4 add:#italic
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1496
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1497
     Transcript showCR:((Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1498
                            emphasisFrom:2 to:4 add:#italic)
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1499
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1500
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1501
!
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1502
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1503
emphasisFrom:start to:stop remove:anEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1504
    "remove from the emphasis within some range. return the receiver"
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1505
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1506
    start to:stop do:[:characterIndex |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1507
        self emphasisAt:characterIndex remove:anEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1508
    ].
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1509
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1510
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1511
     (Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1512
        emphasisFrom:2 to:4 remove:#bold
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1513
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1514
     Transcript showCR:((Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1515
                            emphasisFrom:2 to:4 remove:#bold)
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1516
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1517
!
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1518
2240
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1519
emphasiseFrom:start to:stop with:newEmphasis
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1520
    "set to the emphasis within some range. return the receiver"
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1521
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1522
    start to:stop do:[:characterIndex |
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1523
        self emphasisAt:characterIndex put:newEmphasis
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1524
    ].
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1525
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1526
    "
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1527
     (Text string:'hello') allBold 
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1528
        emphasiseFrom:2 to:4 with:#italic
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1529
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1530
     Transcript showCR:((Text string:'hello') allBold 
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1531
                            emphasiseFrom:2 to:4 with:#italic)
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1532
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1533
    "
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1534
!
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1535
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
emphasizeAllWith:emphasis
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
    "change the emphasis of all characters"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1539
    runs := RunArray new:(string size) withAll:emphasis.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
     (Text string:'hello') allBold emphasizeAllWith:#italic 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1545
    "Modified: 11.5.1996 / 14:22:52 / cg"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1546
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1547
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1548
emphasizeFrom:start count:count with:emphasis
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1549
    "change the emphasis of a range of characters, given startIndex and count."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1550
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1551
    self emphasizeFrom:start to:(start+count-1) with:emphasis
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1552
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1553
    "
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1554
     (Text string:'hello world') 
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1555
        emphasizeFrom:1 count:5 with:#bold;
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1556
        emphasizeFrom:7 count:5 with:#italic
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1557
    "
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1558
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1559
    "Modified: 11.5.1996 / 14:30:02 / cg"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1560
    "Created: 16.5.1996 / 10:52:27 / cg"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1561
!
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1562
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
emphasizeFrom:start to:stop with:emphasis
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
    "change the emphasis of a range of characters"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1566
    runs from:start to:stop put:emphasis.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1567
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
     (Text string:'hello world') 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
        emphasizeFrom:1 to:5 with:#bold;
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
        emphasizeFrom:7 to:11 with:#italic
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
4524
e186b0f820b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4513
diff changeset
  1574
    "Modified: / 07-04-1998 / 08:52:18 / cg"
e186b0f820b3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4513
diff changeset
  1575
    "Modified (comment): / 21-10-2017 / 14:24:38 / cg"
347
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1576
!
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1577
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1578
emphasizeFrom:start with:emphasis
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1579
    "change the emphasis of some characters upTo the end"
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1580
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1581
    self emphasizeFrom:start to:(self size) with:emphasis
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1582
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1583
    "
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1584
     (Text string:'hello world') 
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1585
        emphasizeFrom:1 count:5 with:#bold;
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1586
        emphasizeFrom:7 with:#italic
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1587
    "
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1588
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1589
    "Modified: 11.5.1996 / 14:30:02 / cg"
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1590
    "Created: 17.5.1996 / 15:15:32 / cg"
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1591
!
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1592
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1593
strikeoutAll
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1594
    "strikeout all characters"
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1595
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1596
    self emphasisAllAdd:StrikeoutEmphasis.
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1597
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1598
    "
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1599
     Transcript showCR:
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1600
        ('hello' asText strikeoutAll) 
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1601
    "
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1602
!
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1603
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1604
withoutAnyColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1605
    "return a copy with color emphasis removed (fg and bg)"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1606
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1607
    ^ (self withoutEmphasis:BackgroundColorEmphasis) 
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1608
            withoutEmphasis:ColorEmphasis
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1609
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1610
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1611
withoutBackgroundColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1612
    "return a copy with bg-color emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1613
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1614
    ^ self withoutEmphasis:BackgroundColorEmphasis
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1615
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1616
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1617
withoutEmphasis
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1618
    "return my underlying plain string"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1619
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1620
    ^ string
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1621
!
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1622
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1623
withoutEmphasis:emphasisToRemove 
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1624
    "return a copy with a particular emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1625
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1626
    |newText anyEmphasis|
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1627
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1628
    self hasChangeOfEmphasis ifTrue:[
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1629
        newText := self copyFrom:1 to:self size.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1630
        anyEmphasis := false.
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1631
        1 to:newText size do:[:col |
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1632
            |em newem|
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1633
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1634
            em := (newText emphasis) at:col.
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1635
            em notNil ifTrue:[
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1636
                newem := Text removeEmphasis:emphasisToRemove from:em.
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1637
                newem ~~ em ifTrue:[
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1638
                    newText emphasisAt:col put:newem.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1639
                ].
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1640
                newem notNil ifTrue:[ anyEmphasis := true ].
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1641
            ].
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1642
        ].
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1643
        anyEmphasis ifFalse:[^ newText string].
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1644
        ^ newText
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1645
    ].
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1646
    ^ self
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1647
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1648
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1649
withoutForegroundColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1650
    "return a copy with fg-color emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1651
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1652
    ^ self withoutEmphasis:ColorEmphasis
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1653
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1654
1757
65c6d9b60ca4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
  1655
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1656
!Text methodsFor:'printing & storing'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1658
displayOn:aGCOrStream
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1659
    "append a printed representation from which the receiver can be reconstructed
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1660
     to aStream."
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1661
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1662
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
4351
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1663
    "/ old ST80 means: draw-yourself on a GC.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1664
    aGCOrStream isStream ifFalse:[
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1665
        ^ super displayOn:aGCOrStream.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1666
    ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1667
4351
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1668
    aGCOrStream nextPutAll:'(Text string:'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1669
    string storeOn:aGCOrStream.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1670
    aGCOrStream nextPutAll:' runs:'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1671
    runs displayOn:aGCOrStream.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1672
    aGCOrStream nextPutAll:')'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1673
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1674
    "Created: / 11-05-1996 / 14:27:09 / cg"
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1675
    "Modified: / 22-02-2017 / 16:58:18 / cg"
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1676
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1677
3273
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1678
displayString
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1679
    "return a string used when displaying the receiver in a view."
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1680
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1681
    ^ self.
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1682
!
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1683
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1684
printOn:aStream
3784
25519ee4239d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3689
diff changeset
  1685
    "print the receiver's characters (including emphasis) on aStream. 
1077
4117a0e655cd Save old emphasis on #printOn:
Stefan Vogel <sv@exept.de>
parents: 1070
diff changeset
  1686
     Notice, that some streams simply ignore the emphasis"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1687
2051
d55c088e8bfd Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 2016
diff changeset
  1688
    aStream nextPutAllText:self
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1689
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1690
    "
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1691
     Transcript showCR:'hello world'.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1692
     Transcript showCR:'hello world' asText allBold.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1693
     Transcript showCR:('hello world' asText emphasizeAllWith:#italic).
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1694
    "
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
409
7e8c2457d5f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 408
diff changeset
  1696
    "Modified: 12.7.1996 / 10:15:47 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
storeOn:aStream
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1700
    "append a printed representation from which the receiver can be reconstructed
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1701
     to aStream."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1702
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
    aStream nextPutAll:'(Text string:'.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
    string storeOn:aStream.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1705
    aStream nextPutAll:' runs:'.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
    runs storeOn:aStream.
4334
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1707
    aStream nextPut:$).
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
4334
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1709
    "Created: / 11-05-1996 / 14:27:09 / cg"
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1710
    "Modified: / 16-05-1996 / 11:23:32 / cg"
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1711
    "Modified: / 17-02-2017 / 10:36:03 / stefan"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
1200
fefe87f822bc method category rename
Claus Gittinger <cg@exept.de>
parents: 1173
diff changeset
  1714
!Text methodsFor:'private-accessing'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1716
emphasisCollection:emphasisCollection
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1717
    "set the string and emphasis collection.
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1718
     The emphasis collection contains per-character information."
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1719
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1720
    runs := emphasisCollection.
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1721
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1722
    "Created: / 7.4.1998 / 08:52:03 / cg"
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1723
!
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1724
2959
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1725
runs
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1726
    ^ runs
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1727
!
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1728
3009
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1729
setRuns:anArrayOrRunArray
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1730
    runs := anArrayOrRunArray.
3009
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1731
!
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1732
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1733
setString:aString setRuns:anArrayOrRunArray
872
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1734
    string := aString.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1735
    runs := anArrayOrRunArray.
872
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1736
!
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1737
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1738
string:aString emphasis:emphasis
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1739
    "set the string and emphasis. The emphasis is applied to all characters."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1740
428
3cdcd0597bf0 bug fix: implicit set string to String not Text
ca
parents: 410
diff changeset
  1741
    string := aString string.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1742
    runs   := RunArray new:string size withAll:emphasis.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1743
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1745
     |t|
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1746
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1747
     t := Text new string:'hello' emphasis:#bold.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1748
     t emphasisAt:2.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1749
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1750
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1751
    "Modified: 16.5.1996 / 11:24:03 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1752
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1753
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1754
string:aString emphasisCollection:emphasisCollection
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1755
    "set the string and emphasis collection.
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1756
     The emphasis collection contains per-character information."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1757
428
3cdcd0597bf0 bug fix: implicit set string to String not Text
ca
parents: 410
diff changeset
  1758
    string := aString string.
1160
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1759
    string size == 0 ifTrue:[
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1760
        runs := RunArray new.
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1761
    ] ifFalse:[
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1762
        runs := emphasisCollection asRunArray
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1763
    ].
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1764
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1765
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1766
     |t|
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1767
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1768
     t := Text new string:'hello' emphasisCollection:(#bold #bold #bold #italic #italic).
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1769
     t emphasisAt:2.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1770
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1771
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1772
    "Created: 14.5.1996 / 14:03:29 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1773
    "Modified: 16.5.1996 / 11:24:21 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1774
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1775
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1776
!Text methodsFor:'queries'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1777
4183
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1778
bitsPerCharacter
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1779
    "return the number of bits I (my underlying string) require for storage.
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1780
     (i.e. is it a regular String or a TwoByteString)"
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1781
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1782
    ^ string bitsPerCharacter.
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1783
!
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1784
5438
2f5749ce202a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 5437
diff changeset
  1785
emphasisAtX:pointX on:aGCOrView
2f5749ce202a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 5437
diff changeset
  1786
    "return the emphasis at a given x-coordinate, or nil if there is none.
2f5749ce202a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 5437
diff changeset
  1787
     Does not care for multiline strings (i.e. only works for single line strings)"
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1788
5438
2f5749ce202a #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 5437
diff changeset
  1789
    |savedFont boldFont italicFont bold italic wasItalic pos font len gcDevice posX boldItalicFont|
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1790
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1791
    gcDevice := aGCOrView graphicsDevice.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1792
    savedFont := aGCOrView basicFont onDevice:gcDevice.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1793
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1794
    pos := 1.
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1795
    posX := 0.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1796
    len := 0.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1797
    italic := false.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1798
    runs runsDo:[:runLen :emphasis |
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1799
        wasItalic := italic.
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1800
        emphasis isSymbol ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1801
            bold := emphasis == BoldEmphasis 
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1802
                        or:[emphasis == BoldUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1803
                        or:[emphasis == BoldOverlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1804
                        or:[emphasis == BoldUnderwaveEmphasis]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1805
            italic := emphasis == ItalicEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1806
                        or:[emphasis == ItalicUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1807
                        or:[emphasis == ItalicUnderwaveEmphasis]].
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1808
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1809
            bold := italic := false.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1810
            (emphasis isNil or:[emphasis isAssociation]) ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1811
                emphasis do:[:eachEmphasisSymbol|
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1812
                    eachEmphasisSymbol == BoldEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1813
                    ifFalse:[eachEmphasisSymbol == ItalicEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1814
                    ifFalse:[eachEmphasisSymbol == BoldUnderlineEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1815
                    ifFalse:[eachEmphasisSymbol == BoldUnderwaveEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1816
                    ifFalse:[eachEmphasisSymbol == ItalicUnderlineEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1817
                    ifFalse:[eachEmphasisSymbol == ItalicUnderwaveEmphasis ifTrue:[italic := true]]]]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1818
                ].
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1819
            ]
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1820
        ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1821
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1822
        bold ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1823
            italic ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1824
                boldItalicFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1825
                    boldItalicFont := savedFont asBold asItalic onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1826
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1827
                font := boldItalicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1828
            ] ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1829
                boldFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1830
                    boldFont := savedFont asBold onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1831
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1832
                font := boldFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1833
            ]
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1834
        ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1835
            italic ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1836
                italicFont isNil ifTrue:[
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  1837
                    italicFont := savedFont asItalic onDevice:gcDevice
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1838
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1839
                font := italicFont
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1840
            ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1841
                font := savedFont
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1842
            ]
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1843
        ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1844
"/ disabled - it is too ugly (and not handled correctly, anyway).
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1845
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1846
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1847
"/                "/ going from italic to non-italic; leave some space for the shear
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1848
"/                l := l + (f width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1849
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1850
"/        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1851
        len := font widthOf:string from:pos to:(pos + runLen - 1).
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1852
        (pointX between:posX and:posX + len) ifTrue:[
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1853
            ^ emphasis
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1854
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1855
        pos := pos + runLen.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1856
        posX := posX + len.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1857
    ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1858
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1859
    ^ nil
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1860
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1861
1401
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1862
encoding
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1863
    ^ string encoding
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1864
!
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1865
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1866
hasChangeOfEmphasis
2830
b69f6dc901f0 comment/format in: #hasChangeOfEmphasis
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
  1867
    "return true, if the receiver contains non-empty emphasis information
b69f6dc901f0 comment/format in: #hasChangeOfEmphasis
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
  1868
     i.e. any non-normal (=emphasized) characters"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1869
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1870
    ^ runs notEmptyOrNil
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1871
       and:[ runs contains:[:e | e notNil] ]
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1872
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1873
    "Created: 11.5.1996 / 14:03:19 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1874
    "Modified: 14.5.1996 / 15:51:01 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1876
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1877
hasEmphasis: emphasis
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1878
    "return true, if the receiver contains given emphasis"
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1879
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1880
    "HACK!!!!!!"
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1881
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1882
    | emphasisArray  |
2675
ba4427ed6582 changed: #hasEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  1883
4964
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1884
    emphasis isSymbol ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1885
        runs do:[:runEmph|    
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1886
            (runEmph == emphasis) ifTrue:[^ true]. 
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1887
            (runEmph isCollection and:[runEmph isSymbol not]) ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1888
                runEmph do:[:each |
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1889
                    (each == emphasis) ifTrue:[^ true].    
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1890
                    (each isAssociation and:[each key == emphasis]) ifTrue:[^ true].    
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1891
                ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1892
            ]
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1893
        ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1894
        ^ false
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1895
    ].
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1896
    
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1897
    (emphasis isAssociation) ifTrue:[
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1898
        emphasisArray := Array with:emphasis.
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1899
    ] ifFalse:[
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1900
        emphasisArray := emphasis.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1901
    ].
2675
ba4427ed6582 changed: #hasEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  1902
    emphasisArray isNil ifTrue:[^false].
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1903
    
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1904
    runs do:[:runEmph|    
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1905
        emphasisArray do:[:searchEmph|
4964
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1906
            (runEmph = searchEmph) ifTrue:[^ true]. 
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1907
            (runEmph isCollection and:[runEmph isSymbol not]) ifTrue:[ 
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1908
                runEmph do:[:each |
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1909
                    (each = searchEmph) ifTrue:[^ true].    
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1910
                ].
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1911
            ]                    
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1912
        ]
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1913
    ].
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1914
    ^ false
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1915
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1916
    "
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1917
        'Hello' asText allBold hasEmphasis: #bold.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1918
        'Hello' asText allBold allUnderlined hasEmphasis: #bold.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1919
        'Hello' asText allBold allUnderlined hasEmphasis: #italic.                              
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1920
        ('Hello' asText allBold allUnderlined , ' World' asText allItalic) hasEmphasis: #italic.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1921
    "
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1922
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1923
    "Created: / 20-07-2011 / 17:51:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2675
ba4427ed6582 changed: #hasEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  1924
    "Modified (format): / 18-11-2011 / 14:55:10 / cg"
4964
f4d62c1adf00 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4958
diff changeset
  1925
    "Modified: / 28-05-2019 / 10:47:28 / Claus Gittinger"
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1926
!
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1927
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1928
heightOn:aGC
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1929
    "return the number of device units, required on aGC's device"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1930
4019
9d2225af7229 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4015
diff changeset
  1931
    ^ aGC deviceFont heightOf:string
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1932
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1933
    "Created: 12.5.1996 / 11:02:03 / cg"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1934
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1935
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
indexOf:aCharacter startingAt:index
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1937
    "search aCharacters index in the underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1938
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
    ^ string indexOf:aCharacter startingAt:index
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
    "Created: 11.5.1996 / 13:58:56 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1942
    "Modified: 16.5.1996 / 11:25:12 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
3644
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1945
isPlainString
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1946
    "return true, if the receiver is a plain string - without attributes;
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1947
     false is returned here."
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1948
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1949
    ^ false
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1950
!
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1951
4513
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1952
isSingleByteCollection
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1953
    "return true, if the receiver has access methods for bytes;
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1954
     i.e. #at: and #at:put: accesses a byte and are equivalent to #byteAt: and byteAt:put:
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1955
     and #replaceFrom:to: is equivalent to #replaceBytesFrom:to:. 
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1956
     false is returned here since #replaceBytesFrom:to: is not implemented in Text.
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1957
      - the method is redefined from UninterpretedBytes."
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1958
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1959
    ^ false
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1960
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1961
    "Created: / 30-08-2017 / 23:33:39 / cg"
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1962
!
2c986c93c992 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4510
diff changeset
  1963
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1964
isText
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1965
    "return true if this is a Text object - always true here"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1966
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1967
    ^ true
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1968
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1969
    "Created: 12.5.1996 / 10:56:24 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1970
    "Modified: 16.5.1996 / 11:25:29 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1971
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1972
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1973
occurrencesOf:aCharacter
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1974
    "count & return the number of occurrences of aCharacter in the 
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1975
     underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1976
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1977
    ^ string occurrencesOf:aCharacter
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1978
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
    "Created: 11.5.1996 / 13:58:46 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1980
    "Modified: 16.5.1996 / 11:25:51 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1981
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1983
size
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1984
    "return the number of characters in the underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1985
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1986
    ^ string size
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1987
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1988
    "Created: 11.5.1996 / 14:25:15 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1989
    "Modified: 16.5.1996 / 11:26:08 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1990
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1991
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1992
string
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1993
    "return the receiver without any emphasis information
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1994
     i.e. the underlying string."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1995
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1996
    ^ string
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
    "Created: 11.5.1996 / 13:58:38 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1999
    "Modified: 16.5.1996 / 11:26:30 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2000
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2001
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2002
widthFrom:startIndex to:endIndex on:aGC
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2003
    "return the number of device units, required on aGC's device"
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2004
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2005
    ^ (self copyFrom:startIndex to:endIndex) widthOn:aGC
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2006
!
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  2007
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2008
widthOn:aGC
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2009
    "return the number of device units, required on aGC's device"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2010
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2011
    |savedFont boldFont italicFont bold italic wasItalic pos font len gcDevice boldItalicFont|
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2012
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  2013
    gcDevice := aGC graphicsDevice.
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  2014
    savedFont := aGC basicFont onDevice:gcDevice.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2015
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2016
    pos := 1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2017
    len := 0.
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  2018
    italic := false.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2019
    runs runsDo:[:runLen :emphasis |
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  2020
        wasItalic := italic.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2021
        emphasis isSymbol ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2022
            bold := emphasis == BoldEmphasis 
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2023
                        or:[emphasis == BoldUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2024
                        or:[emphasis == BoldOverlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2025
                        or:[emphasis == BoldUnderwaveEmphasis]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2026
            italic := emphasis == ItalicEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2027
                        or:[emphasis == ItalicUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2028
                        or:[emphasis == ItalicUnderwaveEmphasis]].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2029
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2030
            bold := italic := false.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2031
            (emphasis isNil or:[emphasis isAssociation]) ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2032
                emphasis do:[:eachEmphasisSymbol|
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2033
                    eachEmphasisSymbol == BoldEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2034
                    ifFalse:[eachEmphasisSymbol == ItalicEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2035
                    ifFalse:[eachEmphasisSymbol == BoldUnderlineEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2036
                    ifFalse:[eachEmphasisSymbol == BoldUnderwaveEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2037
                    ifFalse:[eachEmphasisSymbol == ItalicUnderlineEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2038
                    ifFalse:[eachEmphasisSymbol == ItalicUnderwaveEmphasis ifTrue:[italic := true]]]]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2039
                ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2040
            ]
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2041
        ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2042
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2043
        bold ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2044
            italic ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2045
                boldItalicFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2046
                    boldItalicFont := savedFont asBold asItalic onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2047
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2048
                font := boldItalicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2049
            ] ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2050
                boldFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2051
                    boldFont := savedFont asBold onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2052
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2053
                font := boldFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2054
            ]
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2055
        ] ifFalse:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2056
            italic ifTrue:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2057
                italicFont isNil ifTrue:[
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  2058
                    italicFont := savedFont asItalic onDevice:gcDevice
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2059
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2060
                font := italicFont
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2061
            ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2062
                font := savedFont
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2063
            ]
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2064
        ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2065
"/ disabled - it is too ugly (and not handled correctly, anyway).
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2066
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2067
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2068
"/                "/ going from italic to non-italic; leave some space for the shear
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2069
"/                l := l + (f width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2070
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  2071
"/        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2072
        len := len + (font widthOf:string from:pos to:(pos + runLen - 1)).
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2073
        pos := pos + runLen
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2074
    ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2075
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  2076
    ^ len
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2077
404
14cf34141532 use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 395
diff changeset
  2078
    "Modified: 5.7.1996 / 17:54:58 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2079
! !
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2080
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2081
!Text methodsFor:'replacing'!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2082
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2083
replaceFrom:start to:stop with:aCollection startingAt:startIndex
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2084
    "replace a range of characters, from another string or text object.
607
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2085
     The corresponding characters' emphasis information is also copied.
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2086
     Return the receiver."
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  2087
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2088
    |idx maxCharacter|
1402
2fe462e2fe8e care for text with twobyte strings
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
  2089
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2090
    aCollection isString ifTrue:[
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2091
        aCollection bitsPerCharacter > string bitsPerCharacter ifTrue:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2092
            "have to create a new string with appropriate character size"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2093
            string := aCollection string species fromString:string.
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2094
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2095
        aCollection hasChangeOfEmphasis ifTrue:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2096
            string replaceFrom:start to:stop with:aCollection startingAt:startIndex.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2097
            idx := startIndex.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2098
            start to:stop do:[:col |
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2099
                self emphasisAt:col put:(aCollection emphasisAt:idx).
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2100
                idx := idx + 1.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2101
            ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2102
            ^ self.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2103
        ]
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2104
    ] ifFalse:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2105
        "aCollection is an arbitrary SequenceableCollection"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2106
        maxCharacter := $0.    "some 8-bit character"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2107
        aCollection do:[:eachCharacter |
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2108
            maxCharacter := maxCharacter max:eachCharacter
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2109
        ].
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2110
        maxCharacter bitsPerCharacter > string bitsPerCharacter ifTrue:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2111
            "have to create a new string with appropriate character size"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2112
            string := maxCharacter stringSpecies fromString:string.
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2113
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2114
    ].
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2115
        
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2116
    string replaceFrom:start to:stop with:aCollection startingAt:startIndex.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2117
    self emphasizeFrom:start to:stop with:nil.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2118
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2119
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2120
     ((Text string:'hello') allBold emphasisAt:2 put:#italic)
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2121
        replaceFrom:1 to:3 with:'HEL' startingAt:1
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2122
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2123
     ((Text string:'hello') allBold emphasisAt:2 put:#italic)
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2124
        replaceFrom:1 to:3 with:#($H $E $L) startingAt:1
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2125
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2126
607
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2127
    "Modified: / 28.1.1998 / 16:50:06 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2128
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2129
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  2130
!Text class methodsFor:'documentation'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2131
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2132
version
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2133
    ^ '$Header$'
2305
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2134
!
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2135
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2136
version_CVS
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2137
    ^ '$Header$'
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2138
! !
1160
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2139
2867
daa1394cdf05 class: Text
Stefan Vogel <sv@exept.de>
parents: 2852
diff changeset
  2140
314
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2141
Text initialize!