TextCollector.st
author Merge Script
Tue, 06 Oct 2015 06:43:18 +0200
branchjv
changeset 5459 b54f4b01de15
parent 5409 a862f7795ef5
parent 5455 e151df78df1e
child 5487 455c92ac5d83
permissions -rw-r--r--
Merge
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
5246
28887183d75f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5147
diff changeset
    14
"{ NameSpace: Smalltalk }"
28887183d75f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5147
diff changeset
    15
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    16
EditTextView subclass:#TextCollector
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    17
	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
    18
		outstandingLine flushBlock flushPending inFlush collecting
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
    19
		timeDelay access currentEmphasis alwaysAppendAtEnd collectSize
5137
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
    20
		autoRaise'
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
    21
	classVariableNames:'TranscriptQuerySignal DebugSendersOfMessagePattern
5455
e151df78df1e #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 5454
diff changeset
    22
		TraceSendersOfMessagePattern TimestampMessages DefaultLineLimit
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
    23
		DefaultTimeDelay DefaultCollectSize'
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    24
	poolDictionaries:''
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
    25
	category:'Views-Text'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    26
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    27
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    28
!TextCollector class methodsFor:'documentation'!
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    29
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    30
copyright
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
 COPYRIGHT (c) 1989 by Claus Gittinger
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
    33
	      All Rights Reserved
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    35
 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
    36
 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
    37
 inclusion of the above copyright notice.   This software may not
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    38
 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
    39
 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
    40
 hereby transferred.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    41
"
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    42
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    43
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    44
documentation
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    45
"
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    46
    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
    47
    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
    48
    received text.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    49
    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
    50
    things like trace-windows, errorLogs etc.
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
    51
    It is also inherited by TerminalView, which especially uses the buffering and
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
    52
    delayed output features for high performance output (compare to a windows console).
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    53
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    54
    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
    55
    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
    56
    data - finally updating the whole chunk in one piece. 
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
    57
    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
    58
    (on fast displays this is less of a problem).
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    59
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    60
    The total number of lines kept is controlled by lineLimit, if more lines 
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
    61
    than this limit are added at the bottom, the textcollector will forget lines 
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
    62
    at the top. 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
    63
    of memory then ...
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    64
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    65
    [StyleSheet paramters (transcript only):]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    66
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    67
        transcriptForegroundColor       defaults to textForegroundColor
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    68
        transcriptBackgroundColor'      defaults to textBackgroundColor.
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    69
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    70
        transcriptCursorForegroundColor
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    71
        transcriptCursorBackgroundColor
77
565b052f5277 *** empty log message ***
claus
parents: 63
diff changeset
    72
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    73
    [author:]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    74
        Claus Gittinger
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    75
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    76
    [see also:]
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    77
        CodeView EditTextView
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 553
diff changeset
    78
        ActorStream
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    79
"
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
    80
! !
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    81
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
    82
!TextCollector class methodsFor:'instance creation'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    83
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    84
initialize
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    85
    TranscriptQuerySignal := QuerySignal new.
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    86
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    87
!
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
    88
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    89
newTranscript
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
    90
    "create and open a new transcript.
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
    91
     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
    92
     were two different views. It is no longer recommended."
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
    93
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    94
    ^ self newTranscript:#Transcript
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
     TextCollector newTranscript.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
    98
     Transcript lineLimit:3000.
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
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   101
    "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
   102
!
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   103
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   104
newTranscript:name
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   105
    "create and open a new transcript, unless one already exists by that name.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   106
     The transcript is remembered in a global by that name.
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   107
     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
   108
     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
   109
1900
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   110
    |topView transcript defSz f v lines cols|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   111
4476
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   112
    transcript := Smalltalk at:name.
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   113
    (transcript isTextView and:[transcript isOpen and:[transcript device == Screen current]]) ifTrue:[
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   114
        "if there is already an open Transcript on the same device, 
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   115
         do not open an additional one.
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   116
         expecco StandardLibrary <= 2.0.0.3 checked for Transcript>>#isStream and
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   117
         tries to opens a new Transcript window for each new Transcribe with expecco >=2.4"
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   118
        ^ transcript.
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   119
    ].
9f306f7859b9 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4473
diff changeset
   120
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   121
    topView := StandardSystemView label:name "minExtent:(100 @ 100)".
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   122
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   123
    v := HVScrollableView for:self miniScrollerH:true miniScrollerV:false in:topView.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   124
    v origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   125
    transcript := v scrolledView.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   126
    "transcript partialLines:false."
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   127
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   128
    f := transcript font.
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   129
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   130
    "
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   131
     should add the height of the frame & scrollbars to be exact ...
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   132
    "
1900
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   133
    defSz := self defaultTranscriptSize.
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   134
    cols := defSz x.
d334ab9d32d5 removed minExtent - let topView decide.
Claus Gittinger <cg@exept.de>
parents: 1822
diff changeset
   135
    lines := defSz y.
60
f3c738c24ce6 mostly style
claus
parents: 59
diff changeset
   136
    topView extent:(((f widthOf:'x') * cols) @ (f height * lines)).
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   137
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   138
    transcript beTranscript:name.
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   139
80
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   140
    "
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   141
     run it at a slightly higher prio, to allow for
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   142
     delayed buffered updates to be performed
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   143
    "
5a878a1eebf2 *** empty log message ***
claus
parents: 77
diff changeset
   144
    topView openWithPriority:(Processor userSchedulingPriority + 1).
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
   145
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   146
    ^ transcript
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   147
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   148
    "
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   149
     TextCollector newTranscript:#T2.
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   150
     T2 showCR:'Hello world'.
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   151
    "
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   152
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   153
    "Modified: 17.2.1997 / 18:20:27 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   154
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   155
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   156
!TextCollector class methodsFor:'Signal constants'!
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   157
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   158
transcriptQuerySignal
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   159
    ^ TranscriptQuerySignal
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   160
! !
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   161
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   162
!TextCollector class methodsFor:'debugging'!
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   163
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   164
debugSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   165
    ^ DebugSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   166
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   167
    "Created: / 02-02-2012 / 12:05:27 / cg"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   168
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   169
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   170
debugSendersOfMessagePattern:aGLOBMatchPattern
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   171
    "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
   172
     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
   173
4654
a4c05a2b6c29 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4650
diff changeset
   174
    DebugSendersOfMessagePattern := aGLOBMatchPattern asNilIfEmpty
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   175
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   176
    "
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   177
     self debugSendersOfMessagePattern:'no such*'
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   178
     self debugSendersOfMessagePattern:'remove*'
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   179
     self debugSendersOfMessagePattern:nil.
4284
3e487b994a8b changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4233
diff changeset
   180
     self debugSendersOfMessagePattern:'*'.
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   181
    "
4233
ae8979201707 changed: #debugSendersOfMessagePattern:
Claus Gittinger <cg@exept.de>
parents: 4124
diff changeset
   182
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   183
    "Modified: / 02-02-2012 / 12:07:11 / cg"
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
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   186
timestampMessages
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   187
    ^ TimestampMessages
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   188
!
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   189
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   190
timestampMessages:aBoolean
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   191
    "if true, all messages are shown with a timestamp in front"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   192
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   193
    TimestampMessages := aBoolean 
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   194
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   195
    "
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   196
     self timestampMessages:true
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   197
     self timestampMessages:false.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   198
    "
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   199
!
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   200
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   201
traceSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   202
    ^ TraceSendersOfMessagePattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   203
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   204
    "Created: / 02-02-2012 / 12:05:32 / cg"
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   205
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   206
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   207
traceSendersOfMessagePattern:aGLOBMatchPattern
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   208
    "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
   209
     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
   210
4654
a4c05a2b6c29 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4650
diff changeset
   211
    TraceSendersOfMessagePattern := aGLOBMatchPattern asNilIfEmpty
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   212
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   213
    "
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   214
     self traceSendersOfMessagePattern:'removed unreached*'
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   215
     self traceSendersOfMessagePattern:nil.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   216
     self traceSendersOfMessagePattern:'*'.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   217
    "
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   218
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   219
    "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
   220
! !
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   221
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   222
!TextCollector class methodsFor:'defaults'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   223
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   224
defaultCollectSize
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   225
    "the number of lines buffered for delayed update.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   226
     At most this number of lines to be shown are buffered (without redrawing),
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   227
     before a redraw is done. Thus, if a lot of output is generated fast,
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   228
     the redrawing is performed in chunks. 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   229
     This has a significant effect on the performane, 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   230
     as the view does not have to scroll and redraw for each
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   231
     individual line, but does junp-scrolling instead.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   232
     See also defaultTimeDelay"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   233
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   234
    ^ DefaultCollectSize ? 1000
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   235
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   236
    "Modified: / 27.7.1998 / 16:14:51 / cg"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   237
!
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   238
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   239
defaultCollectSize:numberOfLines
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   240
    "the number of lines buffered for delayed update.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   241
     At most this number of lines to be shown are buffered (without redrawing),
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   242
     before a redraw is done. Thus, if a lot of output is generated fast,
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   243
     the redrawing is performed in chunks. 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   244
     This has a significant effect on the performane, 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   245
     as the view does not have to scroll and redraw for each
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   246
     individual line, but does junp-scrolling instead.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   247
     See also defaultTimeDelay"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   248
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   249
    DefaultCollectSize := numberOfLines
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   250
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   251
    "Modified: / 27.7.1998 / 16:14:51 / cg"
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   252
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   253
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   254
defaultLineLimit
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   255
    "the number of lines remembered by default.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   256
     Only the last n lines are remembered and can be seen by scrolling.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   257
     Older lines are forgotten.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   258
     This limit can be changed by the userPreferences dialog"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   259
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   260
    ^ DefaultLineLimit ? 1000
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   261
!
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   262
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   263
defaultLineLimit:numberOfLines
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   264
    "the number of lines remembered by default.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   265
     Only the last n lines are remembered and can be seen by scrolling.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   266
     Older lines are forgotten.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   267
     This limit can be changed by the userPreferences dialog"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   268
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   269
    DefaultLineLimit := numberOfLines
59
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   270
!
450ce95a72a4 *** empty log message ***
claus
parents: 52
diff changeset
   271
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   272
defaultTimeDelay
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   273
    "the time in seconds to wait & collect by default.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   274
     At most this number of seconds incoming text is buffered (without redrawing),
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   275
     before a redraw is done. Thus, if a lot of output is generated fast,
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   276
     the redrawing is performed in chunks. 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   277
     This has a significant effect on the performane, 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   278
     as the view does not have to scroll and redraw for each
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   279
     individual line, but does junp-scrolling instead.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   280
     The value may be a float (eg. 0.5)
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   281
     See also defaultCollectSize"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   282
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   283
    ^ DefaultTimeDelay ? 0.5 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   284
!
36
641fe12489b2 prevent deadlock on access-semaphore in image-restart
claus
parents: 34
diff changeset
   285
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   286
defaultTimeDelay:seconds
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   287
    "the time in seconds to wait & collect by default.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   288
     At most this number of seconds incoming text is buffered (without redrawing),
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   289
     before a redraw is done. Thus, if a lot of output is generated fast,
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   290
     the redrawing is performed in chunks. 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   291
     This has a significant effect on the performane, 
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   292
     as the view does not have to scroll and redraw for each
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   293
     individual line, but does junp-scrolling instead.
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   294
     The argument may be a float (eg. 0.5)
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   295
     See also defaultCollectSize"
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   296
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   297
    DefaultTimeDelay := seconds 
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   298
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   299
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   300
defaultTranscriptSize
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   301
    "the number of cols/lines by which the Transcript should come up"
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   302
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   303
    ^ 70@11
110
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   304
! !
eb59f6e31e84 *** empty log message ***
claus
parents: 97
diff changeset
   305
2744
cb920467a4b4 method category rename
Claus Gittinger <cg@exept.de>
parents: 2689
diff changeset
   306
!TextCollector methodsFor:'Compatibility-ST80'!
1500
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   307
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   308
deselect
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   309
    self unselect
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   310
!
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   311
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   312
flush
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   313
    self endEntry.
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   314
    super flush
1500
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   315
! !
dee7275372f1 checkin from browser
ca
parents: 1491
diff changeset
   316
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   317
!TextCollector methodsFor:'accessing'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   318
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   319
autoRaise
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   320
    ^ autoRaise ? false
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   321
!
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   322
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   323
autoRaise:something
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   324
    autoRaise := something.
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   325
!
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   326
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   327
collect:aBoolean
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   328
    "turn on/off collecting - if on, do not output immediately
15
0dbce35d3c69 *** empty log message ***
claus
parents: 7
diff changeset
   329
     but collect text and output en-bloque after some time delta"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   330
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   331
    collecting := aBoolean
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   332
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   333
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   334
collectSize:numberOfLines
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   335
    "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
   336
     the receiver will force update of the view, 
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   337
     whenever that many lines have been collected
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   338
     (or the updateTimeDelay interval has passed).
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   339
     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
   340
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   341
    collectSize := numberOfLines
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   342
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   343
    "Modified: / 27.7.1998 / 16:16:00 / cg"
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   344
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   345
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   346
destroyAction:aBlock
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   347
    "define the action to be performed when I get destroyed.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   348
     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
   349
     when closed. (see TextCollectorclass>>newTranscript)"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   350
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   351
    destroyAction := aBlock
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   352
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   353
2103
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   354
lineLimit
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   355
    "return the number of text-lines I am supposed to hold"
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   356
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
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
     Transcript lineLimit:5000
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   361
     Transcript lineLimit
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
a37a42c39604 getter for lineLimit
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
   364
    "Modified: / 16.5.1998 / 01:33:52 / cg"
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
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   367
lineLimit:aNumber
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   368
    "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
   369
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   370
    lineLimit := aNumber
1611
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   371
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   372
    "
779762acd916 comment
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   373
     Transcript lineLimit:5000
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
    "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
   377
!
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   378
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   379
updateTimeDelay:seconds
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   380
    "if collect is enabled, the receiver will update its view, 
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   381
     after that time delay (i.e. it collects output during that period),
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   382
     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
   383
     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
   384
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   385
    timeDelay := seconds
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   386
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   387
    "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
   388
! !
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   389
3969
a914bce039b7 category of: #exposeX:y:width:height:
Claus Gittinger <cg@exept.de>
parents: 3958
diff changeset
   390
!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
   391
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   392
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
   393
    "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
   394
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   395
    super exposeX:x y:y width:w height:h.
4657
0a14c5312937 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4654
diff changeset
   396
    "/ self endEntry
363
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
2750
94531b6049a3 method category rename
Claus Gittinger <cg@exept.de>
parents: 2746
diff changeset
   399
!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
   400
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   401
destroy
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   402
    "destroy this view"
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   403
3201
ce84e272c6bb code cleanup
Claus Gittinger <cg@exept.de>
parents: 3119
diff changeset
   404
    destroyAction value.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   405
    super destroy
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   406
1714
706eb5f2bb46 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1711
diff changeset
   407
    "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
   408
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   409
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   410
editMenu
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   411
    "return my popUpMenu; thats the superClasses menu,
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   412
     minus any accept item."
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   413
1262
d69149b5be1f resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   414
    <resource: #programMenu>
1109
83d8c0143ef9 commentary
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
   415
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   416
    |m idx|
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   417
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   418
    m := super editMenu.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   419
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
     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
   422
     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
   423
    "
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   424
    idx := m indexOf:#accept.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   425
    idx ~~ 0 ifTrue:[
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   426
        m remove:idx.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   427
        (m labels at:(idx - 1)) = '-' ifTrue:[
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   428
            m remove:idx - 1
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   429
        ].
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   430
    ].
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   431
    ^ m
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   432
1262
d69149b5be1f resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1221
diff changeset
   433
    "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
   434
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   435
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   436
initialize
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   437
    super initialize.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   438
2164
ed46136cb2cf honor scrollWhenUpdating setting
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
   439
    scrollWhenUpdating := #endOfText.
ed46136cb2cf honor scrollWhenUpdating setting
Claus Gittinger <cg@exept.de>
parents: 2103
diff changeset
   440
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   441
    outstandingLines := nil.
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   442
    alwaysAppendAtEnd := true.
1610
b05a3e405b33 allow change of collectSize and updateTimeDelay.
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
   443
    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
   444
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   445
    flushPending := inFlush := false.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   446
    collecting := true.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   447
    timeDelay := self class defaultTimeDelay.
4965
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
   448
    access := RecursionLock new 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
   449
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   450
    lineLimit := self class defaultLineLimit.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   451
    entryStream := ActorStream new.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   452
    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
   453
    entryStream nextPutAllBlock:[:something | self nextPutAll:something]
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   454
2086
95ec18a17198 give my access sema a name (for the semaphoreMonitor)
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   455
    "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
   456
!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   457
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   458
mapped
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   459
    "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
   460
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   461
    super mapped.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   462
    self endEntry
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   463
!
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
reinitialize
2259
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
   466
    "reinit after a snapIn.
9fddc0e95293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2164
diff changeset
   467
     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
   468
     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
   469
4645
1d10aaa9dc7b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4644
diff changeset
   470
    flushPending := inFlush := false.
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   471
    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
   472
    super reinitialize.
1467
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   473
5c09bb2dadef Add (dummy fore now) #beginEntry for ST80 compat.
Stefan Vogel <sv@exept.de>
parents: 1421
diff changeset
   474
    "Modified: / 5.3.1998 / 10:09:14 / stefan"
2591
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   475
!
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   476
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   477
release
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   478
    flushBlock notNil ifTrue:[
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   479
        Processor removeTimedBlock:flushBlock.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   480
        flushBlock := nil.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   481
    ].
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   482
    outstandingLines := nil.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   483
    outstandingLine := ''.
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   484
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   485
    super release
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   486
e83dff4fd9a3 destroy - release
Claus Gittinger <cg@exept.de>
parents: 2539
diff changeset
   487
    "Modified: / 9.11.1998 / 21:18:17 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   488
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   489
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   490
!TextCollector methodsFor:'private'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   491
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   492
checkLineLimit
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   493
    "this method checks if the text has become too large (> lineLimit)
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   494
     and cuts off some lines at the top if so; it must be called whenever lines
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   495
     have been added to the bottom"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   496
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   497
    |nDel newCursorLine|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   498
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   499
    lineLimit notNil ifTrue:[
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   500
        (cursorLine > lineLimit) ifTrue:[
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   501
            nDel := list size - lineLimit.
4772
f1fb7b8ec64f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4687
diff changeset
   502
            self basicListRemoveFromIndex:1 toIndex:nDel.
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   503
            newCursorLine := cursorLine - nDel.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   504
            firstLineShown := firstLineShown - nDel.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   505
            (firstLineShown < 1) ifTrue:[
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   506
                newCursorLine := newCursorLine - firstLineShown + 1.
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   507
                firstLineShown := 1
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   508
            ].
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   509
            self setCursorLine:newCursorLine.
3320
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   510
            self contentsChanged.
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   511
            self invalidate.
2426
281067d406c7 eliminated direct write-access to cursorLine
Claus Gittinger <cg@exept.de>
parents: 2371
diff changeset
   512
        ]
3710
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   513
    ].
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   514
    self autoRaise ifTrue:[
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   515
        self topView 
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   516
            raise;
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   517
            "/ setForegroundWindow;
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   518
            yourself.
dcb4cc4118e1 autoraise feature
Claus Gittinger <cg@exept.de>
parents: 3320
diff changeset
   519
    ].
3320
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   520
a820e3101bb6 refresh when removing some lines after hitting linelimit
fm
parents: 3295
diff changeset
   521
    "Modified: / 26-07-2006 / 16:02:15 / fm"
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   522
!
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   523
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   524
installDelayedUpdate
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   525
    "arrange for collecting input for some time,
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   526
     and output all buffered strings at once after a while.
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   527
     This makes output to the transcript much faster on systems
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   528
     with poor scrolling performance (i.e. dumb vga cards ...)."
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   529
131
claus
parents: 130
diff changeset
   530
    |p|
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   531
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   532
    flushPending ifFalse:[
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   533
        inFlush ifFalse:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   534
            flushPending := true.
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   535
            "
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   536
             we could run under a process, which dies in the meantime;
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   537
             therefore, we have to arrange for the transcript process to
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   538
             be interrupted and do the update.
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   539
            "
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   540
            windowGroup isNil ifTrue:[
4503
08d33a9017e2 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4476
diff changeset
   541
                p := Processor timeoutHandlerProcess
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   542
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   543
                p := windowGroup process
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   544
            ].
1221
0c2a4231fc9e Move #isSystemProcess from ProcessorScheduler to Process.
Stefan Vogel <sv@exept.de>
parents: 1109
diff changeset
   545
            (p isNil or:[p isSystemProcess]) ifTrue:[
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   546
                self endEntry
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   547
            ] ifFalse:[
1711
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   548
                flushBlock isNil ifTrue:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
   549
                    flushBlock := [self delayedEndEntry].
1711
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   550
                ].
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   551
                Processor addTimedBlock:flushBlock for:p afterSeconds:timeDelay.
3009
7eb1704fa5a6 Avoid dangling references in context
Stefan Vogel <sv@exept.de>
parents: 3006
diff changeset
   552
            ].
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
   553
            p := nil.   "hack: avoid dangling references to p through the home context of flushBlock"
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   554
        ]
34
c4b386a8cc57 critical-lock; allows show:/showCr: from multiple processes
claus
parents: 22
diff changeset
   555
    ]
553
Claus Gittinger <cg@exept.de>
parents: 363
diff changeset
   556
1711
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   557
    "Modified: / 17.4.1997 / 13:03:15 / stefan"
b9d07088fe74 late assign of flushBlock
Claus Gittinger <cg@exept.de>
parents: 1617
diff changeset
   558
    "Modified: / 9.11.1998 / 14:34:07 / cg"
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   559
!
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   560
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   561
senderTraceString
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   562
    "generate a sender trace string."
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
    |con|
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   565
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   566
    "/ skip over intermediate contexts
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   567
"/    con := con sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   568
"/    con := thisContext sender sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   569
"/    [ con receiver == self ] whileTrue:[
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   570
"/        con := con sender
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   571
"/    ].     
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   572
    con := DebugView interestingContextFrom:thisContext sender sender.
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   573
    ^ con printString
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   574
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   575
    "Created: / 02-02-2012 / 11:58:17 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   576
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   577
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   578
!TextCollector methodsFor:'queries'!
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   579
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   580
current
4687
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   581
    "return the current (your screen's) transcript.
5301
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   582
     In multiDisplay applications, this need NOT be the main transcript,
3280021411a0 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5246
diff changeset
   583
     as each display may have its own transcript.
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   584
     But typically, this is the same as Transcript."
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   585
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   586
    |theTranscript app|
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   587
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   588
    theTranscript := TranscriptQuerySignal query.
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   589
    theTranscript isNil ifTrue:[
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   590
        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
   591
        (app notNil and:[thisContext isRecursive not]) ifTrue:[
2278
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   592
            theTranscript := (app transcript ? Stderr).
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   593
        ] ifFalse:[
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   594
            theTranscript := Stderr.
790f43792165 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2259
diff changeset
   595
        ]
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   596
    ].
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   597
    ^ theTranscript
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   598
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   599
    "
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   600
     Transcript current flash
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
4687
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   603
    "Created: / 05-07-1996 / 14:14:34 / cg"
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   604
    "Modified (comment): / 29-08-2013 / 11:04:55 / cg"
4441
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   605
!
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   606
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   607
isStream
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   608
    "if I am the Transcript, I am used as a stream.
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   609
     See #displayOn:"
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   610
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   611
    ^ self == Transcript
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   612
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   613
    "
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   614
        Transcript isStream
fb138fb5cf04 #isStream answers true for Transcript
Stefan Vogel <sv@exept.de>
parents: 4428
diff changeset
   615
    "
4687
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   616
!
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   617
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   618
isTextCollector
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   619
    ^ true
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   620
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   621
    "
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   622
     Transcript isTextCollector
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   623
    "
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   624
2ab92c301044 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4659
diff changeset
   625
    "Created: / 29-08-2013 / 11:32:46 / cg"
5330
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   626
!
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   627
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   628
position
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   629
    "for compatibiliy with normal streams; return the column"
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   630
3f12e0166192 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5320
diff changeset
   631
    ^ cursorCol
778
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   632
! !
3a8fabcf1872 added #current (for: Transcript current)
Claus Gittinger <cg@exept.de>
parents: 656
diff changeset
   633
2450
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   634
!TextCollector methodsFor:'scrolling'!
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   635
5136
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   636
makeCursorVisible
5137
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
   637
    (scrollLocked ? false) ifFalse:[
5136
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   638
        access critical:[
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   639
            super makeCursorVisible
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   640
        ]
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   641
    ]
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   642
!
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   643
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   644
scrollLock:aBoolean
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   645
    aBoolean ifTrue:[
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   646
        scrollWhenUpdating := #endOfText.
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   647
    ] ifFalse:[
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   648
        scrollWhenUpdating := nil.
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   649
    ].
5137
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
   650
    scrollLocked := aBoolean.
5136
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   651
!
cabf8c8c7daa class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5130
diff changeset
   652
2450
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   653
scrollTo:anOrigin redraw:doRedraw
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   654
    access critical:[
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   655
        super scrollTo:anOrigin redraw:doRedraw
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   656
    ]
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
diff changeset
   657
! !
4330a66d0b46 lock while scrolling
Claus Gittinger <cg@exept.de>
parents: 2426
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
!TextCollector methodsFor:'stream messages'!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   660
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   661
addLine:line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   662
    "append a line to the outstanding lines buffer"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   663
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   664
    access critical:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   665
        outstandingLine size ~~ 0 ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   666
            outstandingLine := outstandingLine , line
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   667
        ] ifFalse:[
4645
1d10aaa9dc7b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4644
diff changeset
   668
            (TimestampMessages == true and:[self == Transcript]) ifTrue:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   669
                outstandingLine := Timestamp now printString,' ',line
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   670
            ] ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   671
                outstandingLine := line
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   672
            ]
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   673
        ].
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
   674
        "/ self ~~ Transcript ifTrue:['xa' printCR].
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   675
        outstandingLines isNil ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   676
            outstandingLines := OrderedCollection with:outstandingLine
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   677
        ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   678
            outstandingLines add:outstandingLine.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   679
        ].
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   680
        outstandingLine := ''.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   681
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   682
        collecting ifTrue:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   683
            flushPending ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   684
                self installDelayedUpdate
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   685
            ] ifTrue:[
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   686
                outstandingLines size > collectSize ifTrue:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   687
                    self endEntry
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   688
                ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   689
            ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   690
        ] ifFalse:[
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   691
            self endEntry.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   692
            self cursorReturn.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   693
            self checkLineLimit.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   694
            self cursorToEnd.
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   695
        ]
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   696
    ].
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   697
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   698
    "Created: / 28.7.1998 / 00:31:46 / cg"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   699
    "Modified: / 28.7.1998 / 00:34:58 / cg"
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   700
!
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   701
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   702
cr
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   703
    "output a carriage return, finishing the current line"
135
claus
parents: 133
diff changeset
   704
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   705
    access critical:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   706
        |line|
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   707
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   708
        collecting ifTrue:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   709
            line := outstandingLine.
4645
1d10aaa9dc7b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4644
diff changeset
   710
            (TimestampMessages == true and:[self == Transcript]) ifTrue:[
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   711
                outstandingLine size == 0 ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   712
                    line := Timestamp now printString
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   713
                ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   714
            ].
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
   715
            "/ self ~~ Transcript ifTrue:['xc' printCR].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   716
            outstandingLines isNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   717
                outstandingLines := OrderedCollection with:line
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   718
            ] ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   719
                outstandingLines add:line.
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   720
            ].
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   721
            outstandingLine := ''.
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   722
            flushPending ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   723
                self installDelayedUpdate
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   724
            ]
834
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   725
        ] ifFalse:[
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   726
            self cursorReturn.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   727
            self checkLineLimit.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   728
            self cursorToEnd.
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   729
        ].
0da7c9923d1b prevent scheduler from being suspended
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
   730
    ].
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   731
!
135
claus
parents: 133
diff changeset
   732
4460
0e9e64b56b14 added: #display:
Stefan Vogel <sv@exept.de>
parents: 4441
diff changeset
   733
display:someObject
0e9e64b56b14 added: #display:
Stefan Vogel <sv@exept.de>
parents: 4441
diff changeset
   734
    "dolphin compatibility"
0e9e64b56b14 added: #display:
Stefan Vogel <sv@exept.de>
parents: 4441
diff changeset
   735
5246
28887183d75f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5147
diff changeset
   736
    "/ someObject printOn:self.
28887183d75f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5147
diff changeset
   737
    self nextPutAll: someObject asString.
4460
0e9e64b56b14 added: #display:
Stefan Vogel <sv@exept.de>
parents: 4441
diff changeset
   738
!
0e9e64b56b14 added: #display:
Stefan Vogel <sv@exept.de>
parents: 4441
diff changeset
   739
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   740
doesNotUnderstand:aMessage
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   741
    "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
   742
     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
   743
     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
   744
3243
Claus Gittinger <cg@exept.de>
parents: 3205
diff changeset
   745
    ^ aMessage sendTo:entryStream
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   746
!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   747
4311
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   748
ensureCr
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   749
    "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
   750
     output a carriage return"
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   751
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   752
    |needCR|
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   753
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   754
    collecting ifTrue:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   755
        needCR := outstandingLine notEmptyOrNil
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   756
    ] ifFalse:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   757
        needCR := cursorCol > 0
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   758
    ].
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   759
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   760
    needCR ifTrue:[
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   761
        self cr.
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   762
    ].
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   763
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   764
    "Created: / 14-09-2011 / 09:01:03 / cg"
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   765
!
70485d4f05c5 added: #ensureCr
Claus Gittinger <cg@exept.de>
parents: 4284
diff changeset
   766
5025
8db08f1414fb class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
   767
format:formatSpec with:args
8db08f1414fb class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
   768
    ^ entryStream format:formatSpec with:args
8db08f1414fb class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
   769
!
8db08f1414fb class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4965
diff changeset
   770
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   771
lineLength
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   772
    "to make a textCollector (somewhat) compatible with printer
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   773
     streams, support the lineLength query"
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   774
4918
8fec589c2230 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4772
diff changeset
   775
    ^ width // (gc font width)
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   776
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   777
    "Modified: 11.1.1997 / 14:42:41 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   778
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   779
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   780
nextPut:something
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   781
    "append somethings printString to my displayed text.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   782
     This allows TextCollectors to be used Stream-wise"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   783
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   784
    |txt|
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   785
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   786
    (something isCharacter) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   787
        ((something == Character cr) or:[something == Character nl]) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   788
            ^ self cr
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   789
        ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   790
    ].
1504
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   791
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   792
    txt := something asString.
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   793
    currentEmphasis notNil ifTrue:[
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   794
        txt := txt emphasizeAllWith:currentEmphasis
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   795
    ].
3101f410e230 rudimentary support for (some) emphasis messages
Claus Gittinger <cg@exept.de>
parents: 1500
diff changeset
   796
    self show:txt.
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   797
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   798
"/    flushPending ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   799
"/        self endEntry
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   800
"/    ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   801
"/    (something isMemberOf:Character) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   802
"/        ((something == Character cr) or:[something == Character nl]) ifTrue:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   803
"/            ^ self cr
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   804
"/        ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   805
"/        self insertCharAtCursor:something
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   806
"/    ] ifFalse:[
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   807
"/        self insertStringAtCursor:(something printString).
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   808
"/        self checkLineLimit
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   809
"/    ].
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   810
"/    device flush
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   811
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   812
    "Modified: 11.1.1997 / 14:43:05 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   813
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   814
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   815
nextPutAll:something
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   816
    "append all of something to my displayed text.
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   817
     This allows TextCollectors to be used Stream-wise"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   818
3958
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   819
    self show:(currentEmphasis notNil 
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   820
                ifTrue:[something emphasizeAllWith:currentEmphasis]
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
   821
                ifFalse:[something])
656
2fb1c683d3f3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
   822
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   823
    "Modified: 11.1.1997 / 14:43:26 / cg"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   824
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   825
5320
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   826
nextPutAll:count from:buffer startingAt:initialPosition
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   827
    "append count characters from buffer starting at initialPosition to my displayed text.
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   828
     This allows TextCollectors to be used Stream-wise"
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   829
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   830
    |stringToShow|
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   831
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   832
    stringToShow := buffer copyFrom:initialPosition to:initialPosition+count-1.
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   833
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   834
    self show:(currentEmphasis notNil 
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   835
                ifTrue:[stringToShow emphasizeAllWith:currentEmphasis]
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   836
                ifFalse:[stringToShow]).
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   837
    ^ count.
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   838
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   839
    "Modified: 11.1.1997 / 14:43:26 / cg"
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   840
!
d2421b362731 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 5303
diff changeset
   841
5130
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   842
println
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   843
    "for those used to Java/Javascript, a compatibility message.
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   844
     Most useful inside expecco"
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   845
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   846
    self cr
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   847
!
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   848
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   849
println:anObject
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   850
    "for those used to Java/Javascript, a compatibility message.
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   851
     Most useful inside expecco"
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   852
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   853
    self showCR:anObject
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   854
!
2821ba480073 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5025
diff changeset
   855
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   856
show:anObject
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   857
    "insert the argument aString at current cursor position"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   858
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   859
    |printString lines|
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   860
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   861
    printString := anObject printString.
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
   862
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   863
    (self == Transcript) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   864
        DebugSendersOfMessagePattern notNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   865
            (DebugSendersOfMessagePattern match:printString string) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   866
                "disable all with: DebugSendersOfMessagePattern := nil"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   867
                self halt:('Transcript: text matches: "', printString,'"').
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   868
            ].
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   869
        ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   870
        TraceSendersOfMessagePattern notNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   871
            (TraceSendersOfMessagePattern match:printString string) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   872
                printString := self senderTraceString,': ',printString
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   873
            ].
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   874
        ].
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   875
    ].
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   876
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   877
    (printString includes:(Character cr)) ifTrue:[
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   878
        lines := printString asStringCollection.
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   879
        lines keysAndValuesDo:[:nr :line |
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   880
            (nr == lines size 
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   881
            and:[(printString endsWith:(Character cr)) not]) ifTrue:[
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   882
                "/ the last one.
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   883
                self show:line
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   884
            ] ifFalse:[
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   885
                self showCR:line
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   886
            ].
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   887
        ].
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   888
        ^ self.
308
b216a5efa2c8 handle show: with a string containing cr's
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   889
    ].
b216a5efa2c8 handle show: with a string containing cr's
Claus Gittinger <cg@exept.de>
parents: 174
diff changeset
   890
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   891
    access critical:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
   892
        "/ self ~~ Transcript ifTrue:['xs' printCR].
3295
37cb2b5d579a Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3248
diff changeset
   893
        outstandingLine size ~~ 0 ifTrue:[
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   894
            outstandingLine := outstandingLine , printString
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   895
        ] ifFalse:[
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   896
            outstandingLine := printString
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   897
        ].
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   898
        collecting ifTrue:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   899
            flushPending ifFalse:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   900
                self installDelayedUpdate
1312
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   901
            ] ifTrue:[
1562
9b7557a81849 made the number of buffered lines an instVar.
Claus Gittinger <cg@exept.de>
parents: 1504
diff changeset
   902
                outstandingLines size > collectSize ifTrue:[
1312
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   903
                    self endEntry
eaa44f7649f5 flush after some lines have been collected
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   904
                ]
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   905
            ]
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   906
        ] ifFalse:[
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   907
            self endEntry
653
fdab88d1205f showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   908
        ]
1026
6068cf626646 non-collecting nextPut
Claus Gittinger <cg@exept.de>
parents: 928
diff changeset
   909
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   910
4411
24a09ea995e2 changed: #show:
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
   911
    "Modified: / 24-03-2012 / 20:04:10 / cg"
4428
641c1d7198cf comment/format in: #show:
Claus Gittinger <cg@exept.de>
parents: 4411
diff changeset
   912
    "Modified (format): / 02-06-2012 / 01:54:55 / cg"
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   913
!
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   914
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   915
showCR:anObject
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   916
    "insert the argument aString at current cursor position,
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   917
     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
   918
     followed by a #cr."
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   919
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   920
    |printString lines crlf|
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   921
4647
6e4bec2140ab oops oops
Claus Gittinger <cg@exept.de>
parents: 4646
diff changeset
   922
"/ self ~~ Transcript ifTrue:[ ^ self tshow:anObject].
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   923
    printString := anObject printString.
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   924
    printString size == 0 ifTrue:[
2689
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   925
        self cr.
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   926
        ^ self.
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   927
    ].
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   928
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   929
    self == Transcript ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   930
        DebugSendersOfMessagePattern notNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   931
            (DebugSendersOfMessagePattern match:printString string) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   932
                "/ to disable this right from inside the debugger, evaluate:
5454
7b8cb04385c6 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5408
diff changeset
   933
                "
7b8cb04385c6 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5408
diff changeset
   934
                 DebugSendersOfMessagePattern := nil
7b8cb04385c6 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5408
diff changeset
   935
                "
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   936
                self halt:('Transcript: text matches: "', printString, '"').
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   937
            ].
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   938
        ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   939
        TraceSendersOfMessagePattern notNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   940
            (TraceSendersOfMessagePattern match:printString string) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   941
                printString := self senderTraceString,': ',printString
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
   942
            ].
4122
fb942b02b048 changed:
Stefan Vogel <sv@exept.de>
parents: 4106
diff changeset
   943
        ].
4105
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   944
    ].
c2c3a96f8757 debug support: who sends a message
Claus Gittinger <cg@exept.de>
parents: 4073
diff changeset
   945
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   946
    crlf := String crlf.
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   947
    (printString includesAny:crlf) ifTrue:[
4045
0b461045f76a comment/format
Claus Gittinger <cg@exept.de>
parents: 3969
diff changeset
   948
        lines := printString asStringCollection.
2689
ddaa98a64bd5 Fix #showCR: when displaying multi-line strings
Stefan Vogel <sv@exept.de>
parents: 2632
diff changeset
   949
        lines do:[:line|
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   950
            |lineWithoutEOL|
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   951
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   952
            (line endsWith:Character nl) ifTrue:[
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   953
                (line endsWith:crlf) ifTrue:[
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   954
                    lineWithoutEOL := line copyButLast:2.
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   955
                ] ifFalse:[
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   956
                    lineWithoutEOL := line copyButLast:1.
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   957
                ]
2805
171183735212 handle returns in showCR:
Claus Gittinger <cg@exept.de>
parents: 2763
diff changeset
   958
            ] ifFalse:[
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   959
                (line endsWith:Character return) ifTrue:[
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   960
                    lineWithoutEOL := line copyButLast:1.
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   961
                ] ifFalse:[
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   962
                    lineWithoutEOL := line
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   963
                ]
5302
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   964
            ].
cb9b58fe53e9 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5301
diff changeset
   965
            self addLine:lineWithoutEOL.
1617
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   966
        ].
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   967
        ^ self.
9606db12cf1b added #showCR:
Claus Gittinger <cg@exept.de>
parents: 1611
diff changeset
   968
    ].
4106
371ba6f672d0 added: #addLine:
Claus Gittinger <cg@exept.de>
parents: 4105
diff changeset
   969
    self addLine:printString
4365
e366657e6120 class definition
Claus Gittinger <cg@exept.de>
parents: 4311
diff changeset
   970
4410
e164f4c1fda4 changed: #showCR:
Claus Gittinger <cg@exept.de>
parents: 4365
diff changeset
   971
    "Modified: / 24-03-2012 / 20:00:08 / cg"
4073
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   972
!
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   973
4473
10ba696ec238 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
   974
space
10ba696ec238 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
   975
    self show:' '
10ba696ec238 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
   976
!
10ba696ec238 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4460
diff changeset
   977
4073
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   978
tab
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   979
    "append a tab-character to the stream.
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   980
     This is only allowed, if the receiver supports writing."
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   981
5b4cf996f5d6 added: #tab
Stefan Vogel <sv@exept.de>
parents: 4045
diff changeset
   982
    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
   983
! !
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
   984
2746
e7a2aa5e1b92 method category rename
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
   985
!TextCollector methodsFor:'stream messages-emphasis'!
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   986
2539
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   987
bgColor:aColor
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   988
    aColor isNil ifTrue:[
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   989
        currentEmphasis := Text removeEmphasis:#backgroundColor from:currentEmphasis
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   990
    ] ifFalse:[
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   991
        currentEmphasis := Text addEmphasis:(#backgroundColor->aColor) to:currentEmphasis
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   992
    ]
2539
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   993
!
e90046b96ffe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
   994
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
   995
bold
3205
934860f51257 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3201
diff changeset
   996
    "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
   997
     a bold font."
934860f51257 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3201
diff changeset
   998
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
   999
    currentEmphasis := Text addEmphasis:#bold to:currentEmphasis
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1000
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1001
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1002
color:aColor
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1003
    aColor isNil ifTrue:[
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1004
        currentEmphasis := Text removeEmphasis:#color from:currentEmphasis
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1005
    ] ifFalse:[
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1006
        currentEmphasis := Text addEmphasis:(#color->aColor) to:currentEmphasis
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1007
    ].
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1008
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1009
    "Modified: / 26.3.1999 / 14:29:21 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1010
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1011
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1012
italic
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1013
    currentEmphasis := Text addEmphasis:#italic to:currentEmphasis
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1014
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1015
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1016
normal
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1017
    currentEmphasis := nil
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1018
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1019
4659
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1020
notBold
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1021
    "switch to non-bold - followup text sent via show/nextPutAll: will be inserted in
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1022
     a non-bold font."
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1023
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1024
    currentEmphasis := Text removeEmphasis:#bold from:currentEmphasis
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1025
!
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1026
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1027
notItalic
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1028
    "switch to non-italic - followup text sent via show/nextPutAll: will be inserted in
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1029
     a non-italic font."
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1030
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1031
    currentEmphasis := Text removeEmphasis:#italic from:currentEmphasis
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1032
!
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1033
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1034
notReverse
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1035
    currentEmphasis := Text removeEmphasis:#color from:currentEmphasis.
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1036
    currentEmphasis := Text removeEmphasis:#backgroundColor from:currentEmphasis.
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1037
!
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1038
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1039
notUnderline
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1040
    currentEmphasis := Text removeEmphasis:#underline from:currentEmphasis
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1041
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1042
    "Created: / 26.3.1999 / 14:27:07 / cg"
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1043
!
0ac53ed3980b class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4658
diff changeset
  1044
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1045
reverse
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1046
    currentEmphasis := Text addEmphasis:(#color->bgColor) to:currentEmphasis.
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1047
    currentEmphasis := Text addEmphasis:(#backgroundColor->fgColor) to:currentEmphasis.
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1048
!
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1049
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1050
underline
4658
e2a82c5376e1 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4657
diff changeset
  1051
    currentEmphasis := Text addEmphasis:#underline to:currentEmphasis
1822
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1052
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1053
    "Created: / 26.3.1999 / 14:27:07 / cg"
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1054
! !
9abf58839e67 added #color: and #underline
Claus Gittinger <cg@exept.de>
parents: 1714
diff changeset
  1055
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1056
!TextCollector methodsFor:'transcript specials'!
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1057
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1058
beTranscript
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1059
    "make the receiver be the systemTranscript; this one
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1060
     is accessable via the global Transcript and gets relevant
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1061
     system messages from various places."
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1062
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1063
    self beTranscript:#Transcript
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1064
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1065
    "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
  1066
!
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1067
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1068
beTranscript:name
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1069
    "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
  1070
     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
  1071
     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
  1072
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1073
    |fg bg cFg cBg|
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1074
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1075
    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
  1076
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1077
    "
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1078
     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
  1079
    "
1421
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
  1080
    self destroyAction:[
3852
8322d7c41f1c refactored newTranscript to allow for another transcript to be opened
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
  1081
        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
  1082
            Smalltalk at:name put:Stderr
1421
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
  1083
        ]
afef284eadc4 only reset Transcript to stdErr, if I really am the transcript.
ca
parents: 1389
diff changeset
  1084
    ].
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1085
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1086
    "/ user may prefer a special color for this one;
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1087
    "/ look into the style definitions ...
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1088
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1089
    fg := styleSheet colorAt:'transcript.foregroundColor' default:self foregroundColor.
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1090
    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
  1091
    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
  1092
    self viewBackground:bg.
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1093
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1094
    cFg := styleSheet colorAt:'transcript.cursorForegroundColor' default:bg.
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1095
    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
  1096
    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
  1097
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1098
    "self lineLimit:1000. " "or whatever you think makes sense"
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1099
1389
82a672130741 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1100
    "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
  1101
!
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1102
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1103
beginEntry
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1104
    "noop for now, ST80 compatibility"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1105
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1106
    ^ self
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1107
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1108
    "Created: / 4.3.1998 / 11:08:14 / stefan"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1109
!
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1110
2928
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1111
clear
3119
dcb3db1033e3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3009
diff changeset
  1112
    self endEntry.
2928
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1113
    self contents:nil.
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1114
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1115
    "
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1116
     Transcript clear
24991431c7e0 added #clear (to clear its contents)
Claus Gittinger <cg@exept.de>
parents: 2831
diff changeset
  1117
    "
3774
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1118
!
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1119
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1120
delayedEndEntry
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1121
    "flush collected output; displaying all that has been buffered so far"
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1122
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1123
    "/ self ~~ Transcript ifTrue:[ 'de0' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1124
    inFlush ifTrue:[
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1125
        "/ self ~~ Transcript ifTrue:[ 'deX' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1126
        ^ self
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1127
    ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1128
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1129
    "/ self ~~ Transcript ifTrue:[ 'de1' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1130
    access owner == Processor activeProcess ifTrue:[
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1131
        "/ self ~~ Transcript ifTrue:[ 'de2' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1132
        self installDelayedUpdate.
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1133
        ^ self
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1134
    ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1135
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1136
    self endEntry
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1137
!
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1138
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1139
endEntry
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1140
    "flush collected output; displaying all that has been buffered so far"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1141
4961
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1142
    |nLines lines device|
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1143
4965
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1144
    ((outstandingLines isEmptyOrNil) and:[outstandingLine isEmptyOrNil]) ifTrue:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1145
        "/ self ~~ Transcript ifTrue:[ 'e- ' print. thisContext sender selector printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1146
        ^ self
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1147
    ].
4965
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1148
    shown ifFalse:[
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1149
        "/ when iconified or not yet shown, keep
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1150
        "/ collecting. But not too much ...
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1151
        outstandingLines size < 300 ifTrue:[
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1152
            "/ self ~~ Transcript ifTrue:[ 'eC' printCR ].
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1153
            access critical:[
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1154
                flushPending ifFalse:[
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1155
                    self installDelayedUpdate.
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1156
                ].
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1157
            ].
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1158
            ^ self
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1159
        ]
cf490f1f21c6 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4963
diff changeset
  1160
    ].
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1161
4961
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1162
    device := self graphicsDevice.
4963
360430ca651c class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4961
diff changeset
  1163
    (device isNil or:[device isOpen not or:[self drawableId isNil]]) ifTrue:[
4961
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1164
        "on snapshot load, Transcript may not yet be re-created.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1165
         Write to Stderr then."
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1166
        Stderr notNil ifTrue:[
4963
360430ca651c class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4961
diff changeset
  1167
            outstandingLines do:[:eachLine|
360430ca651c class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4961
diff changeset
  1168
                eachLine printOn:Stderr.
360430ca651c class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4961
diff changeset
  1169
            ].
4961
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1170
            outstandingLines := nil.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1171
            outstandingLine notNil ifTrue:[
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1172
                outstandingLine printOn:Stderr.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1173
                outstandingLine := nil.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1174
            ].
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1175
            Stderr cr.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1176
        ].
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1177
        ^ self.
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1178
    ].
abf4754c7bed class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4918
diff changeset
  1179
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1180
    "/ self ~~ Transcript ifTrue:[ 'e ' print. 
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1181
    "/    thisContext fullPrintAll.
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1182
    "/ ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1183
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1184
"/    access owner == Processor activeProcess ifTrue:[
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1185
"/self ~~ Transcript ifTrue:[ 'eI' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1186
"/        self installDelayedUpdate.
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1187
"/        ^ self
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1188
"/    ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1189
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1190
    access critical:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1191
        collecting ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1192
            flushBlock notNil ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1193
                Processor removeTimedBlock:flushBlock.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1194
            ].
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1195
"/            flushPending ifFalse:[
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1196
"/self ~~ Transcript ifTrue:[ 'eP' printCR ].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1197
"/                ^ self
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1198
"/            ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1199
        ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1200
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1201
        "/ self ~~ Transcript ifTrue:[ 'e1' printCR ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1202
        inFlush ifFalse:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1203
            "/ self ~~ Transcript ifTrue:[ 'e2' printCR ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1204
            inFlush := true.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1205
            [
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1206
                flushPending := false.
5147
b36c9ea52b1d class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  1207
self withAutoIndent:false do:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1208
                "/ self ~~ Transcript ifTrue:[ 'e3 "' print. outstandingLine print. '" ' print. outstandingLine asByteArray hexPrintString print. ' ' printCR. 
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1209
                "/                             (outstandingLines ? #()) do:[:l | '"' print. l print. '" ' print. l asByteArray hexPrintString printCR ]].
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1210
                (nLines := outstandingLines size) ~~ 0 ifTrue:[
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1211
                    "/ self ~~ Transcript ifTrue:[ 'e4' printCR.].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1212
                    "insert the bunch of lines - if any"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1213
                    lines := outstandingLines.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1214
                    outstandingLines := nil.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1215
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1216
                    "/ self ~~ Transcript ifTrue:[ 'e5 ' print. nLines printCR.].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1217
                    (nLines ~~ 0) ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1218
                        self isInInsertMode ifTrue:[
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1219
                            "/ self ~~ Transcript ifTrue:[ (nLines > 1 and:[(lines second ? '') startsWith:'111']) ifTrue:['e6a' printCR.self halt.]].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1220
                            self insertLines:lines withCR:true.
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1221
                            "/ self ~~ Transcript ifTrue:[ (nLines > 1 and:[(lines second ? '') startsWith:'111']) ifTrue:['e6a' printCR.self halt.]].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1222
                        ] ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1223
                            self replaceLines:lines withCR:true
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1224
                        ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1225
                        alwaysAppendAtEnd ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1226
                            self cursorToEnd.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1227
                        ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1228
                        (cursorLine >= (firstLineShown + nFullLinesShown)) ifTrue:[
5137
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
  1229
                            scrollLocked ifFalse:[
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
  1230
                                self withCursorOffDo:[
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
  1231
                                    self scrollDown:nLines
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
  1232
                                ]
fdd9ecc2f447 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5136
diff changeset
  1233
                            ].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1234
                        ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1235
                    ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1236
                ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1237
4650
172ea61953c3 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4647
diff changeset
  1238
                "/ self ~~ Transcript ifTrue:[ (nLines > 1 and:[(lines second ? '') startsWith:'111']) ifTrue:['e7a' printCR.self halt.]].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1239
                "and the last partial line - if any"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1240
                outstandingLine size ~~ 0 ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1241
                    self isInInsertMode ifTrue:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1242
                        self insertStringAtCursor:outstandingLine.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1243
                    ] ifFalse:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1244
                        self replaceStringAtCursor:outstandingLine.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1245
                    ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1246
                    outstandingLine := ''.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1247
                ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1248
                self checkLineLimit.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1249
                "/ device flush.
5147
b36c9ea52b1d class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5137
diff changeset
  1250
].
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1251
            ] ensure:[
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1252
                inFlush := false.
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1253
            ]
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1254
        ].
4657
0a14c5312937 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4654
diff changeset
  1255
"/        flushPending ifTrue:[
0a14c5312937 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4654
diff changeset
  1256
"/            flushPending := false.
0a14c5312937 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4654
diff changeset
  1257
"/            self installDelayedUpdate
0a14c5312937 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4654
diff changeset
  1258
"/        ]
4643
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1259
    ].
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1260
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1261
    "Modified: / 9.11.1998 / 21:17:56 / cg"
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1262
!
7760e44f8497 class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 4621
diff changeset
  1263
3774
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1264
flash
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1265
    "make sure everything is visible, before flashing"
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1266
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1267
    self endEntry.
b5f2c82f4995 changed #flash
Claus Gittinger <cg@exept.de>
parents: 3710
diff changeset
  1268
    super flash.
5408
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1269
!
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1270
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1271
flash:message withColor:flashColor
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1272
    "make sure everything is visible, before flashing"
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1273
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1274
    self endEntry.
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1275
    super flash:message withColor:flashColor.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  1276
! !
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1277
928
d120ad0c0422 commentary
Claus Gittinger <cg@exept.de>
parents: 835
diff changeset
  1278
!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
  1279
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1280
version
5408
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1281
    ^ '$Header$'
3958
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
  1282
!
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
  1283
842f88c39406 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 3852
diff changeset
  1284
version_CVS
5408
b10d1764865f class: TextCollector
Claus Gittinger <cg@exept.de>
parents: 5330
diff changeset
  1285
    ^ '$Header$'
363
d780a45df2d4 MVC operation: scroll to bottom when model changes the text.
Stefan Vogel <sv@exept.de>
parents: 308
diff changeset
  1286
! !
2632
80c3c7c5cc7a endEntry
penk
parents: 2613
diff changeset
  1287
4503
08d33a9017e2 class: TextCollector
Stefan Vogel <sv@exept.de>
parents: 4476
diff changeset
  1288
2025
0c9729befabc allow current transcript to be reassigned temporarily
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
  1289
TextCollector initialize!