TextCollector.st
author Claus Gittinger <cg@exept.de>
Sat, 24 Mar 2012 20:04:56 +0100
changeset 4411 24a09ea995e2
parent 4410 e164f4c1fda4
child 4428 641c1d7198cf
permissions -rw-r--r--
changed: #show:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     1
"
5
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
     3
	      All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     4
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
"
2259
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
    12
"{ Package: 'stx:libwidg' }"
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
    13
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    14
EditTextView subclass:#TextCollector
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    15
	instanceVariableNames:'entryStream lineLimit destroyAction outstandingLines
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    16
		outstandingLine flushBlock flushPending inFlush collecting
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
    17
		timeDelay access currentEmphasis alwaysAppendAtEnd collectSize
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
    18
		autoRaise'
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
    19
	classVariableNames:'TranscriptQuerySignal DebugSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
    20
		TraceSendersOfMessagePattern'
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    21
	poolDictionaries:''
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    22
	category:'Views-Text'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    23
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    24
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    25
!TextCollector class methodsFor:'documentation'!
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    26
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    27
copyright
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    28
"
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    29
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
    30
	      All Rights Reserved
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    31
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    32
 This software is furnished under a license and may be used
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    33
 only in accordance with the terms of that license and with the
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    35
 be provided or otherwise made available to, or used by, any
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    36
 other person.  No title to or ownership of the software is
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    37
 hereby transferred.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    38
"
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    39
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    40
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    41
documentation
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    42
"
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    43
    a view for editable text, which also understands some stream messages.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    44
    Instances of this view can take the place of a stream and display the 
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    45
    received text.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    46
    Its main use in the system is the Transcript, but it can also be used for
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
    47
    things like trace-windows, errorLogs etc.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    48
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    49
    If collecting is turned on, a textcollector will not immediately display 
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    50
    entered text, but wait for some short time (timeDelay) and collect incoming 
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    51
    data - finally updating the whole chunk in one piece. 
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    52
    This helps slow display devices, which would otherwise scroll a lot. 
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    53
    (on fast displays this is less of a problem).
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    54
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    55
    The total number of lines kept is controlled by lineLimit, if more lines 
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    56
    than this limit are added at the bottom, the textcollector will forget lines 
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    57
    at the top. 
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    58
    You can set linelimit to nil (i.e. no limit), but you may need a lot 
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    59
    of memory then ...
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    60
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    61
    [StyleSheet paramters (transcript only):]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    62
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    63
        transcriptForegroundColor       defaults to textForegroundColor
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    64
        transcriptBackgroundColor'      defaults to textBackgroundColor.
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    65
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    66
        transcriptCursorForegroundColor
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    67
        transcriptCursorBackgroundColor
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    68
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    69
    [author:]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    70
        Claus Gittinger
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    71
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    72
    [see also:]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    73
        CodeView EditTextView
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    74
        ActorStream
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    75
"
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    76
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    77
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    78
!TextCollector class methodsFor:'instance creation'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    79
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    80
initialize
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    81
    TranscriptQuerySignal := QuerySignal new.
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    82
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    83
!
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    84
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    85
newTranscript
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
    86
    "create and open a new transcript.
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
    87
     This is a leftOver method from times were the Launcher & Transcript
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
    88
     were two different views. It is no longer recommended."
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
    89
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    90
    ^ self newTranscript:#Transcript
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    91
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    92
    "
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    93
     TextCollector newTranscript.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    94
     Transcript lineLimit:3000.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    95
    "
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    96
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    97
    "Modified: 17.2.1997 / 18:20:27 / cg"
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    98
!
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    99
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   100
newTranscript:name
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   101
    "create and open a new transcript.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   102
     This is a leftOver method from times were the Launcher & Transcript
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   103
     were two different views. It is no longer recommended."
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   104
1900
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   105
    |topView transcript defSz f v lines cols|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   106
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   107
    topView := StandardSystemView label:name "minExtent:(100 @ 100)".
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   108
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   109
    v := HVScrollableView for:self miniScrollerH:true miniScrollerV:false in:topView.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   110
    v origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   111
    transcript := v scrolledView.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   112
    "transcript partialLines:false."
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   113
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   114
    f := transcript font.
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   115
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   116
    "
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   117
     should add the height of the frame & scrollbars to be exact ...
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   118
    "
1900
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   119
    defSz := self defaultTranscriptSize.
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   120
    cols := defSz x.
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   121
    lines := defSz y.
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   122
    topView extent:(((f widthOf:'x') * cols) @ (f height * lines)).
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   123
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   124
    transcript beTranscript:name.
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   125
80
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   126
    "
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   127
     run it at a slightly higher prio, to allow for
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   128
     delayed buffered updates to be performed
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   129
    "
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   130
    topView openWithPriority:(Processor userSchedulingPriority + 1).
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
   131
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   132
    ^ transcript
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   133
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   134
    "
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   135
     TextCollector newTranscript:#T2.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   136
     T2 showCR:'Hello world'.
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   137
    "
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   138
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   139
    "Modified: 17.2.1997 / 18:20:27 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   140
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   141
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   142
!TextCollector class methodsFor:'Signal constants'!
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   143
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   144
transcriptQuerySignal
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   145
    ^ TranscriptQuerySignal
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   146
! !
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   147
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   148
!TextCollector class methodsFor:'debugging'!
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   149
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   150
debugSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   151
    ^ DebugSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   152
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   153
    "Created: / 02-02-2012 / 12:05:27 / cg"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   154
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   155
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   156
debugSendersOfMessagePattern:aGLOBMatchPattern
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   157
    "ever want to know, who sends a particular text-message to the transcript ?
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   158
     Call this with a match string and get a halt, when a matching text is sent to the transcript"
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   159
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   160
    DebugSendersOfMessagePattern := 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   161
        (aGLOBMatchPattern isEmpty 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   162
            ifTrue:[ nil ] 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   163
            ifFalse:[ aGLOBMatchPattern ])
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   164
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   165
    "
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   166
     self debugSendersOfMessagePattern:'no such*'
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   167
     self debugSendersOfMessagePattern:'remove*'
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   168
     self debugSendersOfMessagePattern:nil.
4284
3e487b994a8b changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
   169
     self debugSendersOfMessagePattern:'*'.
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   170
    "
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   171
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   172
    "Modified: / 02-02-2012 / 12:07:11 / cg"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   173
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   174
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   175
traceSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   176
    ^ TraceSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   177
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   178
    "Created: / 02-02-2012 / 12:05:32 / cg"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   179
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   180
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   181
traceSendersOfMessagePattern:aGLOBMatchPattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   182
    "ever want to know, who sends a particular text-message to the transcript ?
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   183
     Call this with a match string and get a trace, when a matching text is sent to the transcript"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   184
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   185
    TraceSendersOfMessagePattern := 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   186
        (aGLOBMatchPattern isEmpty 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   187
            ifTrue:[ nil ] 
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   188
            ifFalse:[ aGLOBMatchPattern ])
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   189
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   190
    "
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   191
     self traceSendersOfMessagePattern:'removed unreached*'
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   192
     self traceSendersOfMessagePattern:nil.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   193
     self traceSendersOfMessagePattern:'*'.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   194
    "
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   195
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   196
    "Created: / 02-02-2012 / 11:59:22 / cg"
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   197
! !
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   198
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   199
!TextCollector class methodsFor:'defaults'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   200
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   201
defaultCollectSize
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   202
    "the number of lines buffered for delayed update"
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   203
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   204
    ^ 50
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   205
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   206
    "Modified: / 27.7.1998 / 16:14:51 / cg"
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   207
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   208
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   209
defaultLineLimit
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   210
    "the number of lines remembered by default"
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   211
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   212
    ^ 600
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   213
!
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   214
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   215
defaultTimeDelay
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   216
    "the time in seconds to wait & collect by default"
36
641fe12489b2 prevent deadlock on access-semaphore in image-restart
claus
parents: 34
diff changeset
   217
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   218
    ^ 0.3 
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   219
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   220
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   221
defaultTranscriptSize
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   222
    "the number of cols/lines by which the Transcript should come up"
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   223
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   224
    ^ 70@11
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   225
! !
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   226
2744
cb920467a4b4 method category rename
Claus Gittinger <cg@exept.de>
parents: 2689
diff changeset
   227
!TextCollector methodsFor:'Compatibility-ST80'!
1500
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   228
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   229
deselect
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   230
    self unselect
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   231
!
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   232
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   233
flush
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   234
    self endEntry.
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   235
    super flush
1500
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   236
! !
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   237
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   238
!TextCollector methodsFor:'accessing'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   239
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   240
autoRaise
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   241
    ^ autoRaise ? false
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   242
!
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   243
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   244
autoRaise:something
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   245
    autoRaise := something.
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   246
!
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   247
1467
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   248
beginEntry
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   249
    "noop for now, ST80 compatibility"
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   250
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   251
    ^ self
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   252
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   253
    "Created: / 4.3.1998 / 11:08:14 / stefan"
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   254
!
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   255
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   256
collect:aBoolean
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   257
    "turn on/off collecting - if on, do not output immediately
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
   258
     but collect text and output en-bloque after some time delta"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   259
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   260
    collecting := aBoolean
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   261
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   262
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   263
collectSize:numberOfLines
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   264
    "set the collect buffer size. If collect is enabled,
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   265
     the receiver will force update of the view, 
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   266
     whenever that many lines have been collected
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   267
     (or the updateTimeDelay interval has passed).
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   268
     With collect turned off, an immediate update is performed."
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   269
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   270
    collectSize := numberOfLines
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   271
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   272
    "Modified: / 27.7.1998 / 16:16:00 / cg"
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   273
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   274
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   275
destroyAction:aBlock
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   276
    "define the action to be performed when I get destroyed.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   277
     This is a special feature, to allow resetting Transcript to Stderr
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   278
     when closed. (see TextCollectorclass>>newTranscript)"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   279
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   280
    destroyAction := aBlock
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   281
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   282
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   283
endEntry
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   284
    "flush collected output; displaying all that has been buffered so far"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   285
36
641fe12489b2 prevent deadlock on access-semaphore in image-restart
claus
parents: 34
diff changeset
   286
    |nLines lines|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   287
133
claus
parents: 131
diff changeset
   288
    shown ifFalse:[
1971
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   289
        "/ when iconified or not yet shown, keep
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   290
        "/ collecting. But not too much ...
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   291
        outstandingLines size < 300 ifTrue:[
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   292
            flushPending ifFalse:[
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   293
                self installDelayedUpdate.
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   294
            ].
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   295
            ^ self
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   296
        ]
133
claus
parents: 131
diff changeset
   297
    ].
1971
cff41b7cfb54 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1900
diff changeset
   298
119
claus
parents: 110
diff changeset
   299
    inFlush ifTrue:[^ self].
2831
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   300
    collecting ifTrue:[
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   301
        flushBlock notNil ifTrue:[
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   302
            Processor removeTimedBlock:flushBlock.
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   303
        ].
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   304
        flushPending ifFalse:[^ self].
1714
706eb5f2bb46 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1711
diff changeset
   305
    ].
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
   306
52
e69fade0aa8e mutual exclusion when updating contents
claus
parents: 36
diff changeset
   307
    access critical:[
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   308
        inFlush := true.
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   309
        [
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   310
            flushPending := false.
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   311
            outstandingLines size ~~ 0 ifTrue:[
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   312
                "insert the bunch of lines - if any"
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   313
                lines := outstandingLines.
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   314
                outstandingLines := nil.
36
641fe12489b2 prevent deadlock on access-semaphore in image-restart
claus
parents: 34
diff changeset
   315
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   316
                nLines := lines size.
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   317
                (nLines ~~ 0) ifTrue:[
3248
f3a06ccc529f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
   318
                    self isInInsertMode ifTrue:[
1565
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   319
                        self insertLines:lines withCR:true.
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   320
                    ] ifFalse:[
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   321
                        self replaceLines:lines withCR:true
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   322
                    ].
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   323
                    alwaysAppendAtEnd ifTrue:[
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   324
                        self cursorToEnd.
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   325
                    ].
2371
8fa75853dae1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2278
diff changeset
   326
                    (cursorLine >= (firstLineShown + nFullLinesShown)) ifTrue:[
8fa75853dae1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2278
diff changeset
   327
                        self withCursorOffDo:[
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   328
                            self scrollDown:nLines
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   329
                        ]
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   330
                    ].
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   331
                ].
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   332
            ].
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   333
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   334
            "and the last partial line - if any"
3295
37cb2b5d579a Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3248
diff changeset
   335
            outstandingLine size ~~ 0 ifTrue:[
3248
f3a06ccc529f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3244
diff changeset
   336
                self isInInsertMode ifTrue:[
1565
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   337
                    self insertStringAtCursor:outstandingLine.
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   338
                ] ifFalse:[
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   339
                    self replaceStringAtCursor:outstandingLine.
9109e9848c6f care for insertMode when handling collected text.
Claus Gittinger <cg@exept.de>
parents: 1562
diff changeset
   340
                ].
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   341
                outstandingLine := ''.
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   342
            ].
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   343
            self checkLineLimit.
2632
80c3c7c5cc7a endEntry
penk
parents: 2613
diff changeset
   344
            "/ device flush.
2520
aed8069b4477 #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 2450
diff changeset
   345
        ] ensure:[
1491
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   346
            inFlush := false.
0445841f7852 care for unwind (clear inFlush flag)
Claus Gittinger <cg@exept.de>
parents: 1489
diff changeset
   347
        ]
119
claus
parents: 110
diff changeset
   348
    ].
claus
parents: 110
diff changeset
   349
    flushPending ifTrue:[
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   350
        flushPending := false.
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   351
        self installDelayedUpdate
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   352
    ]
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   353
1714
706eb5f2bb46 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1711
diff changeset
   354
    "Modified: / 9.11.1998 / 21:17:56 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   355
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   356
2103
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   357
lineLimit
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   358
    "return the number of text-lines I am supposed to hold"
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   359
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   360
    ^ lineLimit
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   361
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   362
    "
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   363
     Transcript lineLimit:5000
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   364
     Transcript lineLimit
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   365
    "
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   366
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   367
    "Modified: / 16.5.1998 / 01:33:52 / cg"
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   368
!
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   369
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   370
lineLimit:aNumber
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   371
    "define the number of text-lines I am supposed to hold"
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   372
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   373
    lineLimit := aNumber
1611
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   374
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   375
    "
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   376
     Transcript lineLimit:5000
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   377
    "
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   378
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   379
    "Modified: / 16.5.1998 / 01:33:52 / cg"
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   380
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   381
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   382
updateTimeDelay:seconds
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   383
    "if collect is enabled, the receiver will update its view, 
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   384
     after that time delay (i.e. it collects more output during that period),
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   385
     or when collectSize lines have been collected without update.
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   386
     With collect turned off, an immediate update is performed."
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   387
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   388
    timeDelay := seconds
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   389
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   390
    "Modified: / 27.7.1998 / 16:16:41 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   391
! !
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   392
3969
a914bce039b7 category of: #exposeX:y:width:height:
Claus Gittinger <cg@exept.de>
parents: 3958
diff changeset
   393
!TextCollector methodsFor:'event handling'!
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   394
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   395
exposeX:x y:y width:w height:h
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   396
    "flush buffered text when exposed"
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   397
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   398
    super exposeX:x y:y width:w height:h.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   399
    self endEntry
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   400
! !
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   401
2750
94531b6049a3 method category rename
Claus Gittinger <cg@exept.de>
parents: 2746
diff changeset
   402
!TextCollector methodsFor:'initialization & release'!
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   403
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   404
destroy
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   405
    "destroy this view"
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   406
3201
ce84e272c6bb code cleanup
Claus Gittinger <cg@exept.de>
parents: 3119
diff changeset
   407
    destroyAction value.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   408
    super destroy
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   409
1714
706eb5f2bb46 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1711
diff changeset
   410
    "Modified: / 9.11.1998 / 21:18:17 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   411
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   412
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   413
editMenu
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   414
    "return my popUpMenu; thats the superClasses menu,
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   415
     minus any accept item."
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   416
1262
d69149b5be1f resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   417
    <resource: #programMenu>
1109
83d8c0143ef9 commentary
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
   418
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   419
    |m idx|
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   420
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   421
    m := super editMenu.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   422
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   423
    "
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   424
     textcollectors do not support #accept
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   425
     remove it from the menu (and the preceeding separating line)
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   426
    "
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   427
    idx := m indexOf:#accept.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   428
    idx ~~ 0 ifTrue:[
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   429
        m remove:idx.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   430
        (m labels at:(idx - 1)) = '-' ifTrue:[
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   431
            m remove:idx - 1
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   432
        ].
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   433
    ].
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   434
    ^ m
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   435
1262
d69149b5be1f resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   436
    "Modified: 3.7.1997 / 13:54:11 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   437
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   438
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   439
initialize
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   440
    super initialize.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   441
2164
ed46136cb2cf honor scrollWhenUpdating setting
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
   442
    scrollWhenUpdating := #endOfText.
ed46136cb2cf honor scrollWhenUpdating setting
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
   443
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   444
    outstandingLines := nil.
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   445
    alwaysAppendAtEnd := true.
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   446
    collectSize := self class defaultCollectSize.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   447
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   448
    flushPending := inFlush := false.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   449
    collecting := true.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   450
    timeDelay := self class defaultTimeDelay.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   451
    access := RecursionLock new. "/ Semaphore forMutualExclusion.
2086
95ec18a17198 give my access sema a name (for the semaphoreMonitor)
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   452
    access name:'TextCollector access lock'.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   453
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   454
    lineLimit := self class defaultLineLimit.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   455
    entryStream := ActorStream new.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   456
    entryStream nextPutBlock:[:something | self nextPut:something].
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   457
    entryStream nextPutAllBlock:[:something | self nextPutAll:something]
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   458
2086
95ec18a17198 give my access sema a name (for the semaphoreMonitor)
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   459
    "Modified: / 14.12.1999 / 21:13:54 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   460
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   461
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   462
mapped
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   463
    "view became visible - show collected lines (if any)"
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   464
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   465
    super mapped.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   466
    self endEntry
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   467
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   468
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   469
reinitialize
2259
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
   470
    "reinit after a snapIn.
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
   471
     recreate access-semaphore; image could have been save (theoretically)
1467
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   472
     with the semaphore locked - in this case, we had a deadlock"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   473
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   474
    flushPending := false.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   475
    access := RecursionLock new. "/ Semaphore forMutualExclusion.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   476
    super reinitialize.
1467
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   477
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   478
    "Modified: / 5.3.1998 / 10:09:14 / stefan"
2591
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   479
!
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   480
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   481
release
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   482
    flushBlock notNil ifTrue:[
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   483
        Processor removeTimedBlock:flushBlock.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   484
        flushBlock := nil.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   485
    ].
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   486
    outstandingLines := nil.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   487
    outstandingLine := ''.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   488
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   489
    super release
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   490
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   491
    "Modified: / 9.11.1998 / 21:18:17 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   492
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   493
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   494
!TextCollector methodsFor:'private'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   495
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   496
checkLineLimit
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   497
    "this method checks if the text has become too large (> lineLimit)
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   498
     and cuts off some lines at the top if so; it must be called whenever lines
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   499
     have been added to the bottom"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   500
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   501
    |nDel newCursorLine|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   502
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   503
    lineLimit notNil ifTrue:[
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   504
        (cursorLine > lineLimit) ifTrue:[
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   505
            nDel := list size - lineLimit.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   506
            list removeFromIndex:1 toIndex:nDel.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   507
            newCursorLine := cursorLine - nDel.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   508
            firstLineShown := firstLineShown - nDel.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   509
            (firstLineShown < 1) ifTrue:[
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   510
                newCursorLine := newCursorLine - firstLineShown + 1.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   511
                firstLineShown := 1
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   512
            ].
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   513
            self setCursorLine:newCursorLine.
3320
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   514
            self contentsChanged.
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   515
            self invalidate.
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   516
        ]
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   517
    ].
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   518
    self autoRaise ifTrue:[
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   519
        self topView 
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   520
            raise;
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   521
            "/ setForegroundWindow;
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   522
            yourself.
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   523
    ].
3320
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   524
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   525
    "Modified: / 26-07-2006 / 16:02:15 / fm"
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   526
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   527
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   528
installDelayedUpdate
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   529
    "arrange for collecting input for some time,
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   530
     and output all buffered strings at once after a while.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   531
     This makes output to the transcript much faster on systems
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   532
     with poor scrolling performance (i.e. dumb vga cards ...)."
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   533
131
claus
parents: 130
diff changeset
   534
    |p|
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   535
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   536
    flushPending ifFalse:[
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   537
        flushPending := true.
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   538
        inFlush ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   539
            "
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   540
             we could run under a process, which dies in the meantime;
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   541
             therefore, we have to arrange for the transcript process to
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   542
             be interrupted and do the update.
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   543
            "
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   544
            windowGroup isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   545
                p := Processor activeProcess
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   546
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   547
                p := windowGroup process
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   548
            ].
1221
0c2a4231fc9e Move #isSystemProcess from ProcessorScheduler to Process.
Stefan Vogel <sv@exept.de>
parents: 1109
diff changeset
   549
            (p isNil or:[p isSystemProcess]) ifTrue:[
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   550
                self endEntry
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   551
            ] ifFalse:[
1711
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   552
                flushBlock isNil ifTrue:[
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   553
                    flushBlock := [self endEntry].
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   554
                ].
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   555
                Processor addTimedBlock:flushBlock for:p afterSeconds:timeDelay.
3009
7eb1704fa5a6 Avoid dangling references in context
Stefan Vogel <sv@exept.de>
parents: 3006
diff changeset
   556
            ].
7eb1704fa5a6 Avoid dangling references in context
Stefan Vogel <sv@exept.de>
parents: 3006
diff changeset
   557
            p := nil.   "avoid dangling references to p through the home context of flushBlock"
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   558
        ]
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   559
    ]
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   560
1711
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   561
    "Modified: / 17.4.1997 / 13:03:15 / stefan"
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   562
    "Modified: / 9.11.1998 / 14:34:07 / cg"
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   563
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   564
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   565
senderTraceString
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   566
    "generate a sender trace string."
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   567
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   568
    |con|
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   569
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   570
    "/ skip over intermediate contexts
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   571
"/    con := con sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   572
"/    con := thisContext sender sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   573
"/    [ con receiver == self ] whileTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   574
"/        con := con sender
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   575
"/    ].     
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   576
    con := DebugView interestingContextFrom:thisContext sender sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   577
    ^ con printString
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   578
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   579
    "Created: / 02-02-2012 / 11:58:17 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   580
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   581
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   582
!TextCollector methodsFor:'queries'!
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   583
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   584
current
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   585
    "return the current (your screens) transcript.
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   586
     In multiDisplay applications, this need NOT be the main transcript.
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   587
     But typically, this is the same as Transcript."
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   588
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   589
    |theTranscript app|
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   590
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   591
    theTranscript := TranscriptQuerySignal query.
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   592
    theTranscript isNil ifTrue:[
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   593
        app := self topView application class current.
2763
e2fba3262e07 Avoid recursion when getting the Transcript on extra displays
Stefan Vogel <sv@exept.de>
parents: 2750
diff changeset
   594
        (app notNil and:[thisContext isRecursive not]) ifTrue:[
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   595
            theTranscript := (app transcript ? Stderr).
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   596
        ] ifFalse:[
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   597
            theTranscript := Stderr.
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   598
        ]
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   599
    ].
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   600
    ^ theTranscript
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   601
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   602
    "
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   603
     Transcript current flash
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   604
    "
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   605
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   606
    "Created: 5.7.1996 / 14:14:34 / cg"
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   607
    "Modified: 5.7.1996 / 14:14:52 / cg"
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   608
! !
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   609
2450
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   610
!TextCollector methodsFor:'scrolling'!
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   611
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   612
scrollTo:anOrigin redraw:doRedraw
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   613
    access critical:[
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   614
        super scrollTo:anOrigin redraw:doRedraw
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   615
    ]
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   616
! !
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   617
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   618
!TextCollector methodsFor:'stream messages'!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   619
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   620
addLine:line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   621
    "append a line to the outstanding lines buffer"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   622
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   623
    access critical:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   624
        outstandingLine size ~~ 0 ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   625
            outstandingLine := outstandingLine , line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   626
        ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   627
            outstandingLine := line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   628
        ].
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   629
        outstandingLines isNil ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   630
            outstandingLines := OrderedCollection with:outstandingLine
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   631
        ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   632
            outstandingLines add:outstandingLine.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   633
        ].
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   634
        outstandingLine := ''.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   635
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   636
        collecting ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   637
            flushPending ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   638
                outstandingLines size > collectSize ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   639
                    self endEntry
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   640
                ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   641
            ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   642
                self installDelayedUpdate
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   643
            ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   644
        ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   645
            self endEntry.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   646
            self cursorReturn.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   647
            self checkLineLimit.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   648
            self cursorToEnd.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   649
        ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   650
    ].
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   651
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   652
    "Created: / 28.7.1998 / 00:31:46 / cg"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   653
    "Modified: / 28.7.1998 / 00:34:58 / cg"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   654
!
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   655
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   656
cr
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   657
    "output a carriage return, finishing the current line"
135
claus
parents: 133
diff changeset
   658
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   659
    access critical:[
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   660
        collecting ifTrue:[
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   661
            outstandingLine notNil ifTrue:[  "/ mhmh - is never nil
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   662
                outstandingLines isNil ifTrue:[
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   663
                    outstandingLines := OrderedCollection with:outstandingLine
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   664
                ] ifFalse:[
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   665
                    outstandingLines add:outstandingLine.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   666
                ]
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   667
            ].
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   668
            outstandingLine := ''.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   669
        ] ifFalse:[
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   670
            self cursorReturn.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   671
            self checkLineLimit.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   672
            self cursorToEnd.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   673
        ].
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   674
    ].
135
claus
parents: 133
diff changeset
   675
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   676
    collecting ifTrue:[
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   677
        flushPending ifFalse:[
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   678
            self installDelayedUpdate
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   679
        ]
2831
d2b64aae97e3 collecting true behavior
penk
parents: 2805
diff changeset
   680
    ].
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   681
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   682
    "Modified: 11.1.1997 / 14:39:00 / cg"
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   683
!
135
claus
parents: 133
diff changeset
   684
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   685
doesNotUnderstand:aMessage
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   686
    "this is funny: all message we do not understand, are passed
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   687
     on to the stream which will send the characters via nextPut:
3006
e8a68c8dc2d6 use #sendTo: to send messages
Stefan Vogel <sv@exept.de>
parents: 2928
diff changeset
   688
     This way, we understand all Stream messages - great isn't it!!"
e8a68c8dc2d6 use #sendTo: to send messages
Stefan Vogel <sv@exept.de>
parents: 2928
diff changeset
   689
3243
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
   690
    ^ aMessage sendTo:entryStream
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   691
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   692
4311
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   693
ensureCr
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   694
    "if the output position is not already at the beginning of a line,
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   695
     output a carriage return"
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   696
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   697
    |needCR|
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   698
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   699
    collecting ifTrue:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   700
        needCR := outstandingLine notEmptyOrNil
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   701
    ] ifFalse:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   702
        needCR := cursorCol > 0
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   703
    ].
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   704
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   705
    needCR ifTrue:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   706
        self cr.
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   707
    ].
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   708
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   709
    "Created: / 14-09-2011 / 09:01:03 / cg"
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   710
!
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   711
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   712
lineLength
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   713
    "to make a textCollector (somewhat) compatible with printer
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   714
     streams, support the lineLength query"
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   715
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   716
    ^ width // (font width)
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   717
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   718
    "Modified: 11.1.1997 / 14:42:41 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   719
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   720
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   721
nextPut:something
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   722
    "append somethings printString to my displayed text.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   723
     This allows TextCollectors to be used Stream-wise"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   724
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   725
    |txt|
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   726
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   727
    (something isCharacter) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   728
        ((something == Character cr) or:[something == Character nl]) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   729
            ^ self cr
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   730
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   731
    ].
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   732
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   733
    txt := something asString.
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   734
    currentEmphasis notNil ifTrue:[
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   735
        txt := txt emphasizeAllWith:currentEmphasis
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   736
    ].
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   737
    self show:txt.
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   738
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   739
"/    flushPending ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   740
"/        self endEntry
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   741
"/    ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   742
"/    (something isMemberOf:Character) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   743
"/        ((something == Character cr) or:[something == Character nl]) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   744
"/            ^ self cr
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   745
"/        ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   746
"/        self insertCharAtCursor:something
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   747
"/    ] ifFalse:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   748
"/        self insertStringAtCursor:(something printString).
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   749
"/        self checkLineLimit
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   750
"/    ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   751
"/    device flush
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   752
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   753
    "Modified: 11.1.1997 / 14:43:05 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   754
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   755
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   756
nextPutAll:something
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   757
    "append all of something to my displayed text.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   758
     This allows TextCollectors to be used Stream-wise"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   759
3958
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   760
    self show:(currentEmphasis notNil 
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   761
                ifTrue:[something emphasizeAllWith:currentEmphasis]
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   762
                ifFalse:[something])
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   763
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   764
    "Modified: 11.1.1997 / 14:43:26 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   765
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   766
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   767
show:anObject
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   768
    "insert the argument aString at current cursor position"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   769
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   770
    |printString lines|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   771
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   772
    printString := anObject printString.
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   773
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   774
    DebugSendersOfMessagePattern notNil ifTrue:[
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   775
        (DebugSendersOfMessagePattern match:printString string) ifTrue:[
4411
24a09ea995e2 changed: #show:
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
   776
            self halt:('Transcript: text matches: "', printString,'"').
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   777
        ].
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   778
    ].
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   779
    TraceSendersOfMessagePattern notNil ifTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   780
        (TraceSendersOfMessagePattern match:printString string) ifTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   781
            printString := self senderTraceString,': ',printString
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   782
        ].
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   783
    ].
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   784
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   785
    (printString includes:(Character cr)) ifTrue:[
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   786
        lines := printString asStringCollection.
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   787
        lines keysAndValuesDo:[:nr :line |
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   788
            (nr == lines size 
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   789
            and:[(printString endsWith:(Character cr)) not]) ifTrue:[
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   790
                "/ the last one.
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   791
                self show:line
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   792
            ] ifFalse:[
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   793
                self showCR:line
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   794
            ].
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   795
        ].
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   796
        ^ self.
308
b216a5efa2c8 handle show: with a string containing cr's
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   797
    ].
b216a5efa2c8 handle show: with a string containing cr's
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   798
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   799
    access critical:[
3295
37cb2b5d579a Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3248
diff changeset
   800
        outstandingLine size ~~ 0 ifTrue:[
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   801
            outstandingLine := outstandingLine , printString
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   802
        ] ifFalse:[
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   803
            outstandingLine := printString
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   804
        ].
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   805
        collecting ifTrue:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   806
            flushPending ifFalse:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   807
                self installDelayedUpdate
1312
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   808
            ] ifTrue:[
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   809
                outstandingLines size > collectSize ifTrue:[
1312
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   810
                    self endEntry
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   811
                ]
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   812
            ]
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   813
        ] ifFalse:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   814
            self endEntry
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   815
        ]
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   816
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   817
4411
24a09ea995e2 changed: #show:
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
   818
    "Modified: / 24-03-2012 / 20:04:10 / cg"
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   819
!
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   820
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   821
showCR:anObject
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   822
    "insert the argument aString at current cursor position,
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   823
     and advance to the next line. This is the same as a #show:
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   824
     followed by a #cr."
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   825
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   826
    |printString lines|
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   827
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   828
    printString := anObject printString.
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   829
    printString size == 0 ifTrue:[
2689
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   830
        self cr.
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   831
        ^ self.
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   832
    ].
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   833
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   834
    DebugSendersOfMessagePattern notNil ifTrue:[
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   835
        (DebugSendersOfMessagePattern match:printString string) ifTrue:[
4410
e164f4c1fda4 changed: #showCR:
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
   836
            self halt:('Transcript: text matches: "', printString, '"').
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   837
        ].
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   838
    ].
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   839
    TraceSendersOfMessagePattern notNil ifTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   840
        (TraceSendersOfMessagePattern match:printString string) ifTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   841
            printString := self senderTraceString,': ',printString
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   842
        ].
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   843
    ].
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   844
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   845
    (printString includesAny:(String with:(Character cr) with:(Character return))) ifTrue:[
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   846
        lines := printString asStringCollection.
2689
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   847
        lines do:[:line|
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   848
            (line endsWith:Character nl) ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   849
                (line endsWith:Character return) ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   850
                    self addLine:(line copyWithoutLast:2).
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   851
                ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   852
                    self addLine:(line copyWithoutLast:1).
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   853
                ]
2805
171183735212 handle returns in showCR:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
   854
            ] ifFalse:[
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   855
                (line endsWith:Character return) ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   856
                    self addLine:(line copyWithoutLast:1).
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   857
                ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   858
                    self addLine:line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   859
                ]
2805
171183735212 handle returns in showCR:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
   860
            ]
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   861
        ].
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   862
        ^ self.
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   863
    ].
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   864
    self addLine:printString
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   865
4410
e164f4c1fda4 changed: #showCR:
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
   866
    "Modified: / 24-03-2012 / 20:00:08 / cg"
4073
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   867
!
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   868
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   869
tab
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   870
    "append a tab-character to the stream.
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   871
     This is only allowed, if the receiver supports writing."
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   872
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   873
    self nextPut:(Character tab)
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   874
! !
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   875
2746
e7a2aa5e1b92 method category rename
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
   876
!TextCollector methodsFor:'stream messages-emphasis'!
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   877
2539
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   878
bgColor:aColor
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   879
    currentEmphasis := #backgroundColor->aColor
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   880
!
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   881
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   882
bold
3205
934860f51257 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3201
diff changeset
   883
    "switch to bold - followup text sent via show/nextPutAll: will be inserted in
934860f51257 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3201
diff changeset
   884
     a bold font."
934860f51257 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3201
diff changeset
   885
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   886
    currentEmphasis := #bold
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   887
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   888
    "Modified: / 26.3.1999 / 14:28:58 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   889
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   890
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   891
color:aColor
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   892
    currentEmphasis := #color->aColor
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   893
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   894
    "Modified: / 26.3.1999 / 14:29:21 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   895
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   896
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   897
italic
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   898
    currentEmphasis := #italic
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   899
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   900
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   901
normal
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   902
    currentEmphasis := nil
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   903
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   904
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   905
reverse
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   906
    currentEmphasis := Array with:#color->bgColor
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   907
                             with:#backgroundColor->fgColor.
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   908
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   909
    "Created: / 20.6.1998 / 20:10:45 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   910
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   911
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   912
underline
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   913
    currentEmphasis := #underline
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   914
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   915
    "Created: / 26.3.1999 / 14:27:07 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   916
! !
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   917
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   918
!TextCollector methodsFor:'transcript specials'!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   919
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   920
beTranscript
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   921
    "make the receiver be the systemTranscript; this one
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   922
     is accessable via the global Transcript and gets relevant
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   923
     system messages from various places."
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   924
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   925
    self beTranscript:#Transcript
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   926
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   927
    "Modified: / 2.11.1997 / 22:34:47 / cg"
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   928
!
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   929
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   930
beTranscript:name
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   931
    "make the receiver be the systemTranscript; this one
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   932
     is accessable via the global Transcript and gets relevant
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   933
     system messages from various places."
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   934
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   935
    |fg bg cFg cBg|
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   936
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   937
    Smalltalk at:name put:self.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   938
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   939
    "
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   940
     fancy feature: whenever Transcript is closed, reset to StdError
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   941
    "
1421
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
   942
    self destroyAction:[
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   943
        self == (Smalltalk at:name) ifTrue:[
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   944
            Smalltalk at:name put:Stderr
1421
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
   945
        ]
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
   946
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   947
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   948
    "/ user may prefer a special color for this one;
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   949
    "/ look into the style definitions ...
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   950
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   951
    fg := styleSheet colorAt:'transcript.foregroundColor' default:self foregroundColor.
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   952
    bg := styleSheet colorAt:'transcript.backgroundColor' default:self backgroundColor.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   953
    self foregroundColor:fg backgroundColor:bg.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   954
    self viewBackground:bg.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   955
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   956
    cFg := styleSheet colorAt:'transcript.cursorForegroundColor' default:bg.
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   957
    cBg := styleSheet colorAt:'transcript.cursorBackgroundColor' default:fg.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   958
    self cursorForegroundColor:cFg backgroundColor:cBg. 
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   959
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   960
    "self lineLimit:1000. " "or whatever you think makes sense"
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   961
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   962
    "Modified: / 2.11.1997 / 22:34:47 / cg"
2928
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   963
!
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   964
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   965
clear
3119
dcb3db1033e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3009
diff changeset
   966
    self endEntry.
2928
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   967
    self contents:nil.
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   968
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   969
    "
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   970
     Transcript clear
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
   971
    "
3774
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   972
!
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   973
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   974
flash
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   975
    "make sure everything is visible, before flashing"
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   976
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   977
    self endEntry.
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
   978
    super flash.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   979
! !
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   980
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   981
!TextCollector class methodsFor:'documentation'!
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   982
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   983
version
4411
24a09ea995e2 changed: #show:
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
   984
    ^ '$Header: /cvs/stx/stx/libwidg/TextCollector.st,v 1.110 2012-03-24 19:04:56 cg Exp $'
3958
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   985
!
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   986
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   987
version_CVS
4411
24a09ea995e2 changed: #show:
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
   988
    ^ '$Header: /cvs/stx/stx/libwidg/TextCollector.st,v 1.110 2012-03-24 19:04:56 cg Exp $'
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   989
! !
2632
80c3c7c5cc7a endEntry
penk
parents: 2613
diff changeset
   990
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   991
TextCollector initialize!