Text.st
author Claus Gittinger <cg@exept.de>
Tue, 20 Jun 2017 08:56:36 +0200
changeset 4426 24e3f90e84ed
parent 4425 efa00eb073ed
child 4510 d9cb833dfa01
permissions -rw-r--r--
#DOCUMENTATION by cg x
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
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   449
addEmphasis:e1 to:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   450
    "merge two emphasis's into one"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   451
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   452
    |ne|
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   453
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   454
    e1 isNil ifTrue:[^ e2].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   455
    e2 isNil ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   456
    e1 == e2 ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   457
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   458
    (e1 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   459
     or:[e1 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   460
        (e2 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   461
         or:[e2 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   462
            ^ Array with:e1 with:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   463
        ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   464
        (e2 includes:e1) ifTrue:[^ e2].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   465
        ^ e2 copyWith:e1
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   466
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   467
    (e2 isSymbol 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   468
     or:[e2 isAssociation]) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   469
        (e1 includes:e2) ifTrue:[^ e1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   470
        ^ e1 copyWith:e2
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   471
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   472
    "/ ould use:
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   473
    "/    ^ (e1 asSet addAll:e2; asArray)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   474
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   475
    "/ but we do it manually, to preserve the
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   476
    "/ order. (should create longer runs, while editing)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   477
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   478
    ne := e1.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   479
    e2 do:[:e |
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   480
        (ne includes:e) ifFalse:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   481
           ne := ne copyWith:e
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   482
        ]
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   483
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   484
    ^ ne.
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
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   487
     Text addEmphasis:#bold to:#bold           
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   488
     Text addEmphasis:#bold to:#italic         
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   489
     Text addEmphasis:#bold to:#(italic strikeout)   
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   490
     Text addEmphasis:#italic to:#(italic strikeout) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   491
     Text addEmphasis:#(italic strikeout) to:#bold  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   492
     Text addEmphasis:#(italic strikeout) to:#italic 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   493
     Text addEmphasis:#(italic strikeout) to:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   494
     Text addEmphasis:(#color->Color red) to:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   495
    "
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
    "Modified: 14.5.1996 / 17:15:44 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   498
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   499
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   500
emphasis:e1 includes:e2
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   501
    "return true, if e1 includes e2.
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   502
     e2 should be a single emphasis."
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   503
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   504
    e1 isNil ifTrue:[^ false].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   505
    e2 isNil ifTrue:[^ false].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   506
    e1 == e2 ifTrue:[^ true].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   507
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   508
    e1 isSymbol ifTrue:[
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   509
        ^ false
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   510
    ].
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   511
    e1 isAssociation ifTrue:[
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   512
        ^ e1 key == e2
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   513
    ].
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   514
    (e1 isSymbol 
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   515
     or:[e1 isAssociation]) ifTrue:[
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   516
        ^ false
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   517
    ].
1780
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   518
    e2 isSymbol ifTrue:[
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   519
        ^ (e1 includes:e2) or:[e1 contains:[:e |e isAssociation and:[e key == e2]]].
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   520
    ].
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   521
    e2 isAssociation ifTrue:[
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   522
        ^ (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
   523
    ].
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   524
    ^ false
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
    "
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   527
     Text emphasis:#bold includes:#bold           
1780
7c4a4bb27a4f fix: includesEmph
sr
parents: 1757
diff changeset
   528
     Text emphasis:#bold includes:#italic         
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   529
     Text emphasis:#(italic strikeout) includes:#bold  
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   530
     Text emphasis:#(italic strikeout) includes:#italic 
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   531
     Text emphasis:(#color->Color red) includes:#color 
339
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   532
    "
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   533
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   534
    "Modified: 14.5.1996 / 17:45:11 / cg"
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   535
!
4d1140308a76 emphasis helper
Claus Gittinger <cg@exept.de>
parents: 336
diff changeset
   536
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   537
extractEmphasis:key from:e
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   538
    "if key is included in the emphasis, e then return the key.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   539
     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
   540
     Otherwise, return nil."
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   541
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   542
    e isNil ifTrue:[^ nil].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   543
    key == e ifTrue:[^ e].
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   544
    e isSymbol ifTrue:[^ nil].
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   545
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   546
    e isAssociation ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   547
        e key == key ifTrue:[^ e value].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   548
        ^ nil
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   549
    ].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   550
    e do:[:entry | 
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   551
        entry == key ifTrue:[^ key].
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   552
        entry isAssociation ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   553
            entry key == key ifTrue:[
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   554
                ^ entry value
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   555
            ]
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   556
        ]
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   557
    ].
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   558
    ^ nil
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   559
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   560
    "
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   561
     Text extractEmphasis:#bold  from:#bold           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   562
     Text extractEmphasis:#bold  from:#italic           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   563
     Text extractEmphasis:#bold  from:#(italic strikeout)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   564
     Text extractEmphasis:#bold  from:#(italic bold)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   565
     Text extractEmphasis:#color  from:(#color->Color red)           
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   566
     Text extractEmphasis:#color  from:(#foo->Color red)           
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
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   569
    "Modified: 14.5.1996 / 17:45:11 / cg"
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
   570
    "Created: 11.7.1996 / 09:49:58 / cg"
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
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   573
removeEmphasis:emToRemove from:empArg
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   574
    "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
   575
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   576
    |ne idx emp|
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   577
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   578
    emp := empArg.
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   579
    emToRemove isNil ifTrue:[^ emp].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   580
    emp isNil ifTrue:[^ emp].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   581
    emToRemove == emp ifTrue:[^ nil].
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   582
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   583
    emp isSymbol ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   584
        emToRemove isSymbol ifTrue:[^ emp].  "/ knowing they are not identical
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   585
        emToRemove isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   586
            emToRemove key == emp ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   587
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   588
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   589
        (emToRemove includes:emp) ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   590
        ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   591
    ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   592
    emp isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   593
        emToRemove isSymbol ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   594
            emp key == emToRemove ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   595
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   596
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   597
        emToRemove isAssociation ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   598
            emToRemove key == emp key ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   599
            ^ emp
755
3711135b1687 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 754
diff changeset
   600
        ].
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   601
        (emToRemove includes:emp) ifTrue:[^ nil].
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   602
        ^ emp
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   603
    ].
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   604
    "/ e2 must be a collection
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   605
    (emToRemove isSymbol 
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   606
     or:[emToRemove isAssociation]) ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   607
        (emp includes:emToRemove) ifTrue:[
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   608
            ne := emp copyWithout:emToRemove.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   609
            ne size == 1 ifTrue:[^ ne at:1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   610
            ne size == 0 ifTrue:[^ nil].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   611
            ^ ne
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   612
        ].
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   613
        
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   614
        idx := emp findFirst:[:em | em isAssociation and:[em key == emToRemove]].
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   615
        (idx ~~ 0) ifTrue:[
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   616
            emp := emp copyWithoutIndex:idx.
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   617
            [ 
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   618
                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
   619
                idx ~~ 0 
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   620
            ] whileTrue:[
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   621
                emp := emp copyWithoutIndex:idx.
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   622
            ]
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
   623
        ].
1068
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
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   626
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   627
    "/ could use:
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   628
    "/    ^ (e2 asSet removeAll:e1; asArray)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   629
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   630
    "/ but we do it manually, to preserve the
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   631
    "/ order. (should create longer runs, while editing)
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   632
1068
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   633
    ne := emp.
8fe441b49dbe removeEmphasis fixed
Michael Beyl <mb@exept.de>
parents: 1067
diff changeset
   634
    emToRemove do:[:e |
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   635
        (ne includes:e) ifTrue:[
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   636
           ne := ne copyWithout:e
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   637
        ]
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   638
    ].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   639
    ne size == 1 ifTrue:[^ ne at:1].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   640
    ne size == 0 ifTrue:[^ nil].
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   641
    ^ ne.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   642
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   643
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   644
     Text removeEmphasis:#bold from:#bold           
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   645
     Text removeEmphasis:#bold from:#italic         
1067
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   646
     Text removeEmphasis:#bold from:#(italic strikeout)    
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
   647
     Text removeEmphasis:#bold from:#(italic bold strikeout)    
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   648
     Text removeEmphasis:#italic from:#(italic strikeout) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   649
     Text removeEmphasis:#(italic strikeout) from:#bold  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   650
     Text removeEmphasis:#(italic strikeout) from:#italic  
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   651
     Text removeEmphasis:#(italic strikeout) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   652
     Text removeEmphasis:#(italic strikeout bold) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   653
     Text removeEmphasis:#(italic strikeout bold underline) from:#(bold underline) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   654
     Text removeEmphasis:(#color->Color red) from:#(bold underline) 
756
43d8932d307a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 755
diff changeset
   655
     Text removeEmphasis:(#color->Color red) from:(#color->Color red) 
1067
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   656
     Text removeEmphasis:#color from:(#color->Color red)   
d00cacc63c2e comment
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
   657
     Text removeEmphasis:#color from:(#backgroundColor->Color red)      
754
3478532ba8af emphasis extraction fix
Claus Gittinger <cg@exept.de>
parents: 735
diff changeset
   658
     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
   659
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   660
2731
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   661
    "Modified: / 25-01-2001 / 15:24:46 / ps"
6dec3016c2a5 changed: #removeEmphasis:from:
Claus Gittinger <cg@exept.de>
parents: 2675
diff changeset
   662
    "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
   663
! !
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
   664
735
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   665
!Text methodsFor:'accessing'!
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   666
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   667
at:characterIndex
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   668
    "return the plain character at characterIndex"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   669
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   670
    ^ string at:characterIndex
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   671
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   672
    "Created: 11.5.1996 / 14:25:41 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   673
    "Modified: 16.5.1996 / 11:15:33 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   674
!
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   675
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   676
at:characterIndex put:aCharacter
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   677
    "change the character at characterIndex to be aCharacter.
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   678
     The emphasis (if any) of that character remains unchanged."
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   679
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   680
    ^ string at:characterIndex put:aCharacter
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   681
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   682
    "Created: 11.5.1996 / 14:25:49 / cg"
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   683
    "Modified: 16.5.1996 / 11:15:57 / cg"
2734
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   684
!
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   685
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   686
byteAt:characterIndex
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   687
    "return the plain character at characterIndex"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   688
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   689
    ^ string byteAt:characterIndex
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   690
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   691
    "Created: 11.5.1996 / 14:25:41 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   692
    "Modified: 16.5.1996 / 11:15:33 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   693
!
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   694
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   695
byteAt:characterIndex put:aCharacter
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   696
    "change the character at characterIndex to be aCharacter.
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   697
     The emphasis (if any) of that character remains unchanged."
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   698
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   699
    ^ string byteAt:characterIndex put:aCharacter
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   700
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   701
    "Created: 11.5.1996 / 14:25:49 / cg"
Stefan Vogel <sv@exept.de>
parents: 2733
diff changeset
   702
    "Modified: 16.5.1996 / 11:15:57 / cg"
735
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   703
! !
6ca1d0dd6526 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 734
diff changeset
   704
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   705
!Text methodsFor:'comparing'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   706
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
= aStringOrText
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
    "compare the receiver and the argument, ignoring emphasis"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
384
866650ee29fd fixed = for non-string args
Claus Gittinger <cg@exept.de>
parents: 360
diff changeset
   710
    aStringOrText isString ifFalse:[^ false].
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
    ^ string = aStringOrText string
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
     'hello' asText = 'hello'        
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
     'hello' asText = 'hello' asText 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
     'hello' asText allBold = 'hello' 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
384
866650ee29fd fixed = for non-string args
Claus Gittinger <cg@exept.de>
parents: 360
diff changeset
   720
    "Modified: 4.6.1996 / 11:14:58 / cg"
662
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   721
!
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   722
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   723
hash
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   724
    "return a suitable hashcode (req'd since = is redefined)"
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   725
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   726
    ^ string hash
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   727
856b381b8308 need #hash
Claus Gittinger <cg@exept.de>
parents: 661
diff changeset
   728
    "Created: / 19.6.1998 / 04:15:57 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
!Text methodsFor:'converting'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
3662
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   733
asSingleByteString
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   734
    ^ self class string:string asSingleByteString runs:runs.
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   735
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   736
    "
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   737
      'hello world' asUnicodeString asText asSingleByteString
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   738
    "
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   739
!
Stefan Vogel <sv@exept.de>
parents: 3644
diff changeset
   740
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
asText
1645
bc07074c18f4 documentation
Stefan Vogel <sv@exept.de>
parents: 1402
diff changeset
   742
    "return a Text-object (string with emphasis) from myself.
bc07074c18f4 documentation
Stefan Vogel <sv@exept.de>
parents: 1402
diff changeset
   743
     I am already a text object."
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   744
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
    ^ self
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
    "Created: 11.5.1996 / 14:08:36 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   748
    "Modified: 16.5.1996 / 11:15:12 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   750
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
!Text methodsFor:'copying'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
, aStringOrText
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   754
    "concatenate the receiver's characters with the argument's characters, 
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   755
     and return string or text object containing those characters.
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
   756
     If either the receiver or the argument contains emphasis information,
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   757
     a text object will be returned. 
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   758
     Otherwise, a string (i.e. without emphasis) is returned."
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
   760
    |newRuns|
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
   761
758
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   762
    aStringOrText isCharacter ifTrue:[
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   763
        ^ self , aStringOrText asString
5dc694e5c8db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 756
diff changeset
   764
    ].
615
3be71f2a9b9b a very 'uebel' error fixed (?) in #,
tz
parents: 607
diff changeset
   765
    aStringOrText hasChangeOfEmphasis ifTrue:[    
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   766
        ^ self species new
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   767
            string:(string , aStringOrText)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   768
            emphasisCollection:(runs , aStringOrText emphasisCollection)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   769
    ].
615
3be71f2a9b9b a very 'uebel' error fixed (?) in #,
tz
parents: 607
diff changeset
   770
    runs notNil "self hasChangeOfEmphasis" ifTrue:[ 
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
   771
        newRuns := runs copyFrom:1 to:(runs size).
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   772
        newRuns add:nil withOccurrences:(aStringOrText size).
408
90799280d574 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 407
diff changeset
   773
        ^ self species new
90799280d574 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 407
diff changeset
   774
            string:(string , aStringOrText)
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
   775
            emphasisCollection:newRuns
408
90799280d574 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 407
diff changeset
   776
    ].
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   777
    ^ string , aStringOrText string
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   778
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   779
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   780
     ('hello' asText allBold) , ' world'    
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   781
     'hello' , (' world' asText allBold)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   782
     'hello' , ' world'
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   783
     ('hello' asText allBold) , (' world' asText allBold)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   784
    "
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   785
2733
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   786
    "Modified: / 31-03-1998 / 16:34:04 / cg"
987dba8e00b6 comment/format in: #,
Claus Gittinger <cg@exept.de>
parents: 2731
diff changeset
   787
    "Modified (comment): / 01-04-2012 / 13:20:02 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   788
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   789
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   790
concatenateFromString:aString
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   791
    "return the concatenation of aString and myself.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   792
     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
   793
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   794
    self hasChangeOfEmphasis ifTrue:[
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   795
        ^ self species new
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   796
                string:(aString , string)
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   797
                emphasisCollection:((RunArray new:(aString size)) , runs).
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   798
    ].
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   799
    ^ aString , string
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   800
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
   801
    "Modified: 14.5.1996 / 15:56:05 / cg"
394
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   802
!
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   803
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   804
copyFrom:start to:stop
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   805
    "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
   806
     at stop, anInteger."
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   807
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   808
    self hasChangeOfEmphasis ifTrue:[
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   809
        ^ self species new
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   810
                string:(string copyFrom:start to:stop)
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   811
                emphasisCollection:(runs copyFrom:start to:stop).
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   812
    ].
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   813
    ^ string copyFrom:start to:stop
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   814
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   815
    "Modified: 14.5.1996 / 15:56:05 / cg"
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   816
    "Created: 22.10.1996 / 21:01:16 / cg"
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   817
!
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
   818
394
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   819
postCopy
26ea25797eae redefined postCopy
ca
parents: 393
diff changeset
   820
    string := string copy.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   821
    runs := runs copy.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   822
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   823
    "
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   824
     |t|
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   825
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   826
     t := 'hello' emphasizeAllWith:#bold.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   827
     t inspect. t copy inspect.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   828
     t emphasisAllRemove:#bold.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   829
    "
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   830
! !
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   831
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   832
!Text methodsFor:'displaying'!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   833
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   834
displayOn:aGCOrView x:x0 y:yBase opaque:opaqueWanted
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   835
    "display the receiver on a GC.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   836
     This is one of the ugliest pieces of code..."
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   837
1000
927894af9a9f etching
Claus Gittinger <cg@exept.de>
parents: 999
diff changeset
   838
    |savedFont savedPaint savedFgPaint savedBgPaint font color boldFont italicFont boldItalicFont 
927894af9a9f etching
Claus Gittinger <cg@exept.de>
parents: 999
diff changeset
   839
     bgPaint etchColor ulPaint strikePaint
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   840
     wasItalic overline altFont
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   841
     bold italic underline underwave strikeout reverse subOrSuperscript
310
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   842
     pos    "{ Class: SmallInteger }"
2c2ce53ef527 strikeout
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
   843
     endPos "{ Class: SmallInteger }"
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   844
     x y    
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   845
     len    "{ Class: SmallInteger }"
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
   846
     bgFill
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   847
     yL k value device opaque|
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   848
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   849
    savedFont := aGCOrView basicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   850
    savedPaint := aGCOrView paint.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   851
    savedBgPaint := aGCOrView backgroundPaint.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   852
963
0d5ef474ea17 draw opaque - if backgroundCOlor is set
Claus Gittinger <cg@exept.de>
parents: 954
diff changeset
   853
    opaque := opaqueWanted.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   854
    device := aGCOrView graphicsDevice.
705
9e247eeb134a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 702
diff changeset
   855
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   856
    pos := 1.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
   857
    x := x0.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   858
    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
   859
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   860
    runs size > string size ifTrue:[
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   861
        Transcript showCR:'inconsistent text: runs size > string size'.
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   862
        runs := runs copyTo:(string size)
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   863
    ].
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
   864
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   865
    runs runsDo:[:runLen :emphasis |
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   866
        wasItalic := italic.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   867
        color := savedPaint.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   868
        bold := italic := underline := underwave := strikeout := reverse := overline := false.
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   869
        altFont := subOrSuperscript := nil.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   870
        bgPaint := savedBgPaint.
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   871
        y := yBase.
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   872
        
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   873
        emphasis isSymbol ifTrue:[
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   874
            emphasis == BoldEmphasis ifTrue:[bold := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   875
            ifFalse:[emphasis == ItalicEmphasis ifTrue:[italic := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   876
            ifFalse:[emphasis == UnderlineEmphasis ifTrue:[underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   877
            ifFalse:[emphasis == OverlineEmphasis ifTrue:[overline := true]   "MB:added"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   878
            ifFalse:[emphasis == UnderwaveEmphasis ifTrue:[underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   879
            ifFalse:[emphasis == StrikeoutEmphasis ifTrue:[strikeout := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   880
            ifFalse:[emphasis == ReverseEmphasis ifTrue:[reverse := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   881
            ifFalse:[emphasis == BoldUnderlineEmphasis ifTrue:[bold := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   882
            ifFalse:[emphasis == BoldOverlineEmphasis ifTrue:[bold := overline := true]     "MB:added"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   883
            ifFalse:[emphasis == BoldUnderwaveEmphasis ifTrue:[bold := underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   884
            ifFalse:[emphasis == ItalicUnderlineEmphasis ifTrue:[italic := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   885
            ifFalse:[emphasis == ItalicUnderwaveEmphasis ifTrue:[italic := underwave := true]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   886
            ifFalse:[emphasis == Subscript ifTrue:[subOrSuperscript := Subscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   887
            ifFalse:[emphasis == Superscript ifTrue:[subOrSuperscript := Superscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   888
            ]]]]]]]]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   889
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   890
            emphasis isAssociation ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   891
                value := emphasis value.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   892
                value notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   893
                    k := emphasis key.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   894
                    k == ColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   895
                        color := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   896
                        "/ emphasis value:color.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   897
                    ] ifFalse:[k == BackgroundColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   898
                        bgPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   899
                        "/ emphasis value:bgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   900
                        opaque := true.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   901
                    ] ifFalse:[k == UnderlineColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   902
                        ulPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   903
                        "/ emphasis value:ulPaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   904
                    ] ifFalse:[k == StrikeoutColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   905
                        strikePaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   906
                        "/ emphasis value:strikePaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   907
                    ] ifFalse:[k == EtchColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   908
                        etchColor := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   909
                        "/ emphasis value:etchColor.
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   910
                    ] ifFalse:[k == FontEmphasis ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   911
                        altFont := value onDevice:device.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   912
                        "/ emphasis value:altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   913
                    ]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   914
                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   915
            ] ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   916
                emphasis notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   917
                    emphasis do:[:entry |
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   918
                        entry == BoldEmphasis ifTrue:[bold := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   919
                        ifFalse:[entry == ItalicEmphasis ifTrue:[italic := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   920
                        ifFalse:[entry == UnderlineEmphasis ifTrue:[underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   921
                        ifFalse:[entry == OverlineEmphasis ifTrue:[overline := true] 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   922
                        ifFalse:[entry == UnderwaveEmphasis ifTrue:[underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   923
                        ifFalse:[entry == StrikeoutEmphasis ifTrue:[strikeout := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   924
                        ifFalse:[entry == ReverseEmphasis ifTrue:[reverse := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   925
                        ifFalse:[entry == BoldUnderlineEmphasis ifTrue:[bold := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   926
                        ifFalse:[emphasis == BoldUnderwaveEmphasis ifTrue:[bold := underwave := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   927
                        ifFalse:[entry == ItalicUnderlineEmphasis ifTrue:[italic := underline := true]
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   928
                        ifFalse:[emphasis == ItalicUnderwaveEmphasis ifTrue:[italic := underwave := true]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   929
                        ifFalse:[emphasis == Subscript ifTrue:[subOrSuperscript := Subscript]
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   930
                        ifFalse:[emphasis == Superscript ifTrue:[subOrSuperscript := Superscript]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   931
                        ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   932
                            entry isAssociation ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   933
                                value := entry value.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   934
                                value notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   935
                                    k := entry key.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   936
                                    k == ColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   937
                                        color := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   938
                                        "/ entry value:color.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   939
                                    ] ifFalse:[k == BackgroundColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   940
                                        bgPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   941
                                        "/ entry value:bgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   942
                                        opaque := true.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   943
                                    ] ifFalse:[k == UnderlineColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   944
                                        ulPaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   945
                                        "/ entry value:ulPaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   946
                                    ] ifFalse:[k == StrikeoutColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   947
                                        strikePaint := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   948
                                        "/ entry value:strikePaint.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
   949
                                    ] ifFalse:[k == EtchColorEmphasis ifTrue:[
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   950
                                        etchColor := value onDevice:device.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
   951
                                        "/ entry value:etchColor.
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   952
                                    ] ifFalse:[k == FontEmphasis ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   953
                                        altFont := value onDevice:device.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   954
                                        "/ entry value:altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   955
                                    ]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   956
                                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   957
                            ]
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   958
                        ]]]]]]]]]]]]]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   959
                    ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   960
                ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   961
            ]
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   962
        ].
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   963
        altFont notNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   964
            font := altFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   965
        ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   966
            bold ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   967
                italic ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   968
                    boldItalicFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   969
                        boldItalicFont := savedFont asBold asItalic onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   970
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   971
                    font := boldItalicFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   972
                ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   973
                    boldFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   974
                        boldFont := savedFont asBold onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   975
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   976
                    font := boldFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   977
                ]
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   978
            ] ifFalse:[
3158
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   979
                italic ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   980
                    italicFont isNil ifTrue:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   981
                        italicFont := savedFont asItalic onDevice:device
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   982
                    ].
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   983
                    font := italicFont.
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   984
                ] ifFalse:[
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   985
                    font := savedFont
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   986
                ]
32762c55c099 class: Text
Claus Gittinger <cg@exept.de>
parents: 3116
diff changeset
   987
            ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   988
        ].
3689
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   989
        subOrSuperscript notNil ifTrue:[
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   990
            font := font asSize:(font size * 3 // 4).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   991
            subOrSuperscript == Superscript ifTrue:[
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   992
                y := y - (font height // 3).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   993
            ] ifFalse:[                
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   994
                y := y + (font height // 3).
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   995
            ].    
b927cd41a141 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 3662
diff changeset
   996
        ].    
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
   997
        aGCOrView basicFont:font.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
   998
        reverse ifTrue:[
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
   999
            aGCOrView paint:bgPaint on:(bgFill := color).
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1000
            opaque := true.
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1001
        ] ifFalse:[
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1002
            aGCOrView paint:color on:(bgFill := bgPaint).
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1003
        ].
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1004
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1005
        endPos := pos + runLen - 1.
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1006
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1007
"/ 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
  1008
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1009
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1010
"/                "/ 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
  1011
"/                x := x + (font width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1012
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1013
"/        ].
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  1014
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1015
        len := font widthOf:string from:pos to:endPos.
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1016
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1017
        (opaque and:[etchColor isNil]) ifTrue:[
4295
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1018
            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
  1019
            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
  1020
        ] ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1021
            etchColor notNil ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1022
                opaque ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1023
                    "/ sigh - must draw the background rectangle;
4243
04aec39165c3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4236
diff changeset
  1024
                    "/ 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
  1025
                    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
  1026
                    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
  1027
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1028
                savedFgPaint := aGCOrView paint.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1029
                aGCOrView paint:etchColor.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1030
                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
  1031
                aGCOrView paint:savedFgPaint.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1032
            ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1033
            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
  1034
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1035
        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
  1036
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1037
        underline ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1038
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1039
            yL := y+1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1040
            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
  1041
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1042
        overline ifTrue:[                               "MB:added v"
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1043
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1044
            yL := y-(font heightOf: string) + 2.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1045
            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
  1046
        ].                                               "MB:added ^"
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1047
        underwave ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1048
            ulPaint notNil ifTrue:[aGCOrView paint:ulPaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1049
            yL := y+1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1050
            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
  1051
        ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1052
        strikeout ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1053
            strikePaint notNil ifTrue:[aGCOrView paint:strikePaint].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1054
            yL := y-(font ascent//2).
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1055
            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
  1056
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1057
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1058
        x := x + len.
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1059
        pos := endPos + 1
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
    ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1061
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1062
    aGCOrView basicFont:savedFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1063
    aGCOrView paint:savedPaint on:savedBgPaint.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1064
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1065
    pos < string size ifTrue:[
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1066
       "/ draw rest
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1067
       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
  1068
    ].
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1069
4295
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1070
    "Created: / 12-05-1996 / 11:14:30 / cg"
c6a0944028ae #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4243
diff changeset
  1071
    "Modified: / 03-02-2017 / 11:45:51 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
!Text methodsFor:'emphasis'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1075
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1076
actionForAll:aBlock
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1077
    "change the actionBlock of all characters. 
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1078
     Some widgets use this like a href if clicked onto the text."
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1079
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1080
    self emphasisAllAdd:(#actionBlock -> aBlock).
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1081
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1082
    "transcript ignores this...
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1083
     Transcript showCR:
2311
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1084
        ((Text string:'hello - click on me') actionForAll:[Transcript flash]) 
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1085
    "
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1086
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1087
    "labels also...
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1088
     Label new
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1089
        label: ((Text string:'hello - click on me') actionForAll:[Transcript flash]);
ffc769e95190 comment/format in: #actionForAll:
Claus Gittinger <cg@exept.de>
parents: 2305
diff changeset
  1090
        open
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1091
    "
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1092
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1093
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
allBold
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
    "make all characters bold"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1097
    self emphasisAllAdd:BoldEmphasis
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1098
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1099
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1100
     (Text string:'hello') allBold
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1101
     Transcript showCR: ('hello' allBold)   
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1102
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1103
406
b4bf187dd46d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 404
diff changeset
  1104
    "Modified: 10.7.1996 / 12:07:51 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1105
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1106
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1107
allBoldOverline
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1108
    "make all characters bold and overline"
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1109
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1110
    self emphasisAllAdd:BoldOverlineEmphasis
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1111
!
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1112
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1113
allItalic
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1114
    "make all characters italic"
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1115
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1116
    self emphasisAllAdd:ItalicEmphasis
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1117
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1118
    "
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1119
     (Text string:'hello') allItalic
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1120
     Transcript showCR: ('hello' allItalic)   
734
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1121
    "
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1122
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1123
    "Modified: 10.7.1996 / 12:07:51 / cg"
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1124
!
ae8cae5d7296 + #allItalic
Claus Gittinger <cg@exept.de>
parents: 708
diff changeset
  1125
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1126
allNonBold
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1127
    "make all characters non-bold"
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1128
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1129
    self emphasisAllRemove:BoldEmphasis
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1130
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1131
    "
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1132
     (Text string:'hello') allBold allNonBold
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1133
    "
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1134
!
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1135
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1136
allOverline
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1137
    "make all characters overline"
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1138
2852
0361a1a06b43 class: Text
Claus Gittinger <cg@exept.de>
parents: 2830
diff changeset
  1139
    self emphasisAllAdd:OverlineEmphasis
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1140
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1141
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1142
     Transcript showCR: ('hello' asText allOverline)   
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1143
    "
2110
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1144
!
54019b63a74f overline & boldOverline
Claus Gittinger <cg@exept.de>
parents: 2056
diff changeset
  1145
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1146
allStrikedOut
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1147
    "strikeOut all characters"
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1148
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1149
    self emphasisAllAdd:StrikeoutEmphasis.
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1150
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1151
    "
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1152
     Transcript showCR: ('hello' allStrikedOut)   
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1153
    "
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1154
!
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1155
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1156
allUnderlined
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1157
    "underline all characters"
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1158
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1159
    self emphasisAllAdd:UnderlineEmphasis.
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1160
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1161
    "
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1162
     Transcript showCR:('hello' allUnderlined) 
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1163
    "
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1164
!
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1165
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1166
allUnderwaved
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1167
    "underwave all characters"
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1168
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1169
    self emphasisAllAdd:UnderwaveEmphasis.
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1170
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1171
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1172
     Transcript showCR:('hello' asText allUnderwaved) 
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1173
    "
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1174
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1175
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1176
backgroundColorizeAllWith:aColor
2552
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1177
    "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
  1178
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1179
    self emphasisAllAdd:(BackgroundColorEmphasis -> aColor).
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1180
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1181
    "
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1182
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1183
        ((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
  1184
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1185
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1186
        ('hello' allBold backgroundColorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1187
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1188
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1189
        ('hello' asText backgroundColorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1190
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1191
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1192
        ('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
  1193
    "
2552
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1194
a891a2d361b8 comment/format in: #backgroundColorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 2496
diff changeset
  1195
    "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
  1196
!
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1197
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1198
colorizeAllWith:aColor
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1199
    "change the color of all characters"
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1200
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1201
    self emphasisAllAdd:(ColorEmphasis -> aColor).
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1202
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1203
    "
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1204
     Transcript showCR:
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1205
        ((Text string:'hello') colorizeAllWith:(Color red)) 
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1206
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1207
     Transcript showCR:
2056
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1208
        ('hello' colorizeAllWith:(Color red)) 
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1209
3a6abb99746f more emphasis
Claus Gittinger <cg@exept.de>
parents: 2051
diff changeset
  1210
     Transcript showCR:
1019
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1211
        ('hello' allBold colorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1212
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1213
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1214
        ('hello' asText colorizeAllWith:(Color red)) 
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1215
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1216
     Transcript showCR:
38ec486889d9 colorizeAllWith: ADDs to the emphasis (used to SET it)
Claus Gittinger <cg@exept.de>
parents: 1000
diff changeset
  1217
        ('hello ' , ('red' allBold colorizeAllWith:(Color red)) , ' world')
999
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1218
    "
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1219
!
c702e6ff076e added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 975
diff changeset
  1220
2312
ab6ab043d9ca comment/format in: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 2311
diff changeset
  1221
colorizeAllWith:fgColor on:bgColor
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1222
    "change the color and bg-color of all characters"
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1223
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1224
    self emphasisAllAdd:(ColorEmphasis -> fgColor).
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1225
    self emphasisAllAdd:(BackgroundColorEmphasis -> bgColor).
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1226
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1227
    "
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1228
     Transcript showCR:
2312
ab6ab043d9ca comment/format in: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 2311
diff changeset
  1229
        ((Text string:'hello') colorizeAllWith:(Color blue) on:(Color yellow)) 
1648
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1230
    "
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1231
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1232
    "Created: / 05-08-2006 / 14:48:13 / cg"
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1233
!
e5bb0f9263a1 colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 1645
diff changeset
  1234
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1235
emphasis
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1236
    "return the emphasis"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1237
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1238
    ^ runs
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1239
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1240
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1241
     (Text string:'hello') allBold emphasis 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1242
     'hello' emphasis   
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1243
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1244
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1245
    "Modified: 11.5.1996 / 14:22:31 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1246
    "Created: 14.5.1996 / 13:59:03 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1247
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1248
1070
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1249
emphasis:emArray
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1250
    1 to:string size do:[:characterIndex |
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1251
        self emphasisAt:characterIndex put:(emArray at:characterIndex)
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1252
    ].
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1253
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1254
    "
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1255
     (Text string:'hello') emphasis:#(italic bold italic bold bold)
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1256
    "
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1257
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1258
    "Modified: / 31.3.1998 / 16:45:14 / cg"
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1259
!
b1d7a3c99d6f +emphasis:
Michael Beyl <mb@exept.de>
parents: 1069
diff changeset
  1260
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1261
emphasisAllAdd:newEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1262
    "add to the emphasis to all characters. return the receiver"
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1263
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1264
    runs isNil ifTrue:[ ^ self ].   "/ just in case: empty
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1265
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1266
    (runs conform:[:runValue | runValue isNil]) ifTrue:[
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1267
        "/ no emphasis - happens often
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1268
        runs atAllPut:newEmphasis.
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1269
    ] ifFalse:[
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1270
        self emphasisFrom:1 to:(self size) add:newEmphasis
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1271
    ].
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1272
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1273
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1274
     (Text string:'hello') allBold 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1275
        emphasisAllAdd:#italic
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1276
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1277
     Transcript show:((Text string:'hello') allBold 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1278
                        emphasisAllAdd:#italic)
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1279
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1280
!
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1281
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1282
emphasisAllRemove:anEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1283
    "remove the emphasis from all characters. return the receiver"
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1284
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1285
    self emphasisFrom:1 to:(self size) remove:anEmphasis
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1286
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1287
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1288
     ((Text string:'hello') emphasizeAllWith:#(bold italic))
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1289
        emphasisAllRemove:#italic
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1290
834
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1291
     ((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
  1292
                                                    with:#italic))
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1293
        emphasisAllRemove:#italic
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1294
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1295
     ((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
  1296
                                                    with:#italic))
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1297
        emphasisAllRemove:#color
08c8f9d9ca0a fixed removal of an association-emphasis by key.
Claus Gittinger <cg@exept.de>
parents: 794
diff changeset
  1298
778
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1299
     Transcript show:(((Text string:'hello') emphasizeAllWith:#(bold italic)) 
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1300
                        emphasisAllRemove:#italic)
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1301
    "
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1302
!
76cff2957cd3 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 777
diff changeset
  1303
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
emphasisAt:characterIndex
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
    "return the emphasis at some index"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
    ^ runs at:characterIndex
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
     (Text string:'hello') allBold emphasisAt:2 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
    "Modified: 11.5.1996 / 14:22:31 / cg"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1316
emphasisAt:characterIndex add:newEmphasis
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1317
    "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
  1318
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1319
    |e prevE|
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1320
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1321
    e := runs at:characterIndex.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1322
    e := self class addEmphasis:newEmphasis to:e.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1323
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1324
    "/ 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
  1325
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1326
    characterIndex > 1 ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1327
        prevE := runs at:characterIndex-1.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1328
        e = prevE ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1329
            e := prevE
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1330
        ]
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1331
    ].
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1332
    runs at:characterIndex put:e.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1333
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1334
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1335
     (Text string:'hello') allBold emphasisAt:2 add:#italic
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1336
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1337
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1338
    "Created: / 14-05-1996 / 16:48:39 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1339
    "Modified: / 31-03-1998 / 15:29:14 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1340
    "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
  1341
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1342
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1343
emphasisAt:characterIndex put:emphasis
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1344
    "change the emphasis at some index. return the receiver"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1345
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1346
    |e prevE|
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1347
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1348
    e := emphasis.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1349
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1350
    "/ 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
  1351
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1352
    characterIndex > 1 ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1353
        prevE := runs at:characterIndex-1.
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1354
        emphasis = prevE ifTrue:[
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1355
            e := prevE
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1356
        ]
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1357
    ].
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1358
    runs at:characterIndex put:e.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1359
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1360
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1361
     (Text string:'hello') allBold emphasisAt:2 put:#italic
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1362
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1363
4319
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1364
    "Modified: / 31-03-1998 / 16:45:14 / cg"
213f64075f10 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4295
diff changeset
  1365
    "Modified (comment): / 13-02-2017 / 20:32:03 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1366
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1367
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1368
emphasisAt:characterIndex remove:emphasisToRemove
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1369
    "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
  1370
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1371
    |e|
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1372
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1373
    e := runs at:characterIndex.
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1374
    e := self class removeEmphasis:emphasisToRemove from:e.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1375
    runs at:characterIndex put:e.
336
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1376
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1377
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1378
     (Text string:'hello') 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1379
        allBold emphasisAt:2 remove:#bold
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1380
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1381
     (Text string:'hello' emphasis:#(bold italic)) 
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1382
        emphasisAt:2 remove:#bold
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1383
    "
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1384
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1385
    "Created: 14.5.1996 / 16:48:39 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1386
    "Modified: 14.5.1996 / 17:25:04 / cg"
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1387
!
5fd5fcc38eaa helpers to add/remove emphasis
Claus Gittinger <cg@exept.de>
parents: 335
diff changeset
  1388
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1389
emphasisCollection
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1390
    "return the emphasis"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1391
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1392
    ^ runs
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1393
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1394
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1395
     (Text string:'hello') allBold emphasis 
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1396
     'hello' emphasis   
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1397
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1398
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1399
    "Created: 14.5.1996 / 13:59:03 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1400
    "Modified: 14.5.1996 / 15:02:11 / cg"
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1401
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1402
777
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1403
emphasisFrom:start to:stop add:newEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1404
    "add to the emphasis within some range. return the receiver"
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1405
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1406
    start to:stop do:[:characterIndex |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1407
        self emphasisAt:characterIndex add:newEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1408
    ].
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1409
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1410
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1411
     (Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1412
        emphasisFrom:2 to:4 add:#italic
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1413
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1414
     Transcript showCR:((Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1415
                            emphasisFrom:2 to:4 add:#italic)
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1416
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1417
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1418
!
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1419
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1420
emphasisFrom:start to:stop remove:anEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1421
    "remove from the emphasis within some range. return the receiver"
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1422
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1423
    start to:stop do:[:characterIndex |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1424
        self emphasisAt:characterIndex remove:anEmphasis
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1425
    ].
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1426
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1427
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1428
     (Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1429
        emphasisFrom:2 to:4 remove:#bold
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1430
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1431
     Transcript showCR:((Text string:'hello') allBold 
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1432
                            emphasisFrom:2 to:4 remove:#bold)
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1433
    "
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1434
!
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1435
2240
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1436
emphasiseFrom:start to:stop with:newEmphasis
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1437
    "set to the emphasis within some range. return the receiver"
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1438
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1439
    start to:stop do:[:characterIndex |
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1440
        self emphasisAt:characterIndex put:newEmphasis
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1441
    ].
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1442
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1443
    "
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1444
     (Text string:'hello') allBold 
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1445
        emphasiseFrom:2 to:4 with:#italic
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1446
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1447
     Transcript showCR:((Text string:'hello') allBold 
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1448
                            emphasiseFrom:2 to:4 with:#italic)
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1449
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1450
    "
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1451
!
ee1b89564617 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2233
diff changeset
  1452
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
emphasizeAllWith:emphasis
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
    "change the emphasis of all characters"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1456
    runs := RunArray new:(string size) withAll:emphasis.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
     (Text string:'hello') allBold emphasizeAllWith:#italic 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
    "Modified: 11.5.1996 / 14:22:52 / cg"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1465
emphasizeFrom:start count:count with:emphasis
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1466
    "change the emphasis of a range of characters, given startIndex and count."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1467
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1468
    self emphasizeFrom:start to:(start+count-1) with:emphasis
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1469
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1470
    "
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1471
     (Text string:'hello world') 
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1472
        emphasizeFrom:1 count:5 with:#bold;
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1473
        emphasizeFrom:7 count:5 with:#italic
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1474
    "
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1475
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1476
    "Modified: 11.5.1996 / 14:30:02 / cg"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1477
    "Created: 16.5.1996 / 10:52:27 / cg"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1478
!
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1479
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
emphasizeFrom:start to:stop with:emphasis
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
    "change the emphasis of a range of characters"
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
3010
0137a29fee34 class: Text
Claus Gittinger <cg@exept.de>
parents: 3009
diff changeset
  1483
"/    |newRuns|
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1485
    runs from:start to:stop put:emphasis.
626
3485b60b6a70 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 621
diff changeset
  1486
777
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1487
"/    newRuns := RunArray new.
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
"/    "/ for now - a q&d hack
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1490
"/    1 to:start-1 do:[:i |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1491
"/        newRuns add:(runs at:i).
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
"/    newRuns add:emphasis withOccurrences:(stop - start + 1).
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1494
"/    stop+1 to:string size do:[:i |
ce839c02dfb6 more emphasis stuff
Claus Gittinger <cg@exept.de>
parents: 762
diff changeset
  1495
"/        newRuns add:(runs at:i)
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
"/    runs := newRuns
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1498
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
     (Text string:'hello world') 
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
        emphasizeFrom:1 to:5 with:#bold;
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
        emphasizeFrom:7 to:11 with:#italic
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1505
    "Modified: / 7.4.1998 / 08:52:18 / cg"
347
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1506
!
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1507
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1508
emphasizeFrom:start with:emphasis
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1509
    "change the emphasis of some characters upTo the end"
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1510
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1511
    self emphasizeFrom:start to:(self size) with:emphasis
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1512
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1513
    "
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1514
     (Text string:'hello world') 
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1515
        emphasizeFrom:1 count:5 with:#bold;
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1516
        emphasizeFrom:7 with:#italic
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1517
    "
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1518
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1519
    "Modified: 11.5.1996 / 14:30:02 / cg"
6f50e1be3ba4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 345
diff changeset
  1520
    "Created: 17.5.1996 / 15:15:32 / cg"
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1521
!
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1522
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1523
strikeoutAll
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1524
    "strikeout all characters"
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1525
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1526
    self emphasisAllAdd:StrikeoutEmphasis.
1020
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1527
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1528
    "
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1529
     Transcript showCR:
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1530
        ('hello' asText strikeoutAll) 
a6304ef6b18a more: allUnderlined; backgroundColorize and strikeoutAll
Claus Gittinger <cg@exept.de>
parents: 1019
diff changeset
  1531
    "
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1532
!
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1533
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1534
withoutAnyColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1535
    "return a copy with color emphasis removed (fg and bg)"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1536
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1537
    ^ (self withoutEmphasis:BackgroundColorEmphasis) 
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1538
            withoutEmphasis:ColorEmphasis
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1539
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1540
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1541
withoutBackgroundColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1542
    "return a copy with bg-color emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1543
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1544
    ^ self withoutEmphasis:BackgroundColorEmphasis
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1545
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1546
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1547
withoutEmphasis
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1548
    "return my underlying plain string"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1549
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1550
    ^ string
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1551
!
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1552
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1553
withoutEmphasis:emphasisToRemove 
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1554
    "return a copy with a particular emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1555
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1556
    |newText anyEmphasis|
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1557
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1558
    self hasChangeOfEmphasis ifTrue:[
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1559
        newText := self copyFrom:1 to:self size.
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1560
        anyEmphasis := false.
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1561
        1 to:newText size do:[:col |
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1562
            |em newem|
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1563
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1564
            em := (newText emphasis) at:col.
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1565
            em notNil ifTrue:[
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1566
                newem := Text removeEmphasis:emphasisToRemove from:em.
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1567
                newem ~~ em ifTrue:[
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1568
                    newText emphasisAt:col put:newem.
2323
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1569
                ].
f9c28c6c7295 withoutEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2322
diff changeset
  1570
                newem notNil ifTrue:[ anyEmphasis := true ].
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1571
            ].
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1572
        ].
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1573
        anyEmphasis ifFalse:[^ newText string].
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1574
        ^ newText
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1575
    ].
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1576
    ^ self
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1577
!
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1578
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1579
withoutForegroundColorEmphasis
4052
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1580
    "return a copy with fg-color emphasis removed"
a4fe023bec06 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
  1581
2322
3dc982ce8487 emphasis handling cleanup
Claus Gittinger <cg@exept.de>
parents: 2312
diff changeset
  1582
    ^ self withoutEmphasis:ColorEmphasis
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
1757
65c6d9b60ca4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1648
diff changeset
  1585
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
!Text methodsFor:'printing & storing'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1588
displayOn:aGCOrStream
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1589
    "append a printed representation from which the receiver can be reconstructed
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1590
     to aStream."
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1591
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1592
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
4351
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1593
    "/ old ST80 means: draw-yourself on a GC.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1594
    aGCOrStream isStream ifFalse:[
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1595
        ^ super displayOn:aGCOrStream.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1596
    ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1597
4351
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1598
    aGCOrStream nextPutAll:'(Text string:'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1599
    string storeOn:aGCOrStream.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1600
    aGCOrStream nextPutAll:' runs:'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1601
    runs displayOn:aGCOrStream.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1602
    aGCOrStream nextPutAll:')'.
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1603
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1604
    "Created: / 11-05-1996 / 14:27:09 / cg"
3db58bbbb5d5 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  1605
    "Modified: / 22-02-2017 / 16:58:18 / cg"
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1606
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1607
3273
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1608
displayString
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1609
    "return a string used when displaying the receiver in a view."
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1610
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1611
    ^ self.
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1612
!
7cf94988dc15 class: Text
Claus Gittinger <cg@exept.de>
parents: 3248
diff changeset
  1613
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1614
printOn:aStream
3784
25519ee4239d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3689
diff changeset
  1615
    "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
  1616
     Notice, that some streams simply ignore the emphasis"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1617
2051
d55c088e8bfd Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 2016
diff changeset
  1618
    aStream nextPutAllText:self
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1620
    "
407
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1621
     Transcript showCR:'hello world'.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1622
     Transcript showCR:'hello world' asText allBold.
a6e616d1d1bc better #printOn:
Claus Gittinger <cg@exept.de>
parents: 406
diff changeset
  1623
     Transcript showCR:('hello world' asText emphasizeAllWith:#italic).
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1624
    "
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
409
7e8c2457d5f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 408
diff changeset
  1626
    "Modified: 12.7.1996 / 10:15:47 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1629
storeOn:aStream
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1630
    "append a printed representation from which the receiver can be reconstructed
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1631
     to aStream."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1632
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1633
    aStream nextPutAll:'(Text string:'.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1634
    string storeOn:aStream.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1635
    aStream nextPutAll:' runs:'.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1636
    runs storeOn:aStream.
4334
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1637
    aStream nextPut:$).
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1638
4334
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1639
    "Created: / 11-05-1996 / 14:27:09 / cg"
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1640
    "Modified: / 16-05-1996 / 11:23:32 / cg"
95bb043e3339 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4319
diff changeset
  1641
    "Modified: / 17-02-2017 / 10:36:03 / stefan"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1642
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
1200
fefe87f822bc method category rename
Claus Gittinger <cg@exept.de>
parents: 1173
diff changeset
  1644
!Text methodsFor:'private-accessing'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1646
emphasisCollection:emphasisCollection
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1647
    "set the string and emphasis collection.
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1648
     The emphasis collection contains per-character information."
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1649
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1650
    runs := emphasisCollection.
631
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1651
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1652
    "Created: / 7.4.1998 / 08:52:03 / cg"
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1653
!
3423da7cf851 added #emphasisCollection:
Claus Gittinger <cg@exept.de>
parents: 626
diff changeset
  1654
2959
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1655
runs
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1656
    ^ runs
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1657
!
248125161a88 class: Text
Claus Gittinger <cg@exept.de>
parents: 2868
diff changeset
  1658
3009
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1659
setRuns:anArrayOrRunArray
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1660
    runs := anArrayOrRunArray.
3009
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1661
!
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1662
32460e623a13 class: Text
Claus Gittinger <cg@exept.de>
parents: 2959
diff changeset
  1663
setString:aString setRuns:anArrayOrRunArray
872
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1664
    string := aString.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1665
    runs := anArrayOrRunArray.
872
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1666
!
2ca6864d13bb new private accessor (for subclass compatibility)
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  1667
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
string:aString emphasis:emphasis
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1669
    "set the string and emphasis. The emphasis is applied to all characters."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1670
428
3cdcd0597bf0 bug fix: implicit set string to String not Text
ca
parents: 410
diff changeset
  1671
    string := aString string.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1672
    runs   := RunArray new:string size withAll:emphasis.
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
     |t|
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1677
     t := Text new string:'hello' emphasis:#bold.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1678
     t emphasisAt:2.
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1679
    "
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1680
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1681
    "Modified: 16.5.1996 / 11:24:03 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1682
!
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1683
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1684
string:aString emphasisCollection:emphasisCollection
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1685
    "set the string and emphasis collection.
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1686
     The emphasis collection contains per-character information."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1687
428
3cdcd0597bf0 bug fix: implicit set string to String not Text
ca
parents: 410
diff changeset
  1688
    string := aString string.
1160
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1689
    string size == 0 ifTrue:[
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1690
        runs := RunArray new.
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1691
    ] ifFalse:[
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1692
        runs := emphasisCollection asRunArray
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  1693
    ].
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1694
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1695
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1696
     |t|
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1697
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1698
     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
  1699
     t emphasisAt:2.
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1700
    "
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1701
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1702
    "Created: 14.5.1996 / 14:03:29 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1703
    "Modified: 16.5.1996 / 11:24:21 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
!Text methodsFor:'queries'!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
4183
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1708
bitsPerCharacter
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1709
    "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
  1710
     (i.e. is it a regular String or a TwoByteString)"
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1711
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1712
    ^ string bitsPerCharacter.
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1713
!
8e508449390d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4082
diff changeset
  1714
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1715
emphasisAtPoint:aPoint on:aGCOrView
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1716
    "return the emphasis at a given point, or nil if there is none"
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1717
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1718
    |pointX savedFont boldFont italicFont bold italic wasItalic pos font len gcDevice posX boldItalicFont|
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1719
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1720
    gcDevice := aGCOrView graphicsDevice.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1721
    savedFont := aGCOrView basicFont onDevice:gcDevice.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1722
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1723
    pos := 1.
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1724
    posX := 0.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1725
    pointX := aPoint x.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1726
    len := 0.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1727
    italic := false.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1728
    runs runsDo:[:runLen :emphasis |
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1729
        wasItalic := italic.
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1730
        emphasis isSymbol ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1731
            bold := emphasis == BoldEmphasis 
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1732
                        or:[emphasis == BoldUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1733
                        or:[emphasis == BoldOverlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1734
                        or:[emphasis == BoldUnderwaveEmphasis]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1735
            italic := emphasis == ItalicEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1736
                        or:[emphasis == ItalicUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1737
                        or:[emphasis == ItalicUnderwaveEmphasis]].
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1738
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1739
            bold := italic := false.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1740
            (emphasis isNil or:[emphasis isAssociation]) ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1741
                emphasis do:[:eachEmphasisSymbol|
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1742
                    eachEmphasisSymbol == BoldEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1743
                    ifFalse:[eachEmphasisSymbol == ItalicEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1744
                    ifFalse:[eachEmphasisSymbol == BoldUnderlineEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1745
                    ifFalse:[eachEmphasisSymbol == BoldUnderwaveEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1746
                    ifFalse:[eachEmphasisSymbol == ItalicUnderlineEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1747
                    ifFalse:[eachEmphasisSymbol == ItalicUnderwaveEmphasis ifTrue:[italic := true]]]]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1748
                ].
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1749
            ]
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1750
        ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1751
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1752
        bold ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1753
            italic ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1754
                boldItalicFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1755
                    boldItalicFont := savedFont asBold asItalic onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1756
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1757
                font := boldItalicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1758
            ] ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1759
                boldFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1760
                    boldFont := savedFont asBold onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1761
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1762
                font := boldFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1763
            ]
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1764
        ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1765
            italic ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1766
                italicFont isNil ifTrue:[
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  1767
                    italicFont := savedFont asItalic onDevice:gcDevice
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1768
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1769
                font := italicFont
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1770
            ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1771
                font := savedFont
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1772
            ]
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1773
        ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1774
"/ 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
  1775
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1776
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1777
"/                "/ 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
  1778
"/                l := l + (f width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1779
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1780
"/        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1781
        len := font widthOf:string from:pos to:(pos + runLen - 1).
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1782
        (pointX between:posX and:posX + len) ifTrue:[
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1783
            ^ emphasis
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1784
        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1785
        pos := pos + runLen.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1786
        posX := posX + len.
2128
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1787
    ].
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1788
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1789
    ^ nil
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1790
!
Stefan Vogel <sv@exept.de>
parents: 2110
diff changeset
  1791
1401
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1792
encoding
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1793
    ^ string encoding
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1794
!
450cdbacff60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1200
diff changeset
  1795
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1796
hasChangeOfEmphasis
2830
b69f6dc901f0 comment/format in: #hasChangeOfEmphasis
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
  1797
    "return true, if the receiver contains non-empty emphasis information
b69f6dc901f0 comment/format in: #hasChangeOfEmphasis
Claus Gittinger <cg@exept.de>
parents: 2734
diff changeset
  1798
     i.e. any non-normal (=emphasized) characters"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1799
3472
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1800
    ^ runs notEmptyOrNil
a61d50c15405 class: Text
Claus Gittinger <cg@exept.de>
parents: 3325
diff changeset
  1801
       and:[ runs contains:[:e | e notNil] ]
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1802
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1803
    "Created: 11.5.1996 / 14:03:19 / cg"
335
4adf1b6b4063 concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 316
diff changeset
  1804
    "Modified: 14.5.1996 / 15:51:01 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1805
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1806
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1807
hasEmphasis: emphasis
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1808
    "return true, if the receiver contains given emphasis"
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1809
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1810
    "HACK!!!!!!"
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1811
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1812
    | emphasisArray  |
2675
ba4427ed6582 changed: #hasEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  1813
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1814
    (emphasis isSymbol or:[emphasis isAssociation]) ifTrue:[
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1815
        emphasisArray := Array with: emphasis
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1816
    ] ifFalse:[
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1817
        emphasisArray := emphasis.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1818
    ].
2675
ba4427ed6582 changed: #hasEmphasis:
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
  1819
    emphasisArray isNil ifTrue:[^false].
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1820
    
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1821
    runs do:[:runEmph|    
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1822
        emphasisArray do:[:searchEmph|
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1823
            (runEmph = searchEmph 
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1824
            or: [runEmph isCollection 
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1825
                 and:[runEmph isSymbol not 
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1826
                 and:[runEmph includes: searchEmph]]]
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1827
            ) ifTrue:[
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1828
                ^ true
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1829
            ]                    
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1830
        ]
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1831
    ].
3116
4e7534b4d5f1 class: Text
Claus Gittinger <cg@exept.de>
parents: 3010
diff changeset
  1832
    ^ false
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1833
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1834
    "
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1835
        'Hello' asText allBold hasEmphasis: #bold.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1836
        'Hello' asText allBold allUnderlined hasEmphasis: #bold.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1837
        'Hello' asText allBold allUnderlined hasEmphasis: #italic.                              
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1838
        ('Hello' asText allBold allUnderlined , ' World' asText allItalic) hasEmphasis: #italic.
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1839
    "
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1840
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1841
    "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
  1842
    "Modified (format): / 18-11-2011 / 14:55:10 / cg"
2578
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1843
!
0b44903b0406 Added Text>>hasEmphasis:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2552
diff changeset
  1844
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1845
heightOn:aGC
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1846
    "return the number of device units, required on aGC's device"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1847
4019
9d2225af7229 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4015
diff changeset
  1848
    ^ aGC deviceFont heightOf:string
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1849
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1850
    "Created: 12.5.1996 / 11:02:03 / cg"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1851
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1852
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1853
indexOf:aCharacter startingAt:index
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1854
    "search aCharacters index in the underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1855
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1856
    ^ string indexOf:aCharacter startingAt:index
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1857
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1858
    "Created: 11.5.1996 / 13:58:56 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1859
    "Modified: 16.5.1996 / 11:25:12 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1860
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1861
3644
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1862
isPlainString
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1863
    "return true, if the receiver is a plain string - without attributes;
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1864
     false is returned here."
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1865
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1866
    ^ false
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1867
!
baa4ec9a3b28 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 3598
diff changeset
  1868
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1869
isText
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1870
    "return true if this is a Text object - always true here"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1871
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1872
    ^ true
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1873
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1874
    "Created: 12.5.1996 / 10:56:24 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1875
    "Modified: 16.5.1996 / 11:25:29 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1876
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1877
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1878
occurrencesOf:aCharacter
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1879
    "count & return the number of occurrences of aCharacter in the 
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1880
     underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1881
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1882
    ^ string occurrencesOf:aCharacter
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1883
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1884
    "Created: 11.5.1996 / 13:58:46 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1885
    "Modified: 16.5.1996 / 11:25:51 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1886
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1887
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
size
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1889
    "return the number of characters in the underlying string"
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1890
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
    ^ string size
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1892
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
    "Created: 11.5.1996 / 14:25:15 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1894
    "Modified: 16.5.1996 / 11:26:08 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1895
!
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
string
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1898
    "return the receiver without any emphasis information
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1899
     i.e. the underlying string."
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1900
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1901
    ^ string
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1902
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
    "Created: 11.5.1996 / 13:58:38 / cg"
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1904
    "Modified: 16.5.1996 / 11:26:30 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1905
!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1906
1069
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1907
widthFrom:startIndex to:endIndex on:aGC
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1908
    "return the number of device units, required on aGC's device"
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1909
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1910
    ^ (self copyFrom:startIndex to:endIndex) widthOn:aGC
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1911
!
069382332bdb +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 1068
diff changeset
  1912
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1913
widthOn:aGC
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1914
    "return the number of device units, required on aGC's device"
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1915
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1916
    |savedFont boldFont italicFont bold italic wasItalic pos font len gcDevice boldItalicFont|
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1917
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  1918
    gcDevice := aGC graphicsDevice.
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  1919
    savedFont := aGC basicFont onDevice:gcDevice.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1920
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1921
    pos := 1.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1922
    len := 0.
975
4a2048f291eb care for some spacing, when going from italic to non-italic
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
  1923
    italic := false.
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1924
    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
  1925
        wasItalic := italic.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1926
        emphasis isSymbol ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1927
            bold := emphasis == BoldEmphasis 
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1928
                        or:[emphasis == BoldUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1929
                        or:[emphasis == BoldOverlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1930
                        or:[emphasis == BoldUnderwaveEmphasis]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1931
            italic := emphasis == ItalicEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1932
                        or:[emphasis == ItalicUnderlineEmphasis
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1933
                        or:[emphasis == ItalicUnderwaveEmphasis]].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1934
        ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1935
            bold := italic := false.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1936
            (emphasis isNil or:[emphasis isAssociation]) ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1937
                emphasis do:[:eachEmphasisSymbol|
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1938
                    eachEmphasisSymbol == BoldEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1939
                    ifFalse:[eachEmphasisSymbol == ItalicEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1940
                    ifFalse:[eachEmphasisSymbol == BoldUnderlineEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1941
                    ifFalse:[eachEmphasisSymbol == BoldUnderwaveEmphasis ifTrue:[bold := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1942
                    ifFalse:[eachEmphasisSymbol == ItalicUnderlineEmphasis ifTrue:[italic := true]
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1943
                    ifFalse:[eachEmphasisSymbol == ItalicUnderwaveEmphasis ifTrue:[italic := true]]]]]].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1944
                ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1945
            ]
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1946
        ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1947
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1948
        bold ifTrue:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1949
            italic ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1950
                boldItalicFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1951
                    boldItalicFont := savedFont asBold asItalic onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1952
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1953
                font := boldItalicFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1954
            ] ifFalse:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1955
                boldFont isNil ifTrue:[
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1956
                    boldFont := savedFont asBold onDevice:gcDevice
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1957
                ].
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1958
                font := boldFont.
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1959
            ]
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1960
        ] ifFalse:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1961
            italic ifTrue:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1962
                italicFont isNil ifTrue:[
3790
601a8b4351e5 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3784
diff changeset
  1963
                    italicFont := savedFont asItalic onDevice:gcDevice
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1964
                ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1965
                font := italicFont
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1966
            ] ifFalse:[
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1967
                font := savedFont
307
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
        ].
2233
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1970
"/ 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
  1971
"/        wasItalic ~~ italic ifTrue:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1972
"/            italic ifFalse:[
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1973
"/                "/ 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
  1974
"/                l := l + (f width " // 2" )
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1975
"/            ].
04205abedbff space insertion at italic-nonItalic boundaries removed.
Claus Gittinger <cg@exept.de>
parents: 2181
diff changeset
  1976
"/        ].
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1977
        len := len + (font widthOf:string from:pos to:(pos + runLen - 1)).
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1978
        pos := pos + runLen
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1979
    ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1980
4082
bf789bbea096 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4052
diff changeset
  1981
    ^ len
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1982
404
14cf34141532 use #graphicsDevice instead of #device.
Claus Gittinger <cg@exept.de>
parents: 395
diff changeset
  1983
    "Modified: 5.7.1996 / 17:54:58 / cg"
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1984
! !
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1985
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1986
!Text methodsFor:'replacing'!
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1987
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1988
replaceFrom:start to:stop with:aCollection startingAt:startIndex
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1989
    "replace a range of characters, from another string or text object.
607
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1990
     The corresponding characters' emphasis information is also copied.
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  1991
     Return the receiver."
343
01f88d90c385 commentary
Claus Gittinger <cg@exept.de>
parents: 339
diff changeset
  1992
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  1993
    |idx maxCharacter|
1402
2fe462e2fe8e care for text with twobyte strings
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
  1994
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  1995
    aCollection isString ifTrue:[
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  1996
        aCollection bitsPerCharacter > string bitsPerCharacter ifTrue:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  1997
            "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
  1998
            string := aCollection string species fromString:string.
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  1999
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2000
        aCollection hasChangeOfEmphasis ifTrue:[
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2001
            string replaceFrom:start to:stop with:aCollection startingAt:startIndex.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2002
            idx := startIndex.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2003
            start to:stop do:[:col |
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2004
                self emphasisAt:col put:(aCollection emphasisAt:idx).
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2005
                idx := idx + 1.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2006
            ].
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2007
            ^ self.
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2008
        ]
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2009
    ] ifFalse:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2010
        "aCollection is an arbitrary SequenceableCollection"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2011
        maxCharacter := $0.    "some 8-bit character"
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2012
        aCollection do:[:eachCharacter |
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2013
            maxCharacter := maxCharacter max:eachCharacter
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2014
        ].
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2015
        maxCharacter bitsPerCharacter > string bitsPerCharacter ifTrue:[
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2016
            "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
  2017
            string := maxCharacter stringSpecies fromString:string.
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2018
        ].
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2019
    ].
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2020
        
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2021
    string replaceFrom:start to:stop with:aCollection startingAt:startIndex.
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2022
    self emphasizeFrom:start to:stop with:nil.
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2023
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2024
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2025
     ((Text string:'hello') allBold emphasisAt:2 put:#italic)
2181
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2026
        replaceFrom:1 to:3 with:'HEL' startingAt:1
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2027
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2028
     ((Text string:'hello') allBold emphasisAt:2 put:#italic)
86122f38fc09 Fix #replaceFrom:to:with:startingAt:
Stefan Vogel <sv@exept.de>
parents: 2128
diff changeset
  2029
        replaceFrom:1 to:3 with:#($H $E $L) startingAt:1
307
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2030
    "
8d58cb6e618b fixes & addons
Claus Gittinger <cg@exept.de>
parents: 304
diff changeset
  2031
607
bf216b414680 comment
Claus Gittinger <cg@exept.de>
parents: 591
diff changeset
  2032
    "Modified: / 28.1.1998 / 16:50:06 / cg"
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
! !
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
454
ffc79ebcbb20 oops - copyFrom:to: clobbered the emphasis
Claus Gittinger <cg@exept.de>
parents: 450
diff changeset
  2035
!Text class methodsFor:'documentation'!
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2037
version
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2038
    ^ '$Header$'
2305
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2039
!
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2040
2108d674c8b2 comment/format in: #writeStream
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
  2041
version_CVS
3598
04be25181a2e class: Text
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  2042
    ^ '$Header$'
304
dee14fa0f2f7 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
! !
1160
a68cecd42784 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1077
diff changeset
  2044
2867
daa1394cdf05 class: Text
Stefan Vogel <sv@exept.de>
parents: 2852
diff changeset
  2045
314
42526a763add checkin from browser
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  2046
Text initialize!