EditTextView.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 29 Jul 2016 22:05:57 +0100
branchjv
changeset 5810 ff31884ac479
parent 5809 a5cecde02b21
parent 5795 ee8125645546
child 5828 990b7b5c4a94
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5795
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
     1
"{ Encoding: utf8 }"
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
     2
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     3
"
5
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1989 by Claus Gittinger
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
     5
              All Rights Reserved
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     6
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    13
"
2184
fb634dc3e606 learn (Cmd-l)and executeMacro (Cmd-M)
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
    14
"{ Package: 'stx:libwidg' }"
fb634dc3e606 learn (Cmd-l)and executeMacro (Cmd-M)
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
    15
5239
0312ca8fd55e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
    16
"{ NameSpace: Smalltalk }"
0312ca8fd55e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
    17
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    18
TextView subclass:#EditTextView
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    19
	instanceVariableNames:'cursorLine cursorVisibleLine cursorCol cursorShown
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    20
		prevCursorState readOnly modifiedChannel fixedSize exceptionBlock
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    21
		cursorFgColor cursorBgColor cursorNoFocusFgColor cursorType
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    22
		cursorTypeNoFocus typeOfSelection lastAction replacing
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    23
		showMatchingParenthesis hasKeyboardFocus acceptAction lockUpdates
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    24
		tabMeansNextField autoIndent insertMode editMode trimBlankLines
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    25
		wordWrap replacementWordSelectStyle acceptChannel acceptEnabled
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    26
		st80Mode disableIfInvisible cursorMovementWhenUpdating learnMode
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    27
		learnedMacro cursorLineHolder cursorColHolder tabRequiresControl
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    28
		undoSupport lastStringFromReplaceForNextSearch
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    29
		lastReplacementInfo completionSupport codeAspectHolder'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    30
	classVariableNames:'DefaultCursorForegroundColor DefaultCursorBackgroundColor
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    31
		DefaultCursorType DefaultCursorNoFocusForegroundColor
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    32
		DefaultCursorTypeNoFocus LastColumnNumberForSort Macros'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    33
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    34
	category:'Views-Text'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    35
!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
    36
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    37
Object subclass:#EditAction
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    38
	instanceVariableNames:'userFriendlyInfo'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    39
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    40
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    41
	privateIn:EditTextView
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    42
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    43
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    44
EditTextView::EditAction subclass:#DeleteRange
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    45
	instanceVariableNames:'line1 col1 line2 col2'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    46
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    47
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    48
	privateIn:EditTextView
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    49
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
    50
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
    51
EditTextView::EditAction subclass:#DeleteCharacters
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    52
	instanceVariableNames:'line col1 col2'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    53
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    54
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    55
	privateIn:EditTextView
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
    56
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
    57
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    58
Object subclass:#EditMode
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    59
	instanceVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    60
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    61
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    62
	privateIn:EditTextView
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    63
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    64
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    65
EditTextView::EditMode subclass:#InsertAndSelectMode
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    66
	instanceVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    67
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    68
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    69
	privateIn:EditTextView::EditMode
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    70
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    71
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    72
EditTextView::EditMode subclass:#InsertMode
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    73
	instanceVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    74
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    75
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    76
	privateIn:EditTextView::EditMode
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    77
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    78
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    79
EditTextView::EditMode subclass:#OverwriteMode
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    80
	instanceVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    81
	classVariableNames:'InsertMode OverwriteMode InsertAndSelectMode'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    82
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    83
	privateIn:EditTextView::EditMode
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    84
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
    85
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
    86
Query subclass:#ExecutingMacroQuery
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    87
	instanceVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    88
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    89
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    90
	privateIn:EditTextView
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
    91
!
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
    92
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
    93
Object subclass:#LastReplacementInfo
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    94
	instanceVariableNames:'lastReplacement lastStringToReplace lastReplaceWasMatch
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    95
		lastReplaceIgnoredCase stillCollectingInput previousReplacements'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    96
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    97
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
    98
	privateIn:EditTextView
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
    99
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
   100
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   101
EditTextView::EditAction subclass:#PasteString
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   102
	instanceVariableNames:'line col string selected'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   103
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   104
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   105
	privateIn:EditTextView
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   106
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   107
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   108
EditTextView::EditAction subclass:#ReplaceCharacter
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   109
	instanceVariableNames:'line col character'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   110
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   111
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   112
	privateIn:EditTextView
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   113
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
   114
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
   115
EditTextView::EditAction subclass:#ReplaceCharacters
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   116
	instanceVariableNames:'line col1 col2 characters'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   117
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   118
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   119
	privateIn:EditTextView
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
   120
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
   121
3131
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   122
EditTextView::EditAction subclass:#ReplaceContents
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   123
	instanceVariableNames:'text'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   124
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   125
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   126
	privateIn:EditTextView
3131
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   127
!
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
   128
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
   129
EditTextView::EditAction subclass:#ReplaceLine
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   130
	instanceVariableNames:'line text'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   131
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   132
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   133
	privateIn:EditTextView
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
   134
!
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
   135
3402
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
   136
EditTextView::EditAction subclass:#ReplaceLines
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   137
	instanceVariableNames:'line text'
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   138
	classVariableNames:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   139
	poolDictionaries:''
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
   140
	privateIn:EditTextView
3402
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
   141
!
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
   142
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   143
EditTextView::EditAction subclass:#RestoreSelectionAndCursor
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   144
	instanceVariableNames:'cursorLine cursorCol selectionStartLine selectionStartCol
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   145
		selectionEndLine selectionEndCol'
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   146
	classVariableNames:''
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   147
	poolDictionaries:''
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   148
	privateIn:EditTextView
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   149
!
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
   150
865
d42c7c99e67d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   151
!EditTextView class methodsFor:'documentation'!
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   152
33
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   153
copyright
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   154
"
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   155
 COPYRIGHT (c) 1989 by Claus Gittinger
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   156
              All Rights Reserved
33
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   157
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   158
 This software is furnished under a license and may be used
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   159
 only in accordance with the terms of that license and with the
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   160
 inclusion of the above copyright notice.   This software may not
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   161
 be provided or otherwise made available to, or used by, any
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   162
 other person.  No title to or ownership of the software is
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   163
 hereby transferred.
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   164
"
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   165
!
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   166
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   167
documentation
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   168
"
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   169
    a view for editable text - adds editing functionality to TextView
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   170
    Also, it adds accept functionality, and defines a new actionBlock:
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   171
    acceptAction to be performed for accept
125
claus
parents: 123
diff changeset
   172
claus
parents: 123
diff changeset
   173
    If used with a model, this is informed by sending it a changeMsg with
claus
parents: 123
diff changeset
   174
    the current contents as argument.
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   175
    (however, it is possible to define both changeMsg and acceptAction)
125
claus
parents: 123
diff changeset
   176
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 297
diff changeset
   177
    Please read the historic notice in the ListView class.
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   178
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   179
    [Instance variables:]
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   180
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   181
        cursorLine              <Number>        line where cursor sits (1..)
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   182
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   183
        cursorVisibleLine       <Number>        visible line where cursor sits (1..nLinesShown)
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   184
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   185
        cursorCol               <Number>        col where cursor sits (1..)
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   186
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   187
        cursorShown             <Boolean>       true, if cursor is currently shown
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   188
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   189
        readOnly                <Boolean>       true, if text may not be edited
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   190
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   191
        modifiedChannel         <ValueHolder>   holding true, if text has been modified.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   192
                                                cleared on accept.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   193
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   194
        acceptChannel           <ValueHolder>   holding true, if text has been accepted.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   195
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   196
        fixedSize               <Boolean>       true, if no lines may be added/removed
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   197
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   198
        exceptionBlock          <Block>         block to be evaluated when readonly text is about to be modified
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   199
                                                if it returns true, the modification will be done anyway.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   200
                                                if it returns anything else, the modification is not done.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   201
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   202
        cursorFgColor           <Color>         color used for cursor drawing
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   203
        cursorBgColor           <Color>         color used for cursor drawing
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   204
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   205
        cursorType              <Symbol>        how the cursor is drawn; currently implemented
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
   206
                                                are #none, #block (solid-block cursor), #ibeam
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   207
                                                (vertical bar at insertion point)
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
   208
                                                and #caret (caret below insertion-point).
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
   209
                                                see cursorType: for an up-to-date list.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   210
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   211
        cursorTypeNoFocus       <Symbol>        like above, if view has no focus
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   212
                                                nil means: hide the cursor.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   213
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   214
        undoAction              <Block>         block which undoes last cut, paste or replace
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   215
                                                (not yet fully implemented)
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   216
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   217
        typeOfSelection         <Symbol>        #paste, if selection created by paste, nil otherwise
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   218
                                                this affects the next keyPress: if #paste it does not
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   219
                                                replace; otherwise it replaces the selection.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   220
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   221
        lastCut                 <String>        last cut or replaced string
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   222
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   223
        lastReplacementInfo     <LastReplacementInfo>        holds the information about the last replace action
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   224
                                                             lastStringToReplace is the string to be replaced by lastReplacement
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   225
                                                             lastReplacement is the string to replace lastStringToReplace
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   226
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   227
        lastStringFromReplaceForNextSearch   <String>        string to be taken be the next search action 
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
   228
                                                             (cleared after a new selection)
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   229
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   230
        replacing               <Boolean>       true if entered characters replace last selection
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   231
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   232
        showMatchingParenthesis <Boolean>       if true, shows matching parenthesis
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   233
                                                when entering one; this is the default.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   234
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   235
        hasKeyboardFocus        <Boolean>       true if this view has the focus
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   236
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   237
        acceptAction            <Block>         accept action - evaluated passing the contents as
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   238
                                                argument
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   239
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   240
        tabMeansNextField       <Boolean>       if true, Tab is ignored as input and shifts keyboard
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   241
                                                focus to the next field. For editTextViews, this is false
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   242
                                                by default (i.e. tabs can be entered into the text).
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   243
                                                For some subclasses (inputFields), this may be true.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   244
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   245
        trimBlankLines          <Boolean>       if true, trailing blanks are
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   246
                                                removed when editing.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   247
                                                Default is true.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   248
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   249
        wordWrap                <Boolean>       Currently not used.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   250
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   251
        lockUpdates             <Boolean>       internal, private
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   252
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   253
        prevCursorState         <Boolean>       temporary, private
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   254
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   255
        cursorMovementWhenUpdating
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   256
                                <Symbol>        defines where the cursor is to be positioned if the
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   257
                                                model changes its value by some outside activity
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   258
                                                (i.e. not by user input into the field).
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   259
                                                Can be one of:
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   260
                                                    #keep / nil     -> stay where it was
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   261
                                                    #endOfText      -> cursor to the end
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   262
                                                    #endOfLine      -> stay in the line, but move to end
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   263
                                                    #beginOfText    -> cursor to the beginning
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   264
                                                    #beginOfLine    -> stay in the line, but move to begin
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   265
                                                The default is #beginOfText
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   266
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   267
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   268
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   269
        dropTarget              <DropTarget|nil> drop operation descriptor or nil (drop disabled)
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
   270
62794ae04446 support drop
ca
parents: 2580
diff changeset
   271
2712
e83d71c9bdec ST80Mode classVariables is now UserPreferences.st80EditMode
Claus Gittinger <cg@exept.de>
parents: 2707
diff changeset
   272
    userPreference values:
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   273
        userPreferences.st80EditMode
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   274
                                <Boolean>       if true, cursor positioning is
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   275
                                                done as in vi or ST80; i.e.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   276
                                                wysiwyg mode is somewhat relaxed,
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   277
                                                in that the cursor cannot be
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   278
                                                positioned behind a lines end.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   279
                                                This is not yet completely implemented.
33
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   280
    used globals:
5eeef3ea8ebd added access methods for cursorLine & cursorCol
claus
parents: 25
diff changeset
   281
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   282
        DeleteHistory           <Text>          last 1000 lines of deleted text
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   283
                                                (but only if this variable exists already)
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   284
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   285
    [styleSheet parameters:]
121
claus
parents: 118
diff changeset
   286
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   287
        textCursorForegroundColor <Color>          cursor fg color; default: text background
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   288
        textCursorBackgroundColor <Color>          cursor bg color; default: text foreground
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   289
        textCursorNoFocusForegroundColor
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   290
                                  <Color>          cursor fg color if no focus; default: cursor fg color
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   291
        textCursorType            <Symbol>         cursor type; default:  #block
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   292
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   293
    [author:]
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   294
        Claus Gittinger
586
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   295
032b3245e53a documentation
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
   296
    [see also:]
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   297
        CodeView Workspace TextView ListView
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
   298
        EditField
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   299
"
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   300
!
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   301
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   302
examples
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   303
"
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   304
  non MVC operation:
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   305
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   306
    basic setup:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   307
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   308
        |top textView|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   309
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   310
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   311
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   312
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   313
        textView := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   314
        textView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   315
        top addSubView:textView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   316
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   317
        textView contents:('/etc/hosts' asFilename contentsOfEntireFile).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   318
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   319
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   320
                                                                        [exEnd]
594
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   321
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   322
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   323
    with vertical scrollbar:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   324
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   325
        |top scrollView textView|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   326
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   327
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   328
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   329
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   330
        scrollView := ScrollableView for:EditTextView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   331
        textView := scrollView scrolledView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   332
        scrollView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   333
        top addSubView:scrollView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   334
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   335
        textView contents:('/etc/hosts' asFilename contentsOfEntireFile).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   336
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   337
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   338
                                                                        [exEnd]
594
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   339
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   340
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   341
    with horizontal & vertical scrollbars:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   342
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   343
        |top scrollView textView|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   344
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   345
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   346
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   347
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   348
        scrollView := HVScrollableView for:EditTextView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   349
        textView := scrollView scrolledView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   350
        scrollView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   351
        top addSubView:scrollView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   352
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   353
        textView contents:('/etc/hosts' asFilename contentsOfEntireFile).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   354
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   355
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   356
                                                                        [exEnd]
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   357
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   358
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   359
    set the action for accept:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   360
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   361
        |top textView|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   362
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   363
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   364
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   365
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   366
        textView := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   367
        textView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   368
        top addSubView:textView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   369
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   370
        textView contents:('/etc/hosts' asFilename contentsOfEntireFile).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   371
        textView acceptAction:[:contents |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   372
                                Transcript showCR:'will not overwrite the file with:'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   373
                                Transcript showCR:contents asString
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   374
                              ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   375
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   376
                                                                        [exEnd]
594
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   377
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   378
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   379
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
   380
    non-string (text) items:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   381
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   382
        |top textView list|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   383
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   384
        list := '/etc/hosts' asFilename contentsOfEntireFile asStringCollection.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   385
        1 to:list size by:2 do:[:nr |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   386
            list at:nr put:(Text string:(list at:nr)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   387
                                 emphasis:(Array with:#bold with:(#color->Color red)))
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   388
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   389
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   390
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   391
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   392
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   393
        textView := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   394
        textView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   395
        top addSubView:textView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   396
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   397
        textView contents:list.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   398
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   399
                                                                        [exEnd]
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
   400
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
   401
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
   402
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   403
  MVC operation:
594
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   404
    (the examples model here is a plug simulating a real model;
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   405
     real world applications would not use a plug ..)
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   406
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   407
        |top textView model|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   408
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   409
        model := Plug new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   410
        model respondTo:#accepted:
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   411
                   with:[:newContents |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   412
                                Transcript showCR:'will not overwrite the file with:'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   413
                                Transcript showCR:newContents asString
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   414
                        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   415
        model respondTo:#getList
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   416
                   with:['/etc/hosts' asFilename contentsOfEntireFile].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   417
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   418
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   419
        top := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   420
        top extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   421
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   422
        textView := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   423
        textView origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   424
        top addSubView:textView.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   425
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   426
        textView listMessage:#getList;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   427
                 model:model;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   428
                 changeMessage:#accepted:;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   429
                 aspect:#list.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   430
        top open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   431
                                                                        [exEnd]
594
b9c5a5e5f905 examples
Claus Gittinger <cg@exept.de>
parents: 586
diff changeset
   432
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   433
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   434
    two textViews on the same model:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   435
                                                                        [exBegin]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   436
        |top1 textView1 top2 textView2 model currentContents|
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   437
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   438
        model := Plug new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   439
        model respondTo:#accepted:
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   440
                   with:[:newContents |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   441
                                Transcript showCR:'accepted:'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   442
                                Transcript showCR:newContents asString.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   443
                                currentContents := newContents.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   444
                                model changed:#contents
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   445
                        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   446
        model respondTo:#getList
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   447
                   with:[Transcript showCR:'query'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   448
                         currentContents].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   449
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   450
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   451
        top1 := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   452
        top1 extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   453
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   454
        textView1 := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   455
        textView1 origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   456
        top1 addSubView:textView1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   457
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   458
        textView1 listMessage:#getList;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   459
                  model:model;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   460
                  aspect:#contents;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   461
                  changeMessage:#accepted:.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   462
        top1 open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   463
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   464
        top2 := StandardSystemView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   465
        top2 extent:300@200.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   466
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   467
        textView2 := EditTextView new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   468
        textView2 origin:0.0 @ 0.0 corner:1.0 @ 1.0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   469
        top2 addSubView:textView2.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   470
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   471
        textView2 listMessage:#getList;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   472
                  model:model;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   473
                  aspect:#contents;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   474
                  changeMessage:#accepted:.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   475
        top2 open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   476
                                                                        [exEnd]
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   477
"
4978
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   478
!
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   479
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   480
selection_and_cursor_movement
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   481
"
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   482
Changes done to implement 'standard' behaviour (that's how vast majority of widgets used in todays desktops behaves)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   483
as opposed to 'traditional' which is what how it was in St/X 'ever since'
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   484
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   485
* Numerous off-by-one bugs
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   486
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   487
* Extending selection by dragging:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   488
  Scenario:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   489
    1. Select & drag to expand beggining of the selection (i.e., drag from 'end' to 'beggining'
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   490
    2. Stop dragging
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   491
    3. Press Shift-Left / Shift-Right (to refine selection)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   492
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   493
    Traditional ST/X: end of selection is moved
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   494
    Standard:  beginning of selection is moved
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   495
      (checked on Notepad, Gedit (GTK+), Sublime (Win+Lin), Eclipse, Firefox)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   496
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   497
* Extending selection by Shift-Home / Shift-End
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   498
  Scenario:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   499
    1. Position cursor in the middle of the line
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   500
    2. Press Shift-Home (line for beginning should be selected)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   501
    3. Press Shift-Right (to refine selection)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   502
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   503
    Traditional ST/X: end of selection is moved
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   504
    Standard:  beginning of selection is moved
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   505
      (checked on Notepad, Gedit (GTK+), Sublime (Win+Lin), Eclipse, Firefox)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   506
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   507
* Selection flip by Shift-Home / Shift-End
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   508
  Scenario A:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   509
    1. Position cursor in the middle of the line to column C
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   510
    2. Press Shift-Home (line from beginning should be selected)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   511
    2. Press Shift-End
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   512
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   513
    Traditional ST/X: end of selection is moved so whole line is selected
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   514
    Standard: Selection 'flips' so part of line from column C to the end is selected
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   515
      (checked on Notepad, Gedit (GTK+), Sublime (Win+Lin), Eclipse, Firefox)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   516
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   517
  Scenario B:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   518
    1. Position cursor in the middle of the line to column C
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   519
    2. Press Shift-End (column C to the end of line should be selected)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   520
    2. Press Shift-Home
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   521
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   522
    Traditional ST/X: beginning of selection is moved so whole line is selected
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   523
    Standard: Selection 'flips' so part of line from the beginning to column C is selected
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   524
      (checked on Notepad, Gedit (GTK+), Sublime (Win+Lin), Eclipse, Firefox)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   525
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   526
  NOTE: This could be controlled by 
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   527
    UserPreferences current selectionExtensionMode
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   528
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   529
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   530
* Extending selection with Ctrl-Shift-Left / Ctrl-Shift-Right
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   531
  Scenario A:
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   532
    1. Position cursor in the middle of the line to column C
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   533
    2. Select word
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   534
    3. Press Ctrl-Shift-Right, Ctrl-Shift-Right
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   535
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   536
    Traditional ST/X: nothing happens at all
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   537
    Standard: Selection is extended to include a space (first press) and a word right to previously selected one
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   538
      (checked on Notepad, Gedit (GTK+), Sublime (Win+Lin), Eclipse, Firefox)
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
   539
297
08eec8838a4c beep if cursor leaves the visible area
Claus Gittinger <cg@exept.de>
parents: 274
diff changeset
   540
"
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   541
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
   542
865
d42c7c99e67d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   543
!EditTextView class methodsFor:'defaults'!
59
450ce95a72a4 *** empty log message ***
claus
parents: 46
diff changeset
   544
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   545
defaultCompletionSupportClass
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   546
    ^ nil
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   547
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   548
    "Created: / 26-09-2013 / 17:59:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
   549
!
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
   550
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   551
st80Mode
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   552
    "return true, if the st80 editing mode is turned on.
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   553
     This setting affects the behavior of the cursor, when positioned
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
   554
     beyond the end of a line or the end of the text."
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   555
2647
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
   556
    ^ UserPreferences current st80EditMode
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   557
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   558
   "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   559
    EditTextView st80Mode:true
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   560
    EditTextView st80Mode:false
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   561
   "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   562
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   563
    "Modified: / 16.1.1998 / 22:54:57 / cg"
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   564
!
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   565
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   566
st80Mode:aBoolean
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   567
    "turns on/off st80 behavior, where the cursor cannot be positioned
2707
810c994db0b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2696
diff changeset
   568
     beyond the end of a line or the last line"
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   569
2647
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
   570
    UserPreferences current st80EditMode:aBoolean.
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   571
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   572
   "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   573
    EditTextView st80Mode:true
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   574
    EditTextView st80Mode:false
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   575
   "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   576
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   577
    "Modified: / 16.1.1998 / 22:55:19 / cg"
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   578
!
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   579
59
450ce95a72a4 *** empty log message ***
claus
parents: 46
diff changeset
   580
updateStyleCache
440
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   581
    "extract values from the styleSheet and cache them in class variables"
2beb33cb0146 added style resource directive
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   582
1390
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   583
    <resource: #style (#'textCursor.foregroundColor' #'textCursor.backgroundColor'
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   584
                       #'textCursor.noFocusForegroundColor'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   585
                       #'textCursor.type'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   586
                       #'textCursor.typeNoFocus'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   587
                       #'editText.st80Mode')>
1355
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
   588
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
   589
    DefaultCursorForegroundColor := StyleSheet colorAt:'textCursor.foregroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
   590
    DefaultCursorBackgroundColor := StyleSheet colorAt:'textCursor.backgroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
   591
    DefaultCursorNoFocusForegroundColor := StyleSheet colorAt:'textCursor.noFocusForegroundColor'.
6725ab9cc6f5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1339
diff changeset
   592
    DefaultCursorType := StyleSheet at:'textCursor.type' default:#block.
1534
bcb211e1b41a read noFocus cursorStyle from styleSheet
Claus Gittinger <cg@exept.de>
parents: 1533
diff changeset
   593
    DefaultCursorTypeNoFocus := StyleSheet at:'textCursor.typeNoFocus'.
bcb211e1b41a read noFocus cursorStyle from styleSheet
Claus Gittinger <cg@exept.de>
parents: 1533
diff changeset
   594
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   595
    "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   596
     self updateStyleCache
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   597
    "
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
   598
1534
bcb211e1b41a read noFocus cursorStyle from styleSheet
Claus Gittinger <cg@exept.de>
parents: 1533
diff changeset
   599
    "Modified: / 20.5.1998 / 04:27:41 / cg"
59
450ce95a72a4 *** empty log message ***
claus
parents: 46
diff changeset
   600
! !
450ce95a72a4 *** empty log message ***
claus
parents: 46
diff changeset
   601
3431
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   602
!EditTextView class methodsFor:'specs'!
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   603
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   604
searchReplaceDialogSpec
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   605
    "This resource specification was automatically generated
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   606
     by the UIPainter of ST/X."
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   607
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   608
    "Do not manually edit this!! If it is corrupted,
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   609
     the UIPainter may not be able to read the specification."
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   610
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   611
    "
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   612
     UIPainter new openOnClass:DAPASX::ProjectEditorTextView andSelector:#searchReplaceDialogSpec
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   613
    "
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   614
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   615
    <resource: #canvas>
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   616
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
   617
    ^
3431
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   618
     #(FullSpec
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   619
        name: searchReplaceDialogSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   620
        window:
3431
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   621
       (WindowSpec
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   622
          label: 'String Search and Replace'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   623
          name: 'String Search and Replace'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   624
          min: (Point 283 196)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   625
          max: (Point 283 196)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   626
          bounds: (Rectangle 0 0 279 192)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   627
        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   628
        component:
3431
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   629
       (SpecCollection
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   630
          collection: (
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   631
           (LabelSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   632
              label: 'Search Pattern:'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   633
              name: 'label'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   634
              layout: (LayoutFrame 1 0.0 3 0 -1 1.0 20 0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   635
              level: 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   636
              translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   637
              adjust: left
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   638
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   639
           (ComboBoxSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   640
              name: 'patternComboBox'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   641
              layout: (LayoutFrame 3 0.0 26 0 -3 1.0 48 0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   642
              tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   643
              model: searchPattern
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   644
              immediateAccept: false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   645
              acceptOnLeave: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   646
              acceptOnReturn: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   647
              acceptOnTab: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   648
              acceptOnLostFocus: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   649
              acceptOnPointerLeave: false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   650
              autoSelectInitialText: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   651
              comboList: patternList
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   652
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   653
           (ComboBoxSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   654
              name: 'replaceComboBox'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   655
              layout: (LayoutFrame 3 0.0 76 0 -3 1.0 98 0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   656
              tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   657
              model: replacePattern
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   658
              immediateAccept: false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   659
              acceptOnLeave: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   660
              acceptOnReturn: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   661
              acceptOnTab: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   662
              acceptOnLostFocus: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   663
              acceptOnPointerLeave: false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   664
              autoSelectInitialText: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   665
              comboList: patternList
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   666
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   667
           (CheckBoxSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   668
              label: 'Ignore Case'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   669
              name: 'ignoreCaseCheckBox'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   670
              layout: (LayoutFrame 3 0.0 107 0 -3 1.0 130 0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   671
              level: 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   672
              tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   673
              model: ignoreCase
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   674
              translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   675
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   676
           (VariableVerticalPanelSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   677
              name: 'VariableVerticalPanel1'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   678
              layout: (LayoutFrame 0 0 -64 1 0 1 -4 1)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   679
              component:
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   680
             (SpecCollection
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   681
                collection: (
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   682
                 (HorizontalPanelViewSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   683
                    name: 'HorizontalPanel1'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   684
                    level: 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   685
                    horizontalLayout: fitSpace
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   686
                    verticalLayout: center
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   687
                    horizontalSpace: 3
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   688
                    verticalSpace: 3
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   689
                    ignoreInvisibleComponents: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   690
                    reverseOrderIfOKAtLeft: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   691
                    component:
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   692
                   (SpecCollection
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   693
                      collection: (
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   694
                       (ActionButtonSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   695
                          label: 'Replace'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   696
                          name: 'replaceButton'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   697
                          level: 2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   698
                          translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   699
                          tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   700
                          model: replaceAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   701
                          extent: (Point 134 21)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   702
                        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   703
                       (ActionButtonSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   704
                          label: 'Replace All'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   705
                          name: 'replaceAllButton'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   706
                          level: 2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   707
                          borderWidth: 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   708
                          translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   709
                          tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   710
                          model: replaceAllAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   711
                          extent: (Point 134 21)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   712
                        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   713
                       )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   714
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   715
                    )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   716
                  )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   717
                 (HorizontalPanelViewSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   718
                    name: 'horizontalPanelView'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   719
                    level: 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   720
                    horizontalLayout: fitSpace
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   721
                    verticalLayout: center
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   722
                    horizontalSpace: 3
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   723
                    verticalSpace: 3
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   724
                    ignoreInvisibleComponents: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   725
                    reverseOrderIfOKAtLeft: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   726
                    component:
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   727
                   (SpecCollection
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   728
                      collection: (
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   729
                       (ActionButtonSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   730
                          label: 'Cancel'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   731
                          name: 'cancelButton'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   732
                          level: 2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   733
                          translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   734
                          tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   735
                          model: cancel
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   736
                          extent: (Point 88 21)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   737
                        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   738
                       (ActionButtonSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   739
                          label: 'Prev'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   740
                          name: 'prevButton'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   741
                          level: 2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   742
                          translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   743
                          tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   744
                          model: prevAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   745
                          extent: (Point 89 21)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   746
                        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   747
                       (ActionButtonSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   748
                          label: 'Next'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   749
                          name: 'nextButton'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   750
                          level: 2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   751
                          borderWidth: 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   752
                          translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   753
                          tabable: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   754
                          model: nextAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   755
                          isDefault: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   756
                          extent: (Point 88 21)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   757
                        )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   758
                       )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   759
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   760
                    )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   761
                  )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   762
                 )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   763
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   764
              )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   765
              handles: (Any 0.5 1.0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   766
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   767
           (LabelSpec
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   768
              label: 'Replace By:'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   769
              name: 'ReplaceLabel'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   770
              layout: (LayoutFrame 1 0.0 53 0 -1 1.0 70 0)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   771
              level: 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   772
              translateLabel: true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   773
              adjust: left
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   774
            )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   775
           )
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   776
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   777
        )
3431
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   778
      )
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   779
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   780
    "Modified: / 11-10-2006 / 21:05:09 / cg"
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   781
! !
6bf93f206587 searchReplace spec
fm
parents: 3430
diff changeset
   782
2744
cb920467a4b4 method category rename
Claus Gittinger <cg@exept.de>
parents: 2730
diff changeset
   783
!EditTextView methodsFor:'Compatibility-ST80'!
1552
d3d4afaf4c68 dummy ST80 compatibility: #autoAccept:
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   784
d3d4afaf4c68 dummy ST80 compatibility: #autoAccept:
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   785
autoAccept:aBoolean
d3d4afaf4c68 dummy ST80 compatibility: #autoAccept:
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   786
    "ignored for now"
d3d4afaf4c68 dummy ST80 compatibility: #autoAccept:
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   787
2019
b6b078ea3bbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2018
diff changeset
   788
    "Created: / 5.6.1998 / 15:30:32 / cg "
1585
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   789
!
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   790
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   791
continuousAccept:aBoolean
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   792
    "ignored for now"
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   793
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   794
    "Created: / 19.6.1998 / 00:03:49 / cg"
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   795
!
9bf6cf249376 two more ST-80 compatibility methods.
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
   796
1390
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   797
cutSelection
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   798
    self cut
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   799
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   800
    "Created: / 31.10.1997 / 03:29:50 / cg"
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   801
!
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   802
1590
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   803
deselect
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   804
    "remove the selection"
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   805
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   806
    ^ self unselect
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   807
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   808
    "Created: / 19.6.1998 / 02:41:54 / cg"
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   809
!
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   810
2101
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   811
enabled:aBoolean
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   812
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   813
    self readOnly:aBoolean not
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   814
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   815
    "Created: / 30.3.1999 / 15:10:23 / stefan"
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   816
    "Modified: / 30.3.1999 / 15:10:53 / stefan"
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   817
!
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   818
1732
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   819
find:pattern
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   820
    self searchFwd:pattern ifAbsent:nil
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   821
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   822
    "Created: / 29.1.1999 / 19:09:42 / cg"
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   823
    "Modified: / 29.1.1999 / 19:10:12 / cg"
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   824
!
2d433e114bbc added #find: (for ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 1717
diff changeset
   825
1294
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   826
insert:aString at:aCharacterPosition
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   827
    "insert a string at aCharacterPosition."
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   828
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   829
    |line col|
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   830
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   831
    line := self lineOfCharacterPosition:aCharacterPosition.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   832
    col := aCharacterPosition - (self characterPositionOfLine:line col:1) + 1.
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   833
    col < 1 ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
   834
        col := 1
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   835
    ].
1294
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   836
    self insertString:aString atLine:line col:col.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   837
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   838
    "
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   839
     |top v|
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   840
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   841
     top := StandardSystemView new.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   842
     top extent:300@300.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   843
     v := EditTextView origin:0.0@0.0 corner:1.0@1.0 in:top.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   844
     top openAndWait.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   845
     v contents:'1234567890\1234567890\1234567890\' withCRs.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   846
     v insert:'<- hello there' at:5.
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   847
    "
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   848
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
   849
    "Modified: / 5.4.1998 / 17:20:08 / cg"
1294
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   850
!
dac755d4acd3 added #insert:at: - for inserting at a particular character position.
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   851
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   852
insertAndSelect:aString at:aCharacterPosition
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   853
    "insert a selected string at aCharacterPosition."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   854
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   855
    |line col|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   856
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   857
    line := self lineOfCharacterPosition:aCharacterPosition.
2310
861ab02b13b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   858
    col := (aCharacterPosition - (self characterPositionOfLine:line col:1) + 1) max:1.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   859
    self insertString:aString atLine:line col:col.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   860
    self selectFromLine:line col:col toLine:line col:col + aString size - 1
125
claus
parents: 123
diff changeset
   861
    "
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   862
     |v|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   863
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   864
     v := EditTextView new openAndWait.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   865
     v contents:'1234567890\1234567890\1234567890\' withCRs.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   866
     v insertAndSelect:'<- hello there' at:5.
125
claus
parents: 123
diff changeset
   867
    "
1390
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   868
!
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   869
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   870
pasteSelection
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   871
    self paste
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   872
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
   873
    "Created: / 31.10.1997 / 03:28:53 / cg"
1590
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   874
!
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   875
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   876
replaceSelectionWith:aString
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   877
    ^ self replaceSelectionBy:aString
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   878
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   879
    "Created: / 19.6.1998 / 02:42:32 / cg"
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   880
!
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   881
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   882
selectAt:pos
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   883
    "move the cursor before cursorPosition."
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   884
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   885
    self cursorToCharacterPosition:pos
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   886
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   887
    "Modified: / 19.6.1998 / 02:41:28 / cg"
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   888
    "Created: / 19.6.1998 / 02:43:39 / cg"
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   889
!
b537d0d4e6d3 more ST-80 compatibility
Claus Gittinger <cg@exept.de>
parents: 1589
diff changeset
   890
2101
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   891
textHasChanged
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   892
    ^ self modified
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   893
8f2fab818f71 category renamining
Claus Gittinger <cg@exept.de>
parents: 2088
diff changeset
   894
    "Created: / 19.6.1998 / 00:09:43 / cg"
2117
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   895
!
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   896
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   897
textHasChanged:aBoolean
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   898
    "ST-80 compatibility: set/clear the modified flag."
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   899
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   900
    self modified:aBoolean
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   901
b50c6d182e28 added #textHasChanged: for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2107
diff changeset
   902
    "Created: / 5.2.2000 / 17:07:59 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   903
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
   904
4585
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   905
!EditTextView methodsFor:'accessing'!
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   906
4803
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   907
codeAspect
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   908
    | codeAspect app |
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   909
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   910
    codeAspect := codeAspectHolder value.
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   911
    codeAspect notNil ifTrue:[^codeAspect].
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   912
    self editedMethod notNil ifTrue:[^SyntaxHighlighter codeAspectMethod].
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   913
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   914
    "/ Applications should set it explictly, however, to make it behavinh like
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   915
    "/ CodeView2, I kept fetching code here for now.
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   916
    ^((app := self topView application) notNil and:[app respondsTo: #codeAspect])
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   917
        ifTrue:[app codeAspect]
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   918
        ifFalse:[nil]
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   919
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   920
    "Created: / 27-09-2013 / 09:53:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   921
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   922
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   923
codeAspect: aSymbol
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   924
    codeAspectHolder value: aSymbol
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   925
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   926
    "Created: / 27-09-2013 / 09:50:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   927
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   928
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   929
completionSupport
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   930
    ^ completionSupport
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   931
!
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   932
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   933
completionSupport:anEditTextViewCompletionSupport
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   934
    completionSupport := anEditTextViewCompletionSupport.
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   935
!
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   936
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   937
completionSupportClass
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   938
    ^ self class defaultCompletionSupportClass
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   939
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   940
    "Created: / 26-09-2013 / 17:54:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   941
!
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
   942
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   943
editedClass
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   944
    |cm|
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   945
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   946
    cm := self editedMethodOrClass.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   947
    cm isBehavior ifTrue:[^ cm].
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   948
    cm isMethod ifTrue:[^ cm mclass].
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   949
    ^ nil
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   950
!
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   951
4775
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   952
editedLanguage
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   953
    ^ nil
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   954
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   955
    "Created: / 18-09-2013 / 14:16:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   956
!
e34752e6214e Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4771
diff changeset
   957
4803
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   958
editedLanguage: aProgrammingLanguage
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   959
    "Sets the edited language. Only defined here to make it polymorph with Workspace"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   960
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   961
    "Created: / 27-09-2013 / 10:15:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   962
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   963
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   964
editedMethod
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   965
    |cm|
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   966
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   967
    cm := self editedMethodOrClass.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   968
    cm isMethod ifTrue:[^ cm].
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   969
    cm isBehavior ifTrue:[^ nil].
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   970
    ^ nil
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   971
!
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   972
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   973
editedMethodOrClass
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   974
    ^ nil
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   975
!
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
   976
4803
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   977
editedMethodOrClass: methodOrClass
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   978
    "Sets the edited method or class. Only defined here to make it polymorph with Workspace"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   979
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   980
    "Created: / 27-09-2013 / 10:10:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   981
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
   982
4585
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   983
hasSelectionOrTextInCursorLine
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   984
    ^ (self selectionOrTextOfCursorLine:false) notNil
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   985
!
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   986
4589
f6da08d703f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4585
diff changeset
   987
selectionOrTextOfCursorLine
f6da08d703f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4585
diff changeset
   988
    ^ self selectionOrTextOfCursorLine:true
f6da08d703f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4585
diff changeset
   989
!
f6da08d703f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4585
diff changeset
   990
4585
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   991
selectionOrTextOfCursorLine:doSelect
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   992
    |sel lNr line|
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   993
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   994
    sel := self selectionAsString.
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   995
    sel notNil ifTrue:[^ sel].
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   996
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   997
    lNr := self cursorLine.
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   998
    line := self listAt:lNr.
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
   999
    line notEmptyOrNil ifTrue:[
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1000
        doSelect ifTrue:[
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1001
            self selectLine:lNr.
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1002
        ].
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1003
        ^ line
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1004
    ].
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1005
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1006
    ^ nil
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1007
! !
7b31719bf07a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4580
diff changeset
  1008
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1009
!EditTextView methodsFor:'accessing-behavior'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1010
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1011
acceptAction
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1012
    "return the action to be performed on accept (or nil)"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1013
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1014
    ^ acceptAction
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1015
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1016
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1017
acceptAction:aBlock
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1018
    "set the action to be performed on accept"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1019
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1020
    acceptAction := aBlock
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1021
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1022
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1023
acceptChannel
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1024
    "return the valueHolder holding true if text was accepted.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1025
     By placing a true into this channel, an accept can also be forced."
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1026
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1027
    ^ acceptChannel
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1028
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1029
    "Modified: / 30.1.1998 / 14:17:11 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1030
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1031
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1032
acceptChannel:aValueHolder
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1033
    "set the valueHolder holding true if text was accepted.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1034
     By placing a true into this channel, an accept can also be forced."
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1035
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1036
    |prev|
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1037
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1038
    prev := acceptChannel.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1039
    acceptChannel := aValueHolder.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1040
    self setupChannel:aValueHolder for:nil withOld:prev
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1041
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1042
    "Created: / 30.1.1998 / 14:51:09 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1043
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1044
1108
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1045
acceptEnabled:aBoolean
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1046
    "enable/disable accept. This greys the corresponding item in the menu"
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1047
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1048
    acceptEnabled := aBoolean
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1049
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1050
    "Created: 7.3.1997 / 11:04:34 / cg"
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1051
!
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1052
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1053
accepted
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1054
    "return true if text was accepted"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1055
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1056
    ^ acceptChannel value
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1057
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1058
    "Created: 14.2.1997 / 16:43:46 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1059
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1060
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1061
accepted:aBoolean
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1062
    "set/clear the accepted flag.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1063
     This may force my current contents to be placed into my model."
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1064
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1065
    acceptChannel value:aBoolean.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1066
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1067
    "Created: / 14.2.1997 / 16:44:01 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1068
    "Modified: / 30.1.1998 / 14:20:15 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1069
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1070
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1071
autoIndent:aBoolean
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1072
    autoIndent := aBoolean
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1073
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1074
    "Created: 5.3.1996 / 14:37:50 / cg"
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1075
!
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1076
4803
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1077
codeAspectHolder
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1078
    ^ codeAspectHolder
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1079
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1080
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1081
codeAspectHolder:something
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1082
    codeAspectHolder := something.
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1083
!
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  1084
2774
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1085
cursorMovementWhenUpdating
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1086
    "return what is be done with the cursor,
2774
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1087
     when I get a new text (via the model or the #contents/#list)
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1088
     Allowed arguments are:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1089
        #keep / nil     -> stay where it was
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1090
        #endOfText      -> position cursor to the end
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1091
        #beginOfText    -> position cursor to the beginning
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1092
        #endOfLine      -> position cursor to the current lines end
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1093
        #beginOfLine    -> position cursor to the current lines start
2774
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1094
     The default is #beginOfText.
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1095
     This may be useful for fields which get new values assigned from
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1096
     the program (i.e. not from the user)"
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1097
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1098
    ^ cursorMovementWhenUpdating
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1099
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1100
    "Modified: 16.12.1995 / 16:27:55 / cg"
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1101
!
0415ba0f8cb5 cursorMovement getter
penk
parents: 2762
diff changeset
  1102
2133
47a23fdfc83f comment
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
  1103
cursorMovementWhenUpdating:aSymbolOrNil
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1104
    "define what should be done with the cursor,
2133
47a23fdfc83f comment
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
  1105
     when I get a new text (via the model or the #contents/#list)
47a23fdfc83f comment
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
  1106
     Allowed arguments are:
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1107
        #keep / nil     -> stay where it was
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1108
        #endOfText      -> position cursor to the end
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1109
        #beginOfText    -> position cursor to the beginning
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1110
        #endOfLine      -> position cursor to the current lines end
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1111
        #beginOfLine    -> position cursor to the current lines start
2133
47a23fdfc83f comment
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
  1112
     The default is #beginOfText.
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1113
     This may be useful for fields which get new values assigned from
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1114
     the program (i.e. not from the user)"
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1115
2133
47a23fdfc83f comment
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
  1116
    cursorMovementWhenUpdating := aSymbolOrNil
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1117
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1118
    "Modified: 16.12.1995 / 16:27:55 / cg"
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1119
!
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1120
2035
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1121
disableIfInvisible:aBoolean
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1122
    disableIfInvisible := aBoolean
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1123
!
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1124
2438
6406f4444ee4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
  1125
dontReplaceSelectionOnInput
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  1126
    "remember that the current selection was created by a paste operation
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  1127
     (as opposed to an explicit selection by the user).
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  1128
     This selection will not be replaced by followup user input,
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  1129
     so multiple pastes will be possible."
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  1130
5342
be32b0744ff3 Workaround to fix DNU in selector completion when DWIM-completer is used.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5340
diff changeset
  1131
    self hasSelection ifTrue:[ 
be32b0744ff3 Workaround to fix DNU in selector completion when DWIM-completer is used.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5340
diff changeset
  1132
        typeOfSelection := #paste
be32b0744ff3 Workaround to fix DNU in selector completion when DWIM-completer is used.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5340
diff changeset
  1133
    ].
be32b0744ff3 Workaround to fix DNU in selector completion when DWIM-completer is used.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5340
diff changeset
  1134
be32b0744ff3 Workaround to fix DNU in selector completion when DWIM-completer is used.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5340
diff changeset
  1135
    "Modified: / 02-05-2015 / 21:17:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2438
6406f4444ee4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
  1136
!
6406f4444ee4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2432
diff changeset
  1137
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1138
editModeHolder
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1139
    ^ editMode.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1140
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1141
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1142
editModeInsert
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1143
    editMode value:EditMode insertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1144
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1145
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1146
editModeInsertAndSelect
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1147
    editMode value:EditMode insertAndSelectMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1148
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1149
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1150
editModeOverwrite
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1151
    editMode value:EditMode overwriteMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1152
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1153
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1154
exceptionBlock:aBlock
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1155
    "define the action to be triggered when user tries to modify
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1156
     readonly text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1157
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1158
    exceptionBlock := aBlock
323
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1159
!
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1160
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1161
fixedSize
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1162
    "make the texts size fixed (no lines may be added).
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1163
     OBSOLETE: use readOnly"
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1164
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1165
    <resource:#obsolete>
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1166
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  1167
    |menu|
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  1168
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1169
    self obsoleteMethodWarning:'use #readOnly:'.
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1170
    readOnly == true ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1171
        readOnly := true.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1172
        (menu := self middleButtonMenu) notNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1173
            menu disableAll:#(cut paste replace indent)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1174
        ]
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1175
    ]
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1176
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1177
    "Modified: 14.2.1997 / 17:35:24 / cg"
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1178
!
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  1179
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  1180
insertMode:aBoolean
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1181
    editMode value:(aBoolean ifTrue:[EditMode insertMode] ifFalse:[EditMode overwriteMode])
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  1182
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  1183
    "Created: 6.3.1996 / 12:24:05 / cg"
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  1184
!
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  1185
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  1186
insertModeHolder
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1187
    ^ BlockValue
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1188
        with:[:m | m isInsertMode]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1189
        argument:(editMode).
3465
a6eb20608b1f BlockValue usage cleanup
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  1190
a6eb20608b1f BlockValue usage cleanup
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  1191
    "Modified: / 08-03-2007 / 22:58:37 / cg"
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1192
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1193
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  1194
isInInsertMode
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  1195
    ^ editMode value isInsertMode
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  1196
!
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  1197
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1198
isNotReadOnly
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1199
    "return true, if the text is not readonly."
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1200
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1201
    ^ self isReadOnly not
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1202
!
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  1203
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1204
isReadOnly
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1205
    "return true, if the text is readonly."
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1206
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1207
    ^ readOnly value
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1208
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1209
    "Modified: 14.2.1997 / 17:35:56 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1210
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1211
2796
481d9e54434c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2795
diff changeset
  1212
modeLabelHolder
481d9e54434c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2795
diff changeset
  1213
    "a valueHolder, which contains 'L' (learnMode), I (insertMode) or empty"
481d9e54434c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2795
diff changeset
  1214
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1215
    ^ BlockValue
4041
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1216
        with:[:e :l |
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1217
            self isReadOnly ifTrue:[
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1218
                ''
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1219
            ] ifFalse:[
5724
f0acb1250b87 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5719
diff changeset
  1220
                l ifTrue:[ 'L' allBold withColor:#red]
4041
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1221
                  ifFalse:[ e infoPrintString]]]
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1222
        argument:(self editModeHolder)
d3a015f9d5dd changed: #modeLabelHolder
Claus Gittinger <cg@exept.de>
parents: 4011
diff changeset
  1223
        argument:(self learnModeHolder).
3465
a6eb20608b1f BlockValue usage cleanup
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  1224
a6eb20608b1f BlockValue usage cleanup
Claus Gittinger <cg@exept.de>
parents: 3439
diff changeset
  1225
    "Modified: / 08-03-2007 / 22:58:59 / cg"
2796
481d9e54434c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2795
diff changeset
  1226
!
481d9e54434c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2795
diff changeset
  1227
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1228
modified
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1229
    "return true if text was modified"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1230
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1231
    ^ modifiedChannel value
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1232
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1233
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1234
modified:aBoolean
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1235
    "set/clear the modified flag"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1236
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1237
    modifiedChannel value:aBoolean
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1238
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1239
    "Modified: 14.2.1997 / 16:44:05 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1240
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1241
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1242
modifiedChannel
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1243
    "return the valueHolder holding true if text was modified"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1244
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1245
    ^ modifiedChannel
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1246
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1247
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1248
modifiedChannel:aValueHolder
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1249
    "set the valueHolder holding true if text was modified"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1250
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1251
    |prev|
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1252
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1253
    prev := modifiedChannel.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1254
    modifiedChannel := aValueHolder.
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1255
    self setupChannel:aValueHolder for:nil withOld:prev
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1256
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1257
    "Created: / 30.1.1998 / 14:51:32 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1258
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1259
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1260
readOnly
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1261
    "make the text readonly.
4664
f09d5587253f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  1262
     Obsolete because it is obfuscating (looks like a getter)
f09d5587253f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  1263
     - use #readOnly:"
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1264
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1265
    <resource:#obsolete>
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1266
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1267
    self obsoleteMethodWarning:'use #readOnly:'.
3705
a819d7204ee3 changed #readOnly
Stefan Vogel <sv@exept.de>
parents: 3683
diff changeset
  1268
    self readOnly:true.
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1269
4664
f09d5587253f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  1270
    "Modified: / 14-02-1997 / 17:35:56 / cg"
f09d5587253f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4661
diff changeset
  1271
    "Modified (comment): / 02-08-2013 / 16:46:57 / cg"
2792
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1272
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1273
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1274
readOnly:aBoolean
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1275
    "make the text readonly (aBoolean == true) or writable (aBoolean == false).
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1276
     The argument may also be a valueHolder."
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1277
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1278
    readOnly := aBoolean
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1279
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1280
    "Created: 14.2.1997 / 17:35:39 / cg"
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1281
!
508ab005b021 category changes
Claus Gittinger <cg@exept.de>
parents: 2784
diff changeset
  1282
4782
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1283
reallyModifiedChannel
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1284
    "return the valueHolder holding true if text was really modified.
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1285
     For compatibility with views which use the modified flag for syntax highlighting."
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1286
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1287
    ^ self modifiedChannel
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1288
!
353079ce0c9d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  1289
5255
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  1290
st80Mode:aBooleanOrNil
4192
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1291
    "set/clear the st80Mode flag.
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1292
     If on, the cursor wraps at the line end (like in vi or st80);
5255
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  1293
     if off, we have the Rand-editor behavior (random access)
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  1294
     if nil, the setting follows the current userPref setting."
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  1295
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  1296
    st80Mode := aBooleanOrNil
4192
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1297
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1298
    "Created: / 09-11-2010 / 13:55:50 / cg"
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1299
!
0bc8b69bb610 added: #st80Mode:
Claus Gittinger <cg@exept.de>
parents: 4191
diff changeset
  1300
323
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1301
tabMeansNextField:aBoolean
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1302
    "set/clear tabbing to the next field.
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1303
     If true, Tab is ignored and shifts the keyboard focus.
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1304
     If false, tabs can be entered into the text.
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1305
     The default is true for editTextView, false for single-line
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1306
     input fields."
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1307
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  1308
    tabMeansNextField := aBoolean
2779
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1309
!
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1310
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1311
tabRequiresControl
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1312
    "returns true, if a focus tabbing requires a control-key to be pressed.
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1313
     The default is true for editTextView, false for other widgets,
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1314
     to allow for easier text entry"
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1315
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1316
    ^ tabRequiresControl
2779
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1317
!
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1318
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1319
tabRequiresControl:aBoolean
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1320
    "controls if a focus tabbing requires a control-key to be pressed.
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1321
     The default is true for editTextView, false for other widgets,
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1322
     to allow for easier text entry"
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1323
5ca530482fdd unchecked: tabRequiresControl for VW compatibility
Claus Gittinger <cg@exept.de>
parents: 2774
diff changeset
  1324
    tabRequiresControl := aBoolean
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1325
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1326
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1327
!EditTextView methodsFor:'accessing-contents'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1328
1902
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1329
at:lineNr basicPut:aLine
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1330
    "change a line without change notification.
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1331
     this is not undoably, unless you care for yourself"
1902
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1332
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1333
    (self at:lineNr) = aLine ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1334
        super at:lineNr put:aLine.
1902
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1335
    ].
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1336
!
302a68c2255e added #at:basicPut: to access a line without change notification.
Claus Gittinger <cg@exept.de>
parents: 1899
diff changeset
  1337
522
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  1338
at:lineNr put:aLine
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1339
    "replace a line by something new.
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1340
     this is not undoably, unless you care for yourself"
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1341
5393
efb824b89cdf class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  1342
    |oldLine|
efb824b89cdf class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  1343
efb824b89cdf class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  1344
    oldLine := (self at:lineNr) ? ''.
efb824b89cdf class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5390
diff changeset
  1345
    (oldLine sameStringAndEmphasisAs: (aLine? '')) ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1346
        super at:lineNr put:aLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1347
        self textChanged
522
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  1348
    ].
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  1349
!
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  1350
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1351
characterAfterCursor
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1352
    "return the character one after the cursor - space if beyond line."
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1353
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1354
    ^ self characterAtLine:cursorLine col:cursorCol+1
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1355
!
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1356
1577
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1357
characterBeforeCursor
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  1358
    "return the character to the left of cursor - space if beyond line, nil if at the beginning."
1577
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1359
5142
54457633c096 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5134
diff changeset
  1360
    cursorCol <= 1 ifTrue:[^ nil].
1577
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1361
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1362
    ^ self characterAtLine:cursorLine col:cursorCol-1
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1363
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1364
    "Created: / 17.6.1998 / 15:16:41 / cg"
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1365
!
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1366
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1367
characterUnderCursor
2707
810c994db0b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2696
diff changeset
  1368
    "return the character under the cursor - space if beyond line.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1369
     For non-block cursors, this is the character immediately to the right
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1370
     of the insertion-bar or caret. 
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1371
     For block cursors, this is the highlighted cursor-character"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1372
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1373
    ^ self characterAtLine:cursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1374
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1375
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1376
contents
2213
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1377
    "return the contents as a String or Text (i.e. with emphasis)"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1378
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1379
    list isNil ifTrue:[^ ''].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1380
    self removeTrailingBlankLines.
3707
8f6bc68b9319 changed #contents - formatting and comments
Stefan Vogel <sv@exept.de>
parents: 3705
diff changeset
  1381
    ^ super contents.
3313
6c2fd7c5a02f CRLF management
fm
parents: 3310
diff changeset
  1382
6c2fd7c5a02f CRLF management
fm
parents: 3310
diff changeset
  1383
    "Modified: / 04-07-2006 / 19:22:32 / fm"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1384
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1385
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1386
contents:aStringOrStringCollectionOrNil
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1387
    "replace the whole contents by something new.
5414
87ff3f9cbe55 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5413
diff changeset
  1388
     this is not undoably, unless you care for yourself.
87ff3f9cbe55 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5413
diff changeset
  1389
     See replaceContentsWith:newContents for an undoable version of this"
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1390
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1391
    self contents:aStringOrStringCollectionOrNil keepUndoHistory:false.
3249
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1392
!
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1393
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1394
contents:something keepUndoHistory:keepUndoHistory
5414
87ff3f9cbe55 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5413
diff changeset
  1395
    "set the contents and optionally clear the undo history.
87ff3f9cbe55 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5413
diff changeset
  1396
     The contents-change is not undoable."
87ff3f9cbe55 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5413
diff changeset
  1397
3249
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1398
    super contents:something.
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1399
    keepUndoHistory ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1400
        undoSupport resetHistories.
3249
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1401
    ].
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1402
!
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1403
2213
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1404
contentsAsString
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1405
    "return the contents as a String (i.e. without emphasis)"
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1406
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1407
    list isNil ifTrue:[^ ''].
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1408
    self removeTrailingBlankLines.
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1409
    ^ (list collect:[:each | each isNil ifTrue:['']
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1410
                                        ifFalse:[each string]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1411
                    ]) asStringWithCRs
2213
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1412
!
6068f2786bd6 added #contentsAsString
Claus Gittinger <cg@exept.de>
parents: 2210
diff changeset
  1413
5067
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1414
contentsAsStringWithTabs
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1415
    "return the contents as a String (i.e. without emphasis)
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1416
     and with leading spaces replaced by tab characters
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1417
     (i.e. as would be written to a file)"
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1418
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1419
    list isNil ifTrue:[^ ''].
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1420
    self removeTrailingBlankLines.
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1421
    ^ (list collect:[:each | 
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1422
        each isNil 
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1423
            ifTrue:['']
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1424
            ifFalse:[each string withTabs]
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1425
       ]) asStringWithCRs
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1426
!
a5298bf273fa class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5063
diff changeset
  1427
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1428
cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1429
    "return the cursors col (1..).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1430
     This is the absolute col; NOT the visible col"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1431
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1432
    ^ cursorCol
125
claus
parents: 123
diff changeset
  1433
!
claus
parents: 123
diff changeset
  1434
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1435
cursorColHolder
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1436
    "return a valueHolder for the cursors column (1..)."
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1437
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1438
    ^ cursorColHolder
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1439
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1440
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1441
cursorLine
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1442
    "return the cursors line (1..).
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1443
     This is the absolute line; NOT the visible line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1444
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1445
    ^ cursorLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1446
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1447
5400
c8c25c1392f7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5399
diff changeset
  1448
cursorLineAndColumnLabelHolder
5399
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1449
    "return a valueHolder for the cursors line and column as an info string
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1450
     of the form 'line : col'. 
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1451
     This can be used directly as a model for a GUI label showing the cursor position (eg in the lower right)"
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1452
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1453
    ^ BlockValue
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1454
        with:[:l :c | '%1 : %2' bindWith:l with:c]
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1455
        argument:self cursorLineHolder
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1456
        argument:self cursorColHolder
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1457
!
22d3682235f9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5394
diff changeset
  1458
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1459
cursorLineHolder
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1460
    "return a valueHolder for the cursors line (1..).
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1461
     This is the absolute line; NOT the visible line"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1462
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1463
    ^ cursorLineHolder
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1464
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1465
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1466
lineStringBeforeCursor
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1467
    "return the line's string before the cursor.
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1468
     Pad with spaces up to the cursor position if beyond the end of line"
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1469
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1470
    |line|
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1471
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1472
    line := ((self at:cursorLine) ? '') string.
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1473
    line size < (cursorCol-1) ifTrue:[
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1474
        ^ line paddedTo:(cursorCol-1)
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1475
    ].
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1476
    ^ line copyTo:(cursorCol-1)
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1477
!
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  1478
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1479
list:something
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1480
    "replace the whole contents by something new.
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1481
     this is not undoably, unless you care for yourself.
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1482
     position cursor home when setting contents"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1483
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1484
    |prevCursorLine prevCursorCol|
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1485
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1486
    prevCursorLine := cursorLine.
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1487
    prevCursorCol := cursorCol.
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1488
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1489
    super list:something.
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1490
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1491
    (cursorMovementWhenUpdating == #endOfText
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1492
    or:[cursorMovementWhenUpdating == #end]) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1493
        ^ self cursorToEndOfText
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1494
    ].
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1495
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1496
    (cursorMovementWhenUpdating == #endOfLine) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1497
        ^ self cursorLine:prevCursorLine col:(self listAt:cursorLine) size + 1.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1498
    ].
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1499
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1500
    (cursorMovementWhenUpdating == #beginOfText
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1501
    or:[cursorMovementWhenUpdating == #begin]) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1502
        ^ self cursorHome
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1503
    ].
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1504
    (cursorMovementWhenUpdating == #beginOfLine) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1505
        ^ self cursorLine:prevCursorLine col:1.
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1506
    ].
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1507
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1508
    "/ default: stay where it was
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1509
    "/ self cursorLine:prevCursorLine col:prevCursorCol.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1510
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1511
1476
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1512
setContents:something
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1513
    "replace the whole contents by something new 
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1514
     AND clear the remembered undo actions"
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  1515
1476
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1516
    |selType|
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1517
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  1518
    undoSupport resetHistories.
2955
Claus Gittinger <cg@exept.de>
parents: 2954
diff changeset
  1519
1476
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1520
    selType := typeOfSelection.
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1521
    super setContents:something.
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1522
    typeOfSelection := selType.
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1523
ac38c8af8585 setContents: - keep selection
Claus Gittinger <cg@exept.de>
parents: 1449
diff changeset
  1524
    "Created: / 31.3.1998 / 23:35:06 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1525
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1526
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1527
!EditTextView methodsFor:'accessing-dimensions'!
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1528
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1529
xOfCursor
4728
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1530
    |point|
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1531
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1532
    cursorVisibleLine isNil ifTrue:[
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1533
        "/ take the end of the selection, if any
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1534
        (selectionStartLine notNil 
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1535
            and:[ self listLineIsVisible:selectionEndLine ])
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1536
        ifTrue:[
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1537
            ^ self xOfCol:selectionEndCol inVisibleLine:selectionEndLine.
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1538
        ].
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1539
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1540
"/        point := device 
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1541
"/                    translatePoint:(device pointerPosition)
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1542
"/                    fromView:nil
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1543
"/                    toView:self.
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1544
"/        ((self bounds) containsPoint:point) ifTrue:[
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1545
"/            ^ point x
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1546
"/        ].
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1547
"/        ^ 0
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1548
        ^ nil
af70b9c1d04c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4721
diff changeset
  1549
    ].
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1550
    ^self xOfCol:cursorCol inVisibleLine:cursorVisibleLine.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1551
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1552
    "Created: / 27-05-2005 / 07:43:41 / janfrog"
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  1553
! !
4590
e28172cd6041 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4589
diff changeset
  1554
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1555
!EditTextView methodsFor:'accessing-look'!
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1556
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1557
cursorForegroundColor:color1 backgroundColor:color2
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1558
    "set both cursor foreground and cursor background colors"
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1559
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1560
    |wasOn|
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1561
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1562
    wasOn := self hideCursor.
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  1563
    cursorFgColor := color1 onDevice:device.
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  1564
    cursorBgColor := color2 onDevice:device.
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1565
    wasOn ifTrue:[self showCursor]
1333
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1566
!
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1567
1899
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1568
cursorType
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1569
    "return the style of the text cursor.
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1570
     Currently, supported are: #none
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1571
                               #block, #frame, #ibeam, #caret, #solidCaret
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1572
                               #bigCaret and #bigSolidCaret"
1899
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1573
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1574
    ^ cursorType
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1575
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1576
    "Modified: / 5.5.1999 / 14:52:33 / cg"
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1577
!
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1578
1333
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1579
cursorType:aCursorTypeSymbol
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1580
    "set the style of the text cursor.
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1581
     Currently, supported are: #none
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1582
                               #block, #frame, #ibeam, #caret, #solidCaret
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  1583
                               #bigCaret and #bigSolidCaret"
1333
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1584
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1585
    cursorType := aCursorTypeSymbol.
1333
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1586
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1587
    "Created: 21.9.1997 / 13:42:23 / cg"
56af09878b96 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1325
diff changeset
  1588
    "Modified: 21.9.1997 / 13:43:35 / cg"
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1589
!
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1590
1899
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1591
cursorTypeNoFocus
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1592
    "return the style of the text cursor when the view has no focus.
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1593
     If left unspecified, this is the same as the regular cursorType."
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1594
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1595
    ^ cursorTypeNoFocus
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1596
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1597
    "Created: / 5.5.1999 / 14:52:46 / cg"
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1598
!
c98fc612bab0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1878
diff changeset
  1599
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1600
cursorTypeNoFocus:aCursorTypeSymbol
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1601
    "set the style of the text cursor when the view has no focus.
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1602
     If left unspecified, this is the same as the regular cursorType."
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1603
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  1604
    cursorTypeNoFocus := aCursorTypeSymbol
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1605
! !
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  1606
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  1607
!EditTextView methodsFor:'accessing-replace'!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  1608
4746
39a5681e71ca class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
  1609
lastReplacementInfo
39a5681e71ca class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
  1610
    ^ lastReplacementInfo
39a5681e71ca class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
  1611
!
39a5681e71ca class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4742
diff changeset
  1612
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  1613
lastStringToReplace: aString
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1614
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1615
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1616
previousReplacements
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1617
    "accessor for the code completion"
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1618
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  1619
    ^ lastReplacementInfo previousReplacements
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  1620
! !
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  1621
2119
2aa585fc62a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2117
diff changeset
  1622
!EditTextView methodsFor:'change & update'!
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1623
125
claus
parents: 123
diff changeset
  1624
accept
claus
parents: 123
diff changeset
  1625
    "accept the current contents by executing the accept-action and/or
claus
parents: 123
diff changeset
  1626
     changeMessage."
claus
parents: 123
diff changeset
  1627
1108
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1628
    acceptEnabled == false ifTrue:[
3945
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  1629
        self beep.
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  1630
        ^ self
2035
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1631
    ].
6924861adf08 added disableIfInvisible flag
Claus Gittinger <cg@exept.de>
parents: 2029
diff changeset
  1632
    (disableIfInvisible == true and:[self reallyRealized not]) ifTrue:[
3945
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  1633
        ^ self
1108
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1634
    ].
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  1635
125
claus
parents: 123
diff changeset
  1636
    lockUpdates := true.
1013
391290c747b3 added an acceptChannel
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  1637
391290c747b3 added an acceptChannel
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  1638
    "/
391290c747b3 added an acceptChannel
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  1639
    "/ ST-80 way of doing it
391290c747b3 added an acceptChannel
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  1640
    "/
391290c747b3 added an acceptChannel
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  1641
    model notNil ifTrue:[
4142
6522aff88c82 changed: #accept
Claus Gittinger <cg@exept.de>
parents: 4138
diff changeset
  1642
        self sendChangeMessage:changeMsg with:self argForChangeMessage.
5525
262b2d21993b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
  1643
        acceptChannel notNil ifTrue:[
262b2d21993b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
  1644
            acceptChannel value:true withoutNotifying:self.
262b2d21993b #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5489
diff changeset
  1645
        ].    
2999
40d3a383e8db *** empty log message ***
ca
parents: 2989
diff changeset
  1646
    ].
40d3a383e8db *** empty log message ***
ca
parents: 2989
diff changeset
  1647
757
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1648
    "/
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1649
    "/ ST/X way of doing things
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1650
    "/ as a historic (and temporary) leftover,
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1651
    "/ the block is called with a stringCollection
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1652
    "/ - not with the actual string
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1653
    "/
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1654
    acceptAction notNil ifTrue:[
3945
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  1655
        acceptAction value:self list
757
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1656
    ].
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1657
125
claus
parents: 123
diff changeset
  1658
    lockUpdates := false.
757
2cc7e423f0ef only try changeMessage, if there is a model
Claus Gittinger <cg@exept.de>
parents: 730
diff changeset
  1659
1437
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1660
    "Modified: / 30.1.1998 / 14:19:00 / cg"
131
claus
parents: 130
diff changeset
  1661
!
claus
parents: 130
diff changeset
  1662
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1663
argForChangeMessage
597
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1664
    "return the argument to be passed with the change notification.
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1665
     Defined as separate method for easier subclassability."
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1666
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1667
    ^ self contents
597
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1668
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1669
    "Modified: 29.4.1996 / 12:42:14 / cg"
121
claus
parents: 118
diff changeset
  1670
!
claus
parents: 118
diff changeset
  1671
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1672
getListFromModel
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1673
    "get my contents from the model.
597
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1674
     Redefined to ignore updates resulting from my own changes
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1675
     (i.e. if lockUpdates is true)."
121
claus
parents: 118
diff changeset
  1676
claus
parents: 118
diff changeset
  1677
    "
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1678
     ignore updates from my own change
121
claus
parents: 118
diff changeset
  1679
    "
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1680
    lockUpdates ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1681
        lockUpdates := false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1682
        ^ self
121
claus
parents: 118
diff changeset
  1683
    ].
2196
f8c955dd6eb9 validate the cursorLine, when updating from a changed model
Claus Gittinger <cg@exept.de>
parents: 2186
diff changeset
  1684
    super getListFromModel.
3249
a4beb76b3f59 code formatting is now undoable
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
  1685
    undoSupport resetHistories.
2196
f8c955dd6eb9 validate the cursorLine, when updating from a changed model
Claus Gittinger <cg@exept.de>
parents: 2186
diff changeset
  1686
f8c955dd6eb9 validate the cursorLine, when updating from a changed model
Claus Gittinger <cg@exept.de>
parents: 2186
diff changeset
  1687
    "/ validate the cursorLine
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1688
    (cursorLine notNil
2310
861ab02b13b9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
  1689
     and:[ cursorLine > list size ]) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1690
        self cursorLine:list size + 1 col:1
2196
f8c955dd6eb9 validate the cursorLine, when updating from a changed model
Claus Gittinger <cg@exept.de>
parents: 2186
diff changeset
  1691
    ].
1437
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1692
!
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1693
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1694
update:something with:aParameter from:changedObject
1438
bed1564b0640 fixed update for acceptChannel
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  1695
    changedObject == acceptChannel ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1696
        acceptChannel value == true ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1697
            self accept.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1698
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1699
        ^ self.
1437
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1700
    ].
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1701
    super update:something with:aParameter from:changedObject
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1702
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  1703
    "Created: / 30.1.1998 / 14:15:56 / cg"
1439
d1b3ca91ed8a fixed update for acceptChannel
Claus Gittinger <cg@exept.de>
parents: 1438
diff changeset
  1704
    "Modified: / 1.2.1998 / 13:15:55 / cg"
121
claus
parents: 118
diff changeset
  1705
! !
claus
parents: 118
diff changeset
  1706
claus
parents: 118
diff changeset
  1707
!EditTextView methodsFor:'cursor handling'!
claus
parents: 118
diff changeset
  1708
4820
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1709
basicCursorReturn
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1710
    "move cursor to start of next line; scroll if at end of visible text"
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1711
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1712
    |wasOn|
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1713
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1714
    self checkForExistingLine:(cursorLine + 1).
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1715
    cursorVisibleLine notNil ifTrue:[
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1716
        nFullLinesShown notNil ifTrue:[
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1717
            (cursorVisibleLine >= nFullLinesShown) ifTrue:[self scrollDown]
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1718
        ]
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1719
    ].
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1720
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1721
    wasOn := self hideCursor.
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1722
    self setValidatedCursorLine:(cursorLine + 1) col:1.
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1723
    self makeCursorVisibleAndShowCursor:wasOn.
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1724
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1725
    "Modified: 22.5.1996 / 18:27:34 / cg"
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1726
!
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1727
2406
aeabb4ccf07c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2404
diff changeset
  1728
characterPositionOfCursor
aeabb4ccf07c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2404
diff changeset
  1729
    ^ self characterPositionOfLine:cursorLine col:cursorCol
aeabb4ccf07c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2404
diff changeset
  1730
!
aeabb4ccf07c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2404
diff changeset
  1731
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1732
cursorBacktab
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1733
    "move cursor to prev tabstop"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1734
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1735
    self cursorCol:(self prevTabBefore:cursorCol).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1736
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1737
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1738
cursorCol:newCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1739
    "move cursor to some column in the current line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1740
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1741
    |wasOn|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1742
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  1743
    (cursorCol == newCol) ifTrue:[^ self].
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  1744
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1745
    wasOn := self hideCursor.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1746
    self setValidatedCursorCol:newCol.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1747
    self makeCursorVisibleAndShowCursor:wasOn.
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1748
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1749
    "Modified: 22.5.1996 / 14:25:53 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1750
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1751
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1752
cursorDown
632
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1753
    "move cursor down; scroll if at end of visible text;
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1754
     beep if at end of physical text."
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1755
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1756
    |wasOn|
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1757
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1758
    self cursorDown:1.
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1759
2707
810c994db0b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2696
diff changeset
  1760
    "/ cursor beyond text ?
632
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1761
    cursorLine > list size ifTrue:[
4595
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1762
        wasOn := self hideCursor.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1763
        self setValidatedCursorLine:(list size + 1) col:cursorCol.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1764
        self makeCursorVisibleAndShowCursor:wasOn.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1765
        self beep.
632
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1766
    ].
5af2c22002e4 dont beep if cursor is moved down programmatically
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1767
1561
db5f27354172 make cursor correctly visible if in partial last line.
Claus Gittinger <cg@exept.de>
parents: 1560
diff changeset
  1768
    "Modified: / 10.6.1998 / 17:00:23 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1769
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1770
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1771
cursorDown:n
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1772
    "move cursor down by n lines; scroll if at end of visible text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1773
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1774
    |wasOn nv nL|
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1775
4595
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1776
    (nL := cursorLine) isNil ifTrue:[
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1777
        nL := firstLineShown
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1778
    ].
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1779
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1780
    self st80EditMode ifTrue:[
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1781
        nL == list size ifTrue:[
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1782
            wasOn := self hideCursor.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1783
            self setValidatedCursorLine:(list size) col:(self listAt:list size) size + 1.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1784
            self makeCursorVisibleAndShowCursor:wasOn.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1785
            self beep.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1786
            ^ self.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1787
        ]
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1788
    ].
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1789
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1790
    cursorVisibleLine notNil ifTrue:[
4595
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1791
        wasOn := self hideCursor.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1792
        nv := cursorVisibleLine + n - 1.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1793
        (nv >= nFullLinesShown) ifTrue:[
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1794
            self scrollDown:(nv - nFullLinesShown + 1)
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1795
        ].
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1796
        self setValidatedCursorLine:(cursorLine + n) col:cursorCol.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1797
        self makeCursorVisibleAndShowCursor:wasOn.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1798
    ] ifFalse:[
4595
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1799
        self setValidatedCursorLine:(nL + n) col:cursorCol.
2f1e71ea50ac class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4592
diff changeset
  1800
        self makeCursorVisible.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1801
    ].
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  1802
1561
db5f27354172 make cursor correctly visible if in partial last line.
Claus Gittinger <cg@exept.de>
parents: 1560
diff changeset
  1803
    "Modified: / 10.6.1998 / 16:59:17 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1804
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1805
121
claus
parents: 118
diff changeset
  1806
cursorHome
597
fb42c94a042e commentary
Claus Gittinger <cg@exept.de>
parents: 594
diff changeset
  1807
    "scroll to top AND move cursor to first line of text."
121
claus
parents: 118
diff changeset
  1808
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1809
    self cursorLine:1 col:1
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1810
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1811
"/    |wasOn|
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1812
"/
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1813
"/    wasOn := self hideCursor.
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1814
"/    self scrollToTop.
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1815
"/    cursorLine := cursorVisibleLine := 1.
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1816
"/    cursorCol := self validateCursorCol:1 inLine:cursorLine.
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1817
"/    self makeCursorVisibleAndShowCursor:wasOn.
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1818
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  1819
    "Modified: 22.5.1996 / 18:26:42 / cg"
121
claus
parents: 118
diff changeset
  1820
!
claus
parents: 118
diff changeset
  1821
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1822
cursorLeft
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1823
    "move cursor to left"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1824
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1825
    (cursorCol ~~ 1) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1826
        self cursorCol:(cursorCol - 1)
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1827
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1828
        cursorLine ~~ 1 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1829
            self st80EditMode ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1830
                self cursorUp.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1831
                self cursorToEndOfLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1832
           ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1833
        ]
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1834
    ]
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1835
1426
de76570ba19e crsrLeft/crsrRight does not wrap to prev/next line in st80 mode
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  1836
    "Modified: / 23.1.1998 / 12:37:13 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1837
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1838
4126
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1839
cursorLeft:n
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1840
    "move cursor to left"
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1841
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1842
    n timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1843
        self cursorLeft
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1844
    ].
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1845
!
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1846
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1847
cursorLine:line col:col
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1848
    "this positions onto physical - not visible - line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1849
5056
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1850
    self cursorLine:line col:col makeVisible:true
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1851
!
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1852
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1853
cursorLine:line col:col makeVisible:makeVisibleBoolean
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1854
    "this positions onto physical - not visible - line"
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1855
676
b65b82a1ffcb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
  1856
    |wasOn newCol|
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1857
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  1858
    ((line == cursorLine) and:[col == cursorCol]) ifTrue:[^ self].
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  1859
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1860
    wasOn := self hideCursor.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1861
    self setValidatedCursorLine:line.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1862
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1863
    (col < 1) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1864
        newCol := 1
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1865
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1866
        newCol := col.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1867
    ].
2647
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
  1868
    self st80EditMode ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1869
        (cursorLine == list size
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1870
        and:[cursorLine ~~ line]) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1871
            newCol := (self listAt:(list size)) size + 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1872
        ]
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  1873
    ].
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1874
    self setValidatedCursorCol:newCol.
5056
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1875
    makeVisibleBoolean ifTrue:[
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1876
        self makeCursorVisibleAndShowCursor:wasOn.
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1877
    ] ifFalse:[
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1878
        wasOn ifTrue:[self showCursor]
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  1879
    ].
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1880
1596
0bbdb4e9fc43 made st80Mode also an inst-flag;
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
  1881
    "Modified: / 20.6.1998 / 18:19:06 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1882
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1883
1580
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1884
cursorMovementAllowed
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1885
    "return true, if the user may move the cursor around
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1886
     (via button-click, or cursor-key with selection).
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1887
     By default, true is returned, but this may be redefined
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1888
     in special subclasses (such as a terminal view), where
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1889
     this is not wanted"
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1890
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1891
    ^ true
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1892
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1893
    "Created: / 18.6.1998 / 14:11:16 / cg"
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1894
!
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  1895
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1896
cursorReturn
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1897
    "move cursor to start of next line; scroll if at end of visible text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1898
4820
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  1899
    self basicCursorReturn
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1900
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1901
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1902
cursorReturn:withPossibleAutoIndent
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1903
    "move cursor to start of next line; scroll if at end of visible text"
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1904
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1905
    self basicCursorReturn
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1906
!
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1907
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1908
cursorRight
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1909
    "move cursor to right"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1910
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1911
    |l|
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1912
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  1913
    self st80EditMode ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1914
        l := (self listAt:cursorLine).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1915
        cursorCol >= (l size + 1) ifTrue:[
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1916
            cursorLine <= list size ifTrue:[
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  1917
                self cursorReturn:false. "/ no autoindent
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1918
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1919
            ^ self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1920
        ]
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  1921
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1922
    self cursorCol:(cursorCol + 1)
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  1923
1596
0bbdb4e9fc43 made st80Mode also an inst-flag;
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
  1924
    "Modified: / 20.6.1998 / 18:19:07 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1925
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1926
4126
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1927
cursorRight:n
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1928
    "move cursor to right"
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1929
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1930
    n timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1931
        self cursorRight
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1932
    ].
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1933
!
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  1934
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1935
cursorShown:aBoolean
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1936
    "change cursor visibility
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1937
     return true if cursor was visible before."
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1938
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1939
    |oldState|
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1940
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1941
    aBoolean == cursorShown ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1942
        ^ cursorShown
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1943
    ].
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1944
    oldState := cursorShown.
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1945
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1946
    aBoolean ifTrue:[
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1947
        self drawCursor.
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1948
    ] ifFalse:[
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1949
        (cursorShown and:[shown]) ifTrue: [
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1950
            self undrawCursor.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  1951
        ].
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1952
    ].
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1953
    cursorShown := aBoolean.
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1954
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1955
    ^ oldState
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1956
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1957
    "Modified: / 30.3.1999 / 15:32:43 / stefan"
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1958
    "Created: / 30.3.1999 / 15:59:30 / stefan"
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1959
!
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  1960
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1961
cursorTab
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1962
    "move cursor to next tabstop"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1963
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1964
    self cursorCol:(self nextTabAfter:cursorCol).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1965
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1966
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1967
cursorToBeginOfLine
3020
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1968
    "move cursor to the start of the current line"
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1969
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1970
    |textStart l|
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1971
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1972
    l := self listAt:cursorLine.
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1973
    textStart := l isNil ifTrue:[1] ifFalse:[l indexOfNonSeparator].
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1974
    cursorCol > textStart ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1975
        self cursorCol:textStart
3020
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1976
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1977
        self cursorCol:1
3020
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1978
    ]
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1979
68a2dfad4e5e CTRL-a (move to begin of line)
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
  1980
    "Created: / 8.8.2004 / 18:51:21 / janfrog"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1981
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1982
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1983
cursorToBottom
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  1984
    "move cursor to the last line of text (col 1)"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1985
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1986
    |wasOn newTop|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1987
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1988
    wasOn := self hideCursor.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1989
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1990
    newTop := list size - nFullLinesShown.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1991
    (newTop < 1) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  1992
        newTop := 1
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1993
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1994
    self scrollToLine:newTop.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1995
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  1996
    self setValidatedCursorLine:(list size) col:1.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1997
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  1998
    self makeCursorVisibleAndShowCursor:wasOn.
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  1999
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2000
    "Modified: 22.5.1996 / 18:27:45 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2001
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2002
1415
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2003
cursorToCharacterPosition:pos
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2004
    "compute line/col from character position (1..)
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2005
     and move the cursor onto that char"
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2006
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2007
    |line col|
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2008
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2009
    line := self lineOfCharacterPosition:pos.
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2010
    col := pos - (self characterPositionOfLine:line col:1) + 1.
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2011
    self cursorLine:line col:col
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2012
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2013
    "Created: / 15.1.1998 / 21:55:33 / cg"
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2014
!
f75eeebc0d1d added #cursorToCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1390
diff changeset
  2015
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2016
cursorToEnd
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2017
    "move cursor down below last line of text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2018
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2019
    |wasOn newTop lineNr line|
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2020
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2021
    lineNr := list size.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2022
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2023
    cursorLine >= lineNr ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2024
        line := self listAt:cursorLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2025
        (line isEmptyOrNil) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2026
            ^ self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2027
        ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2028
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2029
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2030
    wasOn := self hideCursor.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2031
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2032
    lineNr := lineNr + 1.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2033
    newTop :=  lineNr - nFullLinesShown.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2034
    (newTop < 1) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2035
        newTop := 1
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2036
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2037
    self scrollToLine:newTop.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2038
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2039
    self setValidatedCursorLine:lineNr col:1.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2040
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2041
    self makeCursorVisibleAndShowCursor:wasOn.
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2042
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2043
    "Modified: 22.5.1996 / 18:27:53 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2044
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2045
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2046
cursorToEndOfLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2047
    "move cursor to end of current line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2048
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2049
    |line|
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2050
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2051
    line := (self listAt:cursorLine).
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2052
    self cursorCol:(line size + 1)
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2053
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2054
    "Modified: 13.8.1997 / 15:34:02 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2055
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2056
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2057
cursorToEndOfText
4288
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2058
    "move cursor to the end of the text (behind the last character in last line)"
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2059
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2060
    |wasOn newTop lastLineLength pos|
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2061
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2062
    wasOn := self hideCursor.
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2063
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2064
    newTop := list size - nFullLinesShown.
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2065
    (newTop < 1) ifTrue:[
4288
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2066
        newTop := 1
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2067
    ].
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2068
    self scrollToLine:newTop.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2069
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2070
    self setValidatedCursorLine:list size.
4288
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2071
    lastLineLength := (self listAt:cursorLine) size.
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2072
    pos := (lastLineLength==0) ifTrue:[0] ifFalse:[lastLineLength+1].
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2073
    self setCursorCol:(self validateCursorCol:pos inLine:cursorLine).
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2074
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2075
    self makeCursorVisibleAndShowCursor:wasOn.
4288
f68354357ecc changed: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4287
diff changeset
  2076
4289
d74f746d4c0d comment/format in: #cursorToEndOfText
Claus Gittinger <cg@exept.de>
parents: 4288
diff changeset
  2077
    "Modified: / 15-07-2011 / 20:14:43 / cg"
2129
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2078
!
989228af033d added control over how-to-move-the-cursor when updating text.
Claus Gittinger <cg@exept.de>
parents: 2121
diff changeset
  2079
3310
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2080
cursorToEndOfWord
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2081
    "move the cursor to the end of the word"
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2082
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2083
    (cursorLine > list size) ifTrue:[^ self].
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2084
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2085
    self wordAtLine:cursorLine col:cursorCol do:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2086
        :beginLine :beginCol :endLine :endCol :style |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2087
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2088
        self cursorLine:endLine col:endCol+1
3310
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2089
    ]
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2090
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2091
    "Created: / 28-06-2006 / 19:16:30 / cg"
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2092
!
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  2093
131
claus
parents: 130
diff changeset
  2094
cursorToFirstVisibleLine
claus
parents: 130
diff changeset
  2095
    "place cursor into the first visible line; do not scroll."
claus
parents: 130
diff changeset
  2096
claus
parents: 130
diff changeset
  2097
    self cursorLine:(self visibleLineToAbsoluteLine:1) col:1
claus
parents: 130
diff changeset
  2098
!
claus
parents: 130
diff changeset
  2099
claus
parents: 130
diff changeset
  2100
cursorToLastVisibleLine
claus
parents: 130
diff changeset
  2101
    "place cursor into the first visible line; do not scroll."
claus
parents: 130
diff changeset
  2102
claus
parents: 130
diff changeset
  2103
    self cursorLine:(self visibleLineToAbsoluteLine:nFullLinesShown) col:1
claus
parents: 130
diff changeset
  2104
!
claus
parents: 130
diff changeset
  2105
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2106
cursorToNextWord
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2107
    "move the cursor to the beginning of the next word"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2108
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2109
    |col line searching|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2110
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2111
    (cursorLine > list size) ifTrue:[^ self].
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2112
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2113
    self 
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  2114
        wordAtLine:cursorLine col:cursorCol 
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  2115
        do:[
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2116
            :beginLine :beginCol :endLine :endCol :style |
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2117
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2118
            line := endLine.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2119
            col := endCol + 1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2120
            searching := true.
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  2121
            [searching and:[(self characterAtLine:line col:col) isSeparator]] whileTrue:[
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2122
                self wordAtLine:line col:col do:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2123
                    :beginLine :beginCol :endLine :endCol :style |
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2124
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2125
                    (line > list size) ifTrue:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2126
                        "break out"
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2127
                        searching := false
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2128
                    ] ifFalse:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2129
                        line := endLine.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2130
                        col := endCol + 1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2131
                    ]
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2132
                ]
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2133
            ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  2134
            self cursorLine:line col:col
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  2135
    ]
121
claus
parents: 118
diff changeset
  2136
!
claus
parents: 118
diff changeset
  2137
499
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2138
cursorToPreviousWord
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2139
    "move the cursor to the beginning of this or the previous word"
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2140
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2141
    |col line searching l|
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2142
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2143
    (cursorLine > list size) ifTrue:[^ self].      "/ this is rubbish
499
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2144
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2145
    self wordAtLine:cursorLine col:cursorCol do:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2146
        :beginLine :beginCol :endLine :endCol :style |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2147
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2148
        line := beginLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2149
        col := beginCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2150
        style == #wordLeft ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2151
            col := col + 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2152
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2153
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2154
        (cursorLine == line
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2155
        and:[cursorCol == col]) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2156
            searching := true.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2157
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2158
            col > 1 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2159
                col := col - 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2160
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2161
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2162
            [searching] whileTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2163
                (col == 1) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2164
                    line == 1 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2165
                        searching := false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2166
                    ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2167
                        line := line - 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2168
                        l := list at:line.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2169
                        col := l size + 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2170
                    ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2171
                ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2172
                    (self characterAtLine:line col:col) isSeparator ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2173
                        self wordAtLine:line col:col do:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2174
                            :beginLine :beginCol :endLine :endCol :style |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2175
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2176
                            line := beginLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2177
                            col := beginCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2178
                            style == #wordLeft ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2179
                                col := col + 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2180
                            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2181
                            searching := false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2182
                        ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2183
                    ] ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2184
                        col := col - 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2185
                    ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2186
                ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2187
            ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2188
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2189
        self cursorLine:line col:col
499
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2190
    ]
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2191
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2192
    "Created: 8.3.1996 / 21:52:48 / cg"
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2193
    "Modified: 8.3.1996 / 22:12:45 / cg"
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2194
!
939f39bd545f added previousWord
Claus Gittinger <cg@exept.de>
parents: 488
diff changeset
  2195
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2196
cursorToTop
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2197
    "move cursor to absolute home"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2198
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2199
    self cursorLine:1 col:1
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2200
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2201
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2202
cursorUp
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2203
    "move cursor up; scroll if at start of visible text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2204
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2205
    self cursorUp:1
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2206
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2207
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2208
cursorUp:n
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2209
    "move cursor up n lines; scroll if at start of visible text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2210
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2211
    |wasOn nv nl|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2212
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2213
    cursorLine isNil ifTrue:[
3725
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2214
        self setCursorLine:(firstLineShown + nFullLinesShown - 1).
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2215
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2216
    nl := cursorLine - n.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2217
    nl < 1 ifTrue:[nl := 1].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2218
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2219
    (nl ~~ cursorLine) ifTrue: [
3725
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2220
        wasOn := self hideCursor.
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2221
        cursorVisibleLine notNil ifTrue:[
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2222
            nv := cursorVisibleLine - n.
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2223
            nv < 1 ifTrue:[
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2224
                self scrollUp:(nv negated + 1)
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2225
            ].
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2226
        ].
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2227
        self setValidatedCursorLine:nl col:cursorCol.
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2228
"/        wasOn ifTrue:[self showCursor].
410e861ca010 also makeCursorVisible after cursorUp:
Claus Gittinger <cg@exept.de>
parents: 3707
diff changeset
  2229
        self makeCursorVisibleAndShowCursor:wasOn.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2230
    ]
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2231
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2232
    "Modified: 22.5.1996 / 18:28:11 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2233
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2234
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2235
cursorVisibleLine:visibleLineNr col:colNr
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2236
    "put cursor to visibleline/col"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2237
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2238
    |wasOn newCol listLine|
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2239
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2240
    wasOn := self hideCursor.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2241
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2242
    listLine := self visibleLineToAbsoluteLine:visibleLineNr.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2243
    self setValidatedCursorLine:listLine.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2244
    cursorVisibleLine := visibleLineNr.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2245
676
b65b82a1ffcb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
  2246
    newCol := colNr.
b65b82a1ffcb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 674
diff changeset
  2247
    (newCol < 1) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2248
        newCol := 1
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2249
    ].
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2250
    self setValidatedCursorCol:newCol.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2251
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2252
    self makeCursorVisibleAndShowCursor:wasOn.
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2253
1597
5fdcfcedb91c fixed cursor positioning after replaceStringAtCursor.
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  2254
    "Modified: / 20.6.1998 / 18:40:28 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2255
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2256
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2257
cursorX:x y:y
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2258
    "put cursor to position next to x/y coordinate in view"
121
claus
parents: 118
diff changeset
  2259
claus
parents: 118
diff changeset
  2260
    |line col|
claus
parents: 118
diff changeset
  2261
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2262
    line := self visibleLineOfY:y.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2263
    col := self colOfX:x inVisibleLine:line.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2264
    self cursorVisibleLine:line col:col.
121
claus
parents: 118
diff changeset
  2265
!
claus
parents: 118
diff changeset
  2266
claus
parents: 118
diff changeset
  2267
drawCursor
claus
parents: 118
diff changeset
  2268
    "draw the cursor if shown and cursor is visible.
claus
parents: 118
diff changeset
  2269
     (but not, if there is a selection - to avoid confusion)"
claus
parents: 118
diff changeset
  2270
claus
parents: 118
diff changeset
  2271
    shown ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2272
        cursorVisibleLine notNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2273
            self hasSelection ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2274
                self drawCursorCharacter
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2275
            ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2276
        ]
121
claus
parents: 118
diff changeset
  2277
    ]
claus
parents: 118
diff changeset
  2278
!
claus
parents: 118
diff changeset
  2279
claus
parents: 118
diff changeset
  2280
drawCursor:cursorType with:fgColor and:bgColor
claus
parents: 118
diff changeset
  2281
    "draw a cursor; the argument cursorType specifies what type
125
claus
parents: 123
diff changeset
  2282
     of cursor should be drawn.
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  2283
     Currently, supported are: #none, 
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  2284
                               #block, #frame, #ibeam, #caret, #solidCaret
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2285
                               #bigCaret and #bigSolidCaret"
2085
4498b1a50d72 fixed undrawCursor, when there is italic text
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  2286
2570
590956e81610 Remove unused method vars.
Stefan Vogel <sv@exept.de>
parents: 2569
diff changeset
  2287
    |x y w char y2 x1 x2 oldPaint oldClip|
121
claus
parents: 118
diff changeset
  2288
claus
parents: 118
diff changeset
  2289
    self hasSelection ifTrue:[
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2290
        "
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2291
         hide cursor, if there is a selection
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2292
        "
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2293
        ^ super redrawVisibleLine:cursorVisibleLine col:cursorCol.
121
claus
parents: 118
diff changeset
  2294
    ].
claus
parents: 118
diff changeset
  2295
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2296
    cursorType == #none ifTrue:[
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2297
        ^ self
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2298
    ].
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2299
121
claus
parents: 118
diff changeset
  2300
    cursorType == #block ifTrue:[
4829
1073616fcbab class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4826
diff changeset
  2301
        super drawVisibleLine:cursorVisibleLine col:cursorCol with:fgColor and:bgColor.
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2302
        ^ self
121
claus
parents: 118
diff changeset
  2303
    ].
2429
eed79a96e43b eliminated accesses to leftOffset
Claus Gittinger <cg@exept.de>
parents: 2427
diff changeset
  2304
    x := (self xOfCol:cursorCol inVisibleLine:cursorVisibleLine) - viewOrigin x.
121
claus
parents: 118
diff changeset
  2305
    y := self yOfVisibleLine:cursorVisibleLine.
claus
parents: 118
diff changeset
  2306
1449
2a54bdfff203 eliminated direct refs to paint instvar
Claus Gittinger <cg@exept.de>
parents: 1446
diff changeset
  2307
    oldPaint := self paint. "/ do not clobber GC
121
claus
parents: 118
diff changeset
  2308
    cursorType == #frame ifTrue:[
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2309
        super redrawVisibleLine:cursorVisibleLine col:cursorCol.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2310
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2311
        char := self characterUnderCursor asString.
4829
1073616fcbab class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4826
diff changeset
  2312
        self paint:bgColor.                       
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  2313
        self displayRectangleX:x y:y width:(gc font widthOf:char) height:fontHeight-2.
133
claus
parents: 132
diff changeset
  2314
    ] ifFalse:[
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2315
        self paint:bgColor.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2316
        cursorType == #ibeam ifTrue:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2317
            x1 := x - 1.
5581
1533cccf60af #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5578
diff changeset
  2318
            y2 := y + fontHeight - lineSpacing - 1.
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2319
            self displayLineFromX:x1 y:y toX:x1 y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2320
            self displayLineFromX:x y:y toX:x y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2321
            ^ self
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2322
        ].
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2323
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2324
        cursorType == #Ibeam ifTrue:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2325
            x1 := x - 1.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2326
            y := y + 1.
5581
1533cccf60af #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5578
diff changeset
  2327
            y2 := y + fontHeight - lineSpacing - 1.
4580
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2328
            self displayLineFromX:x1 y:y toX:x1 y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2329
            self displayLineFromX:x y:y toX:x y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2330
            self displayLineFromX:x1-2 y:y toX:x+2 y:y.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2331
            self displayLineFromX:x1-2 y:y2 toX:x+2 y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2332
            ^ self
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2333
        ].
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2334
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2335
        y := y + fontHeight - 3.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2336
        ((cursorType == #bigCaret) or:[cursorType == #bigSolidCaret]) ifTrue:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2337
            w := (fontWidth * 2 // 3) max:4.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2338
            y2 := y + w + (w//2).
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2339
        ] ifFalse:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2340
            w := (fontWidth // 2) max:4.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2341
            y2 := y + w.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2342
        ].
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2343
        x1 := x - w.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2344
        x2 := x + w.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2345
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2346
        oldClip := self clippingRectangleOrNil.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2347
        self clippingRectangle:(margin@margin extent:(width-margin) @ (height-margin)).
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2348
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2349
        cursorType == #caret ifTrue:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2350
            self lineWidth:2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2351
            self displayLineFromX:x1 y:y2 toX:x y:y.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2352
            self displayLineFromX:x y:y toX:x2 y:y2.
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2353
        ] ifFalse:[
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2354
            "anything else: solidCaret"
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2355
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2356
            self fillPolygon:(Array with:(x1 @ y2)
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2357
                                    with:(x @ y)
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2358
                                    with:(x2 @ y2))
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2359
        ].
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2360
d888cfb6a97c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4576
diff changeset
  2361
        self clippingRectangle:oldClip
121
claus
parents: 118
diff changeset
  2362
    ].
133
claus
parents: 132
diff changeset
  2363
    self paint:oldPaint.
662
4bcdf0cce3a7 dont let caret cursor become too small (with small fonts)
Claus Gittinger <cg@exept.de>
parents: 655
diff changeset
  2364
2088
b2beb67b1a98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  2365
    "Modified: / 15.12.1999 / 22:24:17 / cg"
121
claus
parents: 118
diff changeset
  2366
!
claus
parents: 118
diff changeset
  2367
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2368
drawCursorCharacter
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2369
    "draw the cursor.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2370
     (i.e. the cursor if no selection)
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2371
     - helper for many cursor methods"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2372
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2373
    (hasKeyboardFocus
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  2374
     and:[self enabled
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  2375
     and:[self isReadOnly not]]) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2376
        self drawFocusCursor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2377
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2378
        self drawNoFocusCursor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2379
    ]
1817
1a9e22f755c8 show non-focus cursor when disabled or readOnly
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
  2380
1a9e22f755c8 show non-focus cursor when disabled or readOnly
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
  2381
    "Modified: / 23.3.1999 / 13:52:48 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2382
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2383
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2384
drawFocusCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2385
    "draw the cursor when the focus is in the view."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2386
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2387
    self hasSelection ifTrue:[
5260
d062a1aa6b99 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5255
diff changeset
  2388
        ^ super redrawVisibleLine:cursorVisibleLine col:(cursorCol max:1).
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2389
    ].
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2390
    cursorType == #none ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2391
        ^ self undrawCursor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2392
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2393
    self drawCursor:cursorType with:cursorFgColor and:cursorBgColor.
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2394
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2395
    "Modified: 22.9.1997 / 00:16:38 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2396
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2397
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2398
drawNoFocusCursor
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2399
    "draw the cursor for the case when the view has no keyboard focus"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2400
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2401
    |cType|
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2402
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2403
    self hasSelection ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2404
        ^ super redrawVisibleLine:cursorVisibleLine col:cursorCol.
121
claus
parents: 118
diff changeset
  2405
    ].
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  2406
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2407
    cType := cursorTypeNoFocus ? cursorType.
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2408
    cType == #none ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2409
        ^ self undrawCursor
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2410
    ].
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2411
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2412
    cType == #block ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2413
        ^ self drawCursor:#frame with:cursorNoFocusFgColor and:cursorBgColor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2414
    ].
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  2415
1334
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2416
    ^ self drawCursor:cType with:cursorNoFocusFgColor and:cursorNoFocusFgColor.
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2417
84e43257565b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  2418
    "Modified: 22.9.1997 / 00:16:13 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2419
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2420
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2421
gotoLine:aLineNumber
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2422
    "position cursor onto line, aLineNumber.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2423
     Make certain that this line is visible"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2424
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2425
    self makeLineVisible:aLineNumber.
2951
eb820ef25acf unselect before gotoLine
Claus Gittinger <cg@exept.de>
parents: 2950
diff changeset
  2426
    self unselect.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2427
    self cursorLine:aLineNumber col:1
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2428
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2429
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2430
hideCursor
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2431
    "make cursor invisible if currently invisible"
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2432
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2433
    ^ self cursorShown:false
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2434
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2435
    "Modified: / 30.3.1999 / 16:02:28 / stefan"
121
claus
parents: 118
diff changeset
  2436
!
claus
parents: 118
diff changeset
  2437
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2438
makeCursorVisible
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2439
    "scroll text to make cursorline visible
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2440
     (i.e. to have cursorLine in visible area)"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2441
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2442
    |line col|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2443
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2444
    cursorLine notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2445
        line := cursorLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2446
        col := cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2447
        "
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2448
         if there is a selection, its better to
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2449
         have its start being visible, instead of the end
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2450
        "
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2451
        (selectionStartLine notNil
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2452
        and:[selectionEndLine notNil]) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2453
            expandingTop ~~ false ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2454
                line := selectionStartLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2455
                col := selectionStartCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2456
            ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2457
                line := selectionEndLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2458
                col := selectionEndCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2459
            ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2460
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2461
        self makeLineVisible:line.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2462
        self makeColVisible:col inLine:line
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2463
    ]
479
fae6d1251888 fixed Shift-Cursor selection & show another cursor when matching parents
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
  2464
fae6d1251888 fixed Shift-Cursor selection & show another cursor when matching parents
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
  2465
    "Modified: 6.3.1996 / 13:46:46 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2466
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2467
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2468
makeCursorVisibleAndShowCursor:flag
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2469
    "scroll to make cursorLine visible;
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2470
     if flag is true, draw the cursor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2471
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2472
    self makeCursorVisible.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2473
    flag ifTrue:[self showCursor]
121
claus
parents: 118
diff changeset
  2474
!
claus
parents: 118
diff changeset
  2475
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2476
setCursorCol:colNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2477
    "strictly private: set the cursorCol"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2478
2815
d71f43d7de3e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2796
diff changeset
  2479
    cursorCol := (colNr max:1).
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2480
    cursorColHolder value:cursorCol.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2481
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2482
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2483
setCursorLine:lineNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2484
    "strictly private: set the cursorLine"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2485
3303
add21df4dcb1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
  2486
    "/ self assert:(lineNr notNil).
add21df4dcb1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
  2487
add21df4dcb1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
  2488
    cursorLine := (lineNr ? 1).
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2489
    cursorLineHolder value:cursorLine.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2490
    self updateCursorVisibleLine.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2491
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2492
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2493
setCursorLine:lineNr col:colNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2494
    "strictly private: set the cursorLine, col and update the visibleLine"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2495
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2496
    self setCursorLine:lineNr.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2497
    self setCursorCol:colNr.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2498
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2499
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2500
setValidatedCursorCol:colNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2501
    "strictly private: set the cursorCol"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2502
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2503
    self setCursorCol:(self validateCursorCol:colNr inLine:cursorLine).
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2504
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2505
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2506
setValidatedCursorLine:lineNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2507
    "strictly private: set the cursorLine and update the visibleLine"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2508
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2509
    self setCursorLine:(self validateCursorLine:lineNr).
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2510
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2511
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2512
setValidatedCursorLine:lineNr col:colNr
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2513
    "strictly private: set the cursorLine, col and update the visibleLine"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2514
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2515
    self setValidatedCursorLine:lineNr.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2516
    self setValidatedCursorCol:colNr.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2517
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2518
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2519
showCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2520
    "make cursor visible if currently invisible"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2521
1833
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2522
    ^ self cursorShown:true
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2523
542d79f7ed5c Move common channels to View.
Stefan Vogel <sv@exept.de>
parents: 1825
diff changeset
  2524
    "Modified: / 30.3.1999 / 16:02:34 / stefan"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2525
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2526
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2527
singleQuoteSelection
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2528
    "place single quotes around the selected text"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2529
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2530
    |line1 col1 line2 col2|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2531
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2532
    line1 := self selectionStartLine.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2533
    col1 := self selectionStartCol.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2534
    line2 := self selectionEndLine.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2535
    col2 := self selectionEndCol.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2536
    (line1 notNil
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2537
        and:[ col1 notNil
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2538
        and:[ line2 notNil
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2539
        and:[ col2 notNil ]]])
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2540
    ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2541
        self insertString:Character quote asString atLine:line2 col:col2+1.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2542
        self insertString:Character quote asString atLine:line1 col:col1.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2543
        self selectFromLine:line1 col:col1 toLine:line2 col:col2+2.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2544
    ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2545
        self beep.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2546
    ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2547
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2548
    "Created: / 06-06-2016 / 11:03:36 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2549
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2550
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2551
undrawCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2552
    "undraw the cursor (i.e. redraw the character(s) under the cursor)"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2553
2085
4498b1a50d72 fixed undrawCursor, when there is italic text
Claus Gittinger <cg@exept.de>
parents: 2072
diff changeset
  2554
    |prevCol line oldClip x y e1 e2 e3|
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  2555
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2556
    cursorVisibleLine notNil ifTrue:[
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2557
        prevCol := cursorCol - 1.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2558
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2559
        "/ if there is any italic stuff in the cursor line,
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2560
        "/ redraw it completely (because characters overlap).
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2561
        cursorCol > 1 ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2562
            (line := self listAt:cursorLine) notNil ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2563
                line hasChangeOfEmphasis ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2564
                    line size >= (cursorCol-1) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2565
                        e1 := Text extractEmphasis:#italic from:(line emphasisAt:cursorCol-1).
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2566
                        line size >= (cursorCol) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2567
                            e2 := Text extractEmphasis:#italic from:(line emphasisAt:cursorCol).
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2568
                            line size >= (cursorCol+1) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2569
                                e3 := Text extractEmphasis:#italic from:(line emphasisAt:cursorCol+1)
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2570
                            ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2571
                        ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2572
                    ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2573
                    (e1 notNil or:[e2 notNil or:[e3 notNil]]) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2574
                        ^ super redrawVisibleLine:cursorVisibleLine
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2575
                    ]
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2576
                ]
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2577
            ]
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2578
        ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2579
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2580
        ((cursorType == #caret)
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2581
         or:[cursorType == #solidCaret
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2582
         or:[cursorType == #bigSolidCaret
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2583
         or:[cursorType == #bigCaret
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2584
         or:[cursorType == #Ibeam]]]]) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2585
            "caret-cursor touches 4 characters"
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2586
            ((cursorCol > 1) and:[fontIsFixedWidth]) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2587
                super redrawVisibleLine:cursorVisibleLine-1 from:prevCol to:cursorCol.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2588
                super redrawVisibleLine:cursorVisibleLine from:prevCol to:cursorCol.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2589
                super redrawVisibleLine:cursorVisibleLine+1 from:prevCol to:cursorCol.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2590
            ] ifFalse:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2591
                "care for left margin"
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2592
                super redrawVisibleLine:cursorVisibleLine; redrawVisibleLine:cursorVisibleLine+1.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2593
            ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2594
            ^ self
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2595
        ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2596
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2597
        cursorType == #ibeam ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2598
            "ibeam-cursor touches 2 characters"
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2599
            cursorCol > 1 ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2600
                super redrawVisibleLine:cursorVisibleLine from:prevCol to:cursorCol.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2601
            ] ifFalse:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2602
                "care for left margin"
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2603
                super redrawVisibleLine:cursorVisibleLine.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2604
            ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2605
            ^ self
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2606
        ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2607
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2608
        "block cursor is simple - just one character under cursor"
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2609
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2610
        "/ however, if italic characters are involved, we must care
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2611
        "/ for the chars before/after the cursor.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2612
        "/ We redraw the part of the previous character which got
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2613
        "/ detroyed by the block cursor.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2614
        "/ (must change the clip, to avoid destroying the prev-prev character)
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2615
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2616
        line := self visibleAt:cursorVisibleLine.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2617
        (line notNil and:[line isText]) ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2618
            cursorCol > 1 ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2619
                oldClip := self clippingRectangleOrNil.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2620
                x := (self xOfCol:cursorCol inVisibleLine:cursorVisibleLine) - viewOrigin x.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2621
                y := self yOfVisibleLine:cursorVisibleLine.
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  2622
                self clippingRectangle:(x@y extent:((gc font width * 2) @ fontHeight)).
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2623
                super redrawVisibleLine:cursorVisibleLine from:cursorCol-1 to:cursorCol.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2624
                self clippingRectangle:oldClip.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2625
                ^ self.
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2626
            ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2627
        ].
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  2628
        super redrawVisibleLine:cursorVisibleLine col:cursorCol
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2629
    ]
728
3ef81000ee8c new cursorTypes: #bigCaret and #bigSolidCaret
Claus Gittinger <cg@exept.de>
parents: 698
diff changeset
  2630
2088
b2beb67b1a98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  2631
    "Modified: / 15.12.1999 / 22:25:59 / cg"
121
claus
parents: 118
diff changeset
  2632
!
claus
parents: 118
diff changeset
  2633
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2634
updateCursorVisibleLine
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2635
    "strictly private: set the visibleLine from the cursorLine.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2636
     notice: visibleLine will be set to nil if the cursor is not visible"
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2637
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2638
    cursorVisibleLine := self listLineToVisibleLine:cursorLine.
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2639
!
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  2640
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2641
validateCursorCol:col inLine:line
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2642
    "check of col is a valid cursor position; return a new col-nr if not.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2643
     Here, no limits are enforced (and col is returned),
5593
ad41e448d7a8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 5581
diff changeset
  2644
     but it may be redefined in EditFields or views which don't like the
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2645
     cursor to be positioned behind the end of a textLine (vi/st-80 behavior)"
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2646
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2647
    |l max|
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2648
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2649
    "/ in ST80 mode,
2707
810c994db0b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2696
diff changeset
  2650
    "/ the cursor may not be positioned beyond the
810c994db0b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2696
diff changeset
  2651
    "/ end of a line or beyond the last line of the text
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2652
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  2653
    self st80EditMode ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2654
        l := (self listAt:line).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2655
        max := l size + 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2656
        col > max ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2657
            ^ max
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2658
        ]
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  2659
    ].
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2660
    ^ col
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2661
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2662
    "Created: / 22.5.1996 / 14:25:30 / cg"
1596
0bbdb4e9fc43 made st80Mode also an inst-flag;
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
  2663
    "Modified: / 20.6.1998 / 18:19:24 / cg"
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2664
!
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2665
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2666
validateCursorLine:line
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2667
    "check of line is a valid cursor line; return a fixed line-nr if not.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  2668
     Here, no limits are enforced (and line is returned), but it may be
5593
ad41e448d7a8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 5581
diff changeset
  2669
     redefined in views which don't like the cursor to be positioned
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2670
     behind the end of the text (vi/st-80 behavior), or want to
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2671
     skip reserved regions"
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2672
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2673
    "/
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2674
    "/ in st80Mode, the cursor may not be positioned
5367
7696ee76ebe8 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5361
diff changeset
  2675
    "/ beyond the last line 
7696ee76ebe8 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5361
diff changeset
  2676
    "/ (but it must be posible to place it on one line below the last one 
7696ee76ebe8 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5361
diff changeset
  2677
    "/ - otherwise deleteSelection and some others fail to delete from previousToLastLine)
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2678
    "/
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  2679
    self st80EditMode ifTrue:[
5367
7696ee76ebe8 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5361
diff changeset
  2680
        ^ (line min:(list size + 1)) max:1
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2681
    ].
674
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2682
    ^ line
247db5b61407 added cursor-line validation
Claus Gittinger <cg@exept.de>
parents: 672
diff changeset
  2683
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  2684
    "Created: / 22.5.1996 / 18:22:23 / cg"
1596
0bbdb4e9fc43 made st80Mode also an inst-flag;
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
  2685
    "Modified: / 20.6.1998 / 18:19:26 / cg"
672
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2686
!
065750d02339 added cursorCol-validation
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2687
121
claus
parents: 118
diff changeset
  2688
withCursorOffDo:aBlock
claus
parents: 118
diff changeset
  2689
    "evaluate aBlock with cursor off; turn it on afterwards."
claus
parents: 118
diff changeset
  2690
claus
parents: 118
diff changeset
  2691
    (shown not or:[cursorShown not]) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2692
        ^ aBlock value
121
claus
parents: 118
diff changeset
  2693
    ].
claus
parents: 118
diff changeset
  2694
    self hideCursor.
2522
d80496af7eaf #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 2506
diff changeset
  2695
    aBlock ensure:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  2696
        self showCursor
121
claus
parents: 118
diff changeset
  2697
    ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2698
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2699
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2700
!EditTextView methodsFor:'drag & drop'!
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2701
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2702
allowDrop:aBoolean
3236
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2703
    "enable/disable drop support"
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2704
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2705
    aBoolean ifFalse:[
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2706
        dropTarget := nil.
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2707
    ] ifTrue:[
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2708
        dropTarget isNil ifTrue:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2709
            dropTarget := DropTarget 
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2710
                                receiver:self
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2711
                                argument:nil
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2712
                                dropSelector:#'drop:'
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2713
                                canDropSelector:#'canDrop:'
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2714
        ]
3236
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2715
    ].
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2716
!
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2717
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2718
canDrop:aDropContext
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2719
    "public from d&d.
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2720
     I accept textObjects and fileObjects only."
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2721
4089
c6567fb50316 comment/format in: #canDrop:
Claus Gittinger <cg@exept.de>
parents: 4064
diff changeset
  2722
    "/ cg: disabled to avoid unintended drop (is same as copy-past, anyway)
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2723
    aDropContext sourceWidget == self ifTrue:[^ false].
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2724
    ^ self canDropObjects:aDropContext dropObjects
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2725
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2726
    "Modified: / 13-10-2006 / 17:41:09 / cg"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2727
!
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2728
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2729
canDropObjects:aCollectionOfDropObjects
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2730
    "public from d&d.
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2731
     I accept textObjects and fileObjects only."
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2732
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2733
    self checkModificationsAllowed ifFalse:[^ false].
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2734
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2735
    aCollectionOfDropObjects isEmpty ifTrue:[ ^ false ].
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2736
    ^ aCollectionOfDropObjects conform:[:obj| (obj isTextObject or:[obj isFileObject])]
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2737
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2738
    "Created: / 13-10-2006 / 15:56:57 / cg"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2739
    "Modified: / 13-10-2006 / 17:41:14 / cg"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2740
!
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2741
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2742
drop:aDropContext
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2743
    "public from d&d.
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2744
     drop objects (new API)"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2745
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2746
    self dropObjects:(aDropContext dropObjects)
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2747
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2748
    "Modified: / 13-10-2006 / 17:41:19 / cg"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2749
!
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2750
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2751
dropFileObject:aDropObject
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2752
    "drop objects
3236
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2753
     For bw. compatibility, also collections of drop objects are handled (may vanish)"
aeb1fe5a6ead drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3235
diff changeset
  2754
4136
fcce27dfc253 changed: #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2755
    |answer text fn pasteWhat sensor dontAskAgainHolder enforcedDropMode app|
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2756
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2757
    pasteWhat := #name.
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2758
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2759
    fn := aDropObject asFilename.
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2760
    (fn exists and:[fn isRegularFile]) ifTrue:[
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2761
        enforcedDropMode := UserPreferences current enforcedDropModeForFiles.
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2762
        (enforcedDropMode notNil 
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2763
        and:[enforcedDropMode ~~ #name or:[fn fileSize <= (1024*1024)]]) ifTrue:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2764
            pasteWhat := enforcedDropMode.
3886
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2765
        ] ifFalse:[
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2766
            sensor := self sensor.
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2767
            (sensor shiftDown or:[sensor ctrlDown]) ifTrue:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2768
                pasteWhat := #name.
3886
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2769
            ] ifFalse:[
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2770
                (sensor metaDown) ifTrue:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2771
                    pasteWhat := #contents.
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2772
                ] ifFalse:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2773
                    dontAskAgainHolder := false asValue.
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2774
                    answer := Dialog
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2775
                        confirmWithCancel:(resources
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2776
                                            stringWithCRs:'Drop the Filename (%1)\or its Contents ?\\Hint: bypass this dialog by pressing SHIFT/CTRL or ALT during the next drop.\SHIFT/CTRL to drop the name, ALT for the contents.'
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2777
                                            with:fn name allBold)
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2778
                        labels:#( 'Cancel' 'Name' 'Contents' )
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2779
                        values:#( nil #name #contents )
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2780
                        default:#contents
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2781
                        check:(resources string:'Do not ask again; instead, always paste the contents of small files.') on:dontAskAgainHolder
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2782
                        title:(resources string:'Drop What').
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2783
                    answer isNil ifTrue:[ ^ self ].
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2784
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2785
                    dontAskAgainHolder value ifTrue:[
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2786
                        UserPreferences current enforcedDropModeForFiles:#contents
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2787
                    ].
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2788
                    pasteWhat := answer.
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2789
                ]
3886
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2790
            ]
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2791
        ].
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2792
    ].
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2793
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  2794
    pasteWhat == #name ifTrue:[
3886
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2795
        text := fn pathName
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2796
    ] ifFalse:[
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2797
        self withWaitCursorDo:[
5063
103ce513648a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5060
diff changeset
  2798
            text := fn contentsAsString
4136
fcce27dfc253 changed: #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2799
        ].
fcce27dfc253 changed: #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2800
        (app := self application) notNil ifTrue:[
fcce27dfc253 changed: #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2801
            app droppedFile:fn in:self
fcce27dfc253 changed: #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
  2802
        ].
3886
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2803
    ].
b50c9304f1d1 better alien file drop
Claus Gittinger <cg@exept.de>
parents: 3880
diff changeset
  2804
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2805
    self 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2806
        undoablePaste:text 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2807
        info:'Drop File'.
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2808
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2809
    "Created: / 13-10-2006 / 17:38:31 / cg"
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  2810
    "Modified: / 28-07-2007 / 13:27:09 / cg"
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2811
!
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2812
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2813
dropObject:aDropObject
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2814
    "drop objects
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2815
     For bw. compatibility, also collections of drop objects are handled (may vanish)"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2816
3415
35ffbeec46d9 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  2817
    |text|
35ffbeec46d9 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  2818
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2819
    (aDropObject isFileObject) ifTrue:[
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2820
        self dropFileObject:aDropObject
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2821
    ] ifFalse:[
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2822
        aDropObject isTextObject ifTrue:[
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2823
            text := aDropObject theObject.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2824
            text isStringCollection ifTrue:[
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2825
                text := text asStringWithoutFinalCR
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2826
            ].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2827
        ] ifFalse:[
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2828
            text := aDropObject theObject asString
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2829
        ].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2830
        self 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2831
            undoablePaste:text 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  2832
            info:'Drop'.
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2833
    ].
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2834
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2835
    "Created: / 13-10-2006 / 17:37:05 / cg"
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  2836
    "Modified: / 28-07-2007 / 13:26:53 / cg"
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2837
!
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2838
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2839
dropObjects:aCollectionOfDropObjects
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2840
    "public from d&d.
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2841
     drop objects (old API)"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2842
3868
664a888e9c6a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3855
diff changeset
  2843
    aCollectionOfDropObjects do:[:el |
664a888e9c6a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3855
diff changeset
  2844
        self dropObject:el
3412
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2845
    ].
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2846
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2847
    "Created: / 13-10-2006 / 15:59:40 / cg"
e893eef88643 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 3410
diff changeset
  2848
    "Modified: / 13-10-2006 / 17:41:23 / cg"
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2849
! !
62794ae04446 support drop
ca
parents: 2580
diff changeset
  2850
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2851
!EditTextView methodsFor:'editing'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  2852
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2853
applyConverterToSelection:converter
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2854
    "apply a converter to the selected text"
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2855
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2856
    |line1 line2|
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2857
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2858
    line1 := self selectionStartLine.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2859
    line2 := self selectionEndLine.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2860
    line1 isNil ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2861
        line1 := self perform:#cursorLine ifNotUnderstood:nil.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2862
        line1 notNil ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2863
            line2 := line1
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2864
        ]
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2865
    ].
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2866
    line1 notNil ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2867
        line1 to:line2 do:[:lineNr |
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2868
            |line col1 col2 newLine|
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2869
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2870
            line := (self listAt:lineNr) copy.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2871
            line size > 0 ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2872
                lineNr == line1 ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2873
                    col1 := selectionStartCol.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2874
                ] ifFalse:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2875
                    col1 := 1.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2876
                ].
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2877
                lineNr == line2 ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2878
                    col2 := selectionEndCol.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2879
                ] ifFalse:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2880
                    col2 := (self listAt:lineNr) size.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2881
                ].
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2882
                newLine := converter value:line value:lineNr value:col1 value:col2.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2883
                self withoutRedrawAt:lineNr put:newLine.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2884
                self invalidateLine:lineNr.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2885
            ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2886
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2887
    ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2888
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2889
    "Created: / 06-06-2016 / 10:53:17 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2890
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2891
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2892
convertSelectionToLowercase
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2893
    "to-lower selected text"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2894
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2895
    self applyConverterToSelection:[:line :lnr :col1 :col2 |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2896
        col1 to:col2 do:[:col |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2897
            |ch|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2898
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2899
            ch := line at:col.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2900
            line at:col put:ch asLowercase.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2901
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2902
        line.        
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2903
    ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2904
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2905
    "Created: / 06-06-2016 / 10:50:28 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2906
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2907
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2908
convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2909
    "toLower/toUppercaseFirst/toUpper selected text"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2910
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2911
    self applyConverterToSelection:[:line :lineNr :col1 :col2 |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2912
        |isAllLower isLowerFirst isAllUpper isUpperFirst
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2913
         makeLowercase makeUppercase makeUppercaseFirst makeLowercaseFirst|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2914
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2915
        isAllLower := isAllUpper := isUpperFirst := isLowerFirst := true.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2916
        col1 to:col2 do:[:col |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2917
            |ch|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2918
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2919
            ch := line at:col.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2920
            ch isUppercase ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2921
                isAllLower := false.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2922
                col == col1 ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2923
                    isLowerFirst := false.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2924
                ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2925
            ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2926
                ch isLowercase ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2927
                    isAllUpper := false.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2928
                    col == col1 ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2929
                        isUpperFirst := false.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2930
                    ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2931
                ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2932
            ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2933
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2934
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2935
        makeLowercase := makeUppercase := makeUppercaseFirst := makeLowercaseFirst := false.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2936
        isLowerFirst ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2937
            makeUppercaseFirst := true.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2938
        ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2939
            "/ must remember where we come from - otherwise, we end up
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2940
            "/ in upperFirst - lowerFirst cycle.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2941
            "/ think about a good place to store this state
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2942
            false "(isUpperFirst and:[isAllUpper not])" ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2943
                makeLowercaseFirst := true.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2944
             ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2945
                isAllUpper ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2946
                    makeLowercase := true.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2947
                ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2948
                    makeUppercase := true.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2949
                ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2950
            ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2951
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2952
        makeUppercaseFirst ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2953
            line at:col1 put:(line at:col1) asUppercase.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2954
        ] ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2955
            makeLowercaseFirst ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2956
                line at:col1 put:(line at:col1) asLowercase.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2957
            ] ifFalse:[
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2958
                col1 to:col2 do:[:col |
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2959
                    |ch|
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2960
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2961
                    ch := line at:col.
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2962
                    ch := makeLowercase
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2963
                            ifTrue:[ ch asLowercase ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2964
                            ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2965
                                makeUppercase
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2966
                                    ifTrue:[ ch asUppercase ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2967
                                    ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2968
                                        col == col1
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2969
                                            ifTrue:[ ch asUppercase ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2970
                                            ifFalse:[ ch asLowercase ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2971
                                    ]
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2972
                            ].
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2973
                    line at:col put:ch.
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2974
                ].
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2975
            ].
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2976
        ].
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2977
        line
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2978
    ]
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2979
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  2980
    "Created: / 14-07-2011 / 11:40:26 / cg"
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2981
    "Modified: / 06-06-2016 / 10:57:15 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2982
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2983
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2984
convertSelectionToUppercase
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2985
    "to-upper selected text"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2986
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2987
    self applyConverterToSelection:[:line :lnr :col1 :col2 |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2988
        col1 to:col2 do:[:col |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2989
            |ch|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2990
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2991
            ch := line at:col.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2992
            line at:col put:ch asUppercase.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2993
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2994
        line.        
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2995
    ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2996
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2997
    "Created: / 06-06-2016 / 11:09:04 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2998
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  2999
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3000
convertSelectionToUppercaseFirst
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3001
    "to-upperFirst selected text"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3002
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3003
    self applyConverterToSelection:[:line :lnr :col1 :col2 |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3004
        |state|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3005
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3006
        state := #first.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3007
        col1 to:col2 do:[:col |
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3008
            |ch|
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3009
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3010
            ch := line at:col.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3011
            ch isSeparator ifFalse:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3012
                state == #first ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3013
                    line at:col put:ch asUppercase.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3014
                    state := #skipRest
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3015
                ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3016
            ] ifTrue:[
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3017
                state := #first
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3018
            ]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3019
        ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3020
        line.        
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3021
    ].
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3022
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3023
    "Created: / 06-06-2016 / 10:50:52 / cg"
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  3024
!
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  3025
313
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3026
copyAndDeleteSelection
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3027
    "copy the selection into the pastBuffer and delete it"
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3028
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3029
    selectionStartLine notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3030
        self setClipboardText:(self selection).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3031
        self deleteSelection.
313
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3032
    ].
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3033
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3034
    "Created: 27.1.1996 / 16:23:28 / cg"
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3035
!
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  3036
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3037
deleteCharAtCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3038
    "delete single character under cursor; does not merge lines"
121
claus
parents: 118
diff changeset
  3039
claus
parents: 118
diff changeset
  3040
    |wasOn|
claus
parents: 118
diff changeset
  3041
claus
parents: 118
diff changeset
  3042
    wasOn := self hideCursor.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3043
    self deleteCharAtLine:cursorLine col:cursorCol.
121
claus
parents: 118
diff changeset
  3044
    wasOn ifTrue:[self showCursor]
claus
parents: 118
diff changeset
  3045
!
claus
parents: 118
diff changeset
  3046
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3047
deleteCharAtLine:lineNr col:colNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3048
    "delete a single character at colNr in line lineNr"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3049
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  3050
    self st80EditMode ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3051
        (self listAt:cursorLine) size + 1 = colNr ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3052
            | wasOn |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3053
            wasOn := self hideCursor.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3054
            self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3055
                cursorReturn;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3056
                cursorCol:1;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3057
                deleteCharBeforeCursor.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3058
            wasOn ifTrue:[ self showCursor].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3059
            ^ self.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3060
        ].
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  3061
    ].
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  3062
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3063
    self deleteCharsAtLine:lineNr fromCol:colNr toCol:colNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3064
!
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3065
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3066
deleteCharBeforeCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3067
    "delete single character to the left of cursor and move cursor to left"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3068
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3069
    |soCol wasOn lineNrAboveCursor ln originalLine prevTab|
121
claus
parents: 118
diff changeset
  3070
claus
parents: 118
diff changeset
  3071
    wasOn := self hideCursor.
4814
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  3072
    (autoIndent and:[ (tabPositions includes:cursorCol)]) ifTrue:[
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3073
        prevTab := (self prevTabBefore:cursorCol) max:1.
4966
fdd9e824fd05 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4940
diff changeset
  3074
        ln := originalLine := (list at:cursorLine ifAbsent:'') ? ''.
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3075
        ln size < prevTab ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3076
            ln := ln , (String new:prevTab withAll:Character space).
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3077
        ].
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3078
        (ln copyTo:prevTab) isBlank ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3079
            (ln copyFrom:prevTab+1) isBlank ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3080
                cursorCol > prevTab ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3081
                    self st80EditMode ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3082
                        "/ ensure that there is no conflict here: st80EditMode will
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3083
                        "/ not allow a cursor position beyond the end of line,
5742
0a7b90d7670a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5724
diff changeset
  3084
                        "/ so ensure that cursorLine:col: will force us to the beginning of the line
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3085
                        originalLine size < prevTab ifTrue:[
5742
0a7b90d7670a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5724
diff changeset
  3086
                            self checkForExistingLine:cursorLine.    
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3087
                            self basicListAt:cursorLine put:ln
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3088
                        ]
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3089
                    ].
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3090
                    self cursorLine:cursorLine col:prevTab.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3091
                    wasOn ifTrue:[ self showCursor ].
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3092
                    ^  self
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3093
                ].
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3094
            ] ifFalse:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3095
                self deleteFromLine:cursorLine col:prevTab toLine:cursorLine col:cursorCol-1.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3096
                self cursorLine:cursorLine col:prevTab.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3097
                wasOn ifTrue:[ self showCursor ].
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3098
                ^  self.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3099
            ]
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3100
        ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3101
    ].
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3102
2491
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3103
"/        (autoIndent
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3104
"/    and:[cursorCol  ~~ 1
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  3105
"/    and:[cursorLine <= (list size)]])
2491
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3106
"/     ifTrue:[
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3107
"/        soCol := (self leftIndentForLine:cursorLine) + 1.
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3108
"/
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3109
"/        (cursorCol == soCol and:[soCol > 1]) ifTrue:[
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3110
"/            ln := list at:cursorLine.
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3111
"/            (ln notNil and:[(ln indexOfNonSeparatorStartingAt:1) < soCol]) ifTrue:[
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3112
"/                soCol := 1
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3113
"/            ]
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3114
"/        ]
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3115
"/    ] ifFalse:[
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3116
        soCol := 1.
2491
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3117
"/    ].
f3e207ae5156 auto indent fix
Claus Gittinger <cg@exept.de>
parents: 2461
diff changeset
  3118
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  3119
    (cursorCol ~~ soCol and:[cursorCol ~~ 1]) ifTrue:[
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3120
        "
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3121
         somewhere in the middle of a line
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3122
        "
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3123
        self cursorLeft.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3124
        self deleteCharAtLine:cursorLine col:cursorCol.
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  3125
    ] ifFalse:[
4592
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3126
        "
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3127
         at begin of line - merge with previous line;
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3128
         except for the very first line.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3129
        "
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3130
        (cursorLine == 1) ifFalse:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3131
            lineNrAboveCursor := self validateCursorLine:(cursorLine - 1).
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3132
            lineNrAboveCursor < cursorLine ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3133
                (lineNrAboveCursor > 0 and:[lineNrAboveCursor > list size]) ifTrue:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3134
                    "/ we are beyond the end of the text.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3135
                    "/ move the cursor to the previous line.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3136
                    self cursorLine:lineNrAboveCursor col:1.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3137
                ] ifFalse:[
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3138
                    self mergeLine:lineNrAboveCursor removeBlanks:false.
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3139
                ]
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3140
            ]
60fc44d286f2 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  3141
        ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3142
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3143
    wasOn ifTrue:[ self showCursor ]
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3144
1419
3aec8008e0a6 more for st80Mode
Claus Gittinger <cg@exept.de>
parents: 1415
diff changeset
  3145
    "Modified: / 16.1.1998 / 22:33:04 / cg"
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3146
!
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3147
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3148
deleteCharsAtLine:lineNr fromCol:colNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3149
    "delete characters from colNr up to the end in line lineNr"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3150
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3151
    |line|
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3152
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3153
    (line := self listAt:lineNr) notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3154
        self deleteCharsAtLine:lineNr fromCol:colNr toCol:(line size)
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3155
    ]
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3156
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3157
!
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3158
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3159
deleteCharsAtLine:lineNr fromCol:startCol toCol:endCol
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3160
    "delete characters from startCol to endCol in line lineNr"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3161
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3162
    |deleted|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3163
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3164
    deleted := self textFromLine:lineNr col:startCol toLine:lineNr col:endCol.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3165
    self basicDeleteCharsAtLine:lineNr fromCol:startCol toCol:endCol.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3166
    self addUndo:(PasteString line:lineNr col:startCol string:deleted info:'delete').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3167
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3168
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3169
deleteCharsAtLine:lineNr toCol:colNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3170
    "delete characters from start up to colNr in line lineNr"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3171
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3172
    self deleteCharsAtLine:lineNr fromCol:1 toCol:colNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3173
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3174
121
claus
parents: 118
diff changeset
  3175
!
claus
parents: 118
diff changeset
  3176
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3177
deleteCursorLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3178
    "delete the line where the cursor sits"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3179
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3180
    self deleteLine:cursorLine
121
claus
parents: 118
diff changeset
  3181
!
claus
parents: 118
diff changeset
  3182
2385
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3183
deleteFromCharacterPosition:charPos1 to:charPos2
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3184
    "delete a substring at a character position"
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3185
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3186
    |line1 col1 line2 col2|
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3187
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3188
    line1 := self lineOfCharacterPosition:charPos1.
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3189
    col1 := charPos1 - (self characterPositionOfLine:line1 col:1) + 1.
2725
eccf283b2efb deleteFromCharacterPos - fixed
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
  3190
    col1 == 0 ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3191
        line1 := line1 - 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3192
        col1 := (self listAt:line1) size + 1.
2725
eccf283b2efb deleteFromCharacterPos - fixed
Claus Gittinger <cg@exept.de>
parents: 2724
diff changeset
  3193
    ].
2385
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3194
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3195
    line2 := self lineOfCharacterPosition:charPos2.
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3196
    col2 := charPos2 - (self characterPositionOfLine:line2 col:1) + 1.
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3197
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3198
    self deleteFromLine:line1 col:col1 toLine:line2 col:col2.
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3199
!
357e8a1cb2b2 added #deleteFromCharacterPosition:to:
Claus Gittinger <cg@exept.de>
parents: 2373
diff changeset
  3200
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3201
deleteFromLine:startLine col:startCol toLine:endLine col:endCol
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3202
    "delete all text from startLine/startCol to endLine/endCol -
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3203
     joining lines if nescessary"
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3204
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3205
    |line newLine lineSize nMore|
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3206
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3207
    self checkModificationsAllowed ifFalse:[ ^ self].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3208
    list isNil ifTrue:[^ self].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3209
    startLine > list size ifTrue:[ ^ self]. "/ deleted space below text
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3210
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3211
    (startLine == endLine) ifTrue:[
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3212
        "/ delete chars within a line
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3213
        self deleteCharsAtLine:startLine fromCol:startCol toCol:endCol.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3214
        ^ self
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3215
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3216
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3217
    ((startCol == 1) and:[endCol == 0]) ifTrue:[
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3218
        "/ delete full lines only
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3219
        endLine > startLine ifTrue:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3220
            self deleteFromLine:startLine toLine:(endLine - 1)
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3221
        ].
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3222
        ^ self
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3223
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3224
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3225
    "/ delete right rest of 1st line
4786
70fd2d143e7c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4782
diff changeset
  3226
    self deleteCharsAtLine:startLine fromCol:(startCol max:1).
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3227
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3228
    "/ delete the inner lines ...
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3229
    endLine > (startLine + 1) ifTrue:[
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3230
        self deleteFromLine:(startLine + 1) toLine:(endLine - 1)
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3231
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3232
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3233
    (endCol ~~ 0) ifTrue:[
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3234
        "/ delete the left rest of the last line
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3235
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3236
        self deleteCharsAtLine:(startLine + 1) toCol:endCol.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3237
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3238
        "/ must add blanks, if startCol lies beyond end of startLine
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3239
        startLine <= list size ifTrue:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3240
            line := list at:startLine.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3241
            lineSize := line size.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3242
            (startCol > lineSize) ifTrue:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3243
                newLine := line.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3244
                line isNil ifTrue:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3245
                    newLine := String new:(startCol - 1)
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3246
                ] ifFalse:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3247
                    nMore := startCol - 1 - lineSize.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3248
                    nMore > 0 ifTrue:[
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3249
                        newLine := line , (line species new:nMore)
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3250
                    ]
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3251
                ].
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3252
                newLine ~~ line ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3253
                    self basicListAt:startLine put:newLine.
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3254
                ].
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3255
                "/ TODO: remember old maxwidth of linerange,
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3256
                "/ only clear widthOfWidestLine, if this max
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3257
                "/ length was (one of) the longest.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3258
                "/ avoids slow delete with huge texts.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3259
                widthOfWidestLine := nil. "/ i.e. unknown
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3260
                self textChanged.
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3261
            ]
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3262
        ]
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3263
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3264
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3265
    "/ merge the left rest of 1st line with right rest of last line into one
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3266
    self mergeLine:startLine removeBlanks:false
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3267
4225
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3268
    "Modified: / 10-11-1998 / 23:52:59 / cg"
a0a83ed7368c changed: #deleteFromLine:col:toLine:col:
az
parents: 4213
diff changeset
  3269
    "Modified: / 18-03-2011 / 18:25:01 / az"
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3270
!
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  3271
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3272
deleteFromLine:startLineNr toLine:endLineNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3273
    "delete some lines"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3274
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3275
    |deleted|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3276
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3277
    deleted := self textFromLine:startLineNr col:1 toLine:endLineNr+1 col:0.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3278
    self basicDeleteFromLine:startLineNr toLine:endLineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3279
    self addUndo:(PasteString line:startLineNr col:1 string:deleted info:'delete').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3280
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3281
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3282
deleteLine:lineNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3283
    "delete line"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3284
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3285
    self deleteFromLine:lineNr toLine:lineNr
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3286
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3287
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3288
!
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  3289
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3290
deleteLineWithoutRedraw:lineNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3291
    "delete line - no redraw;
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3292
     return true, if something was really deleted"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3293
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3294
    |deleted ret|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3295
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3296
    deleted := self textFromLine:lineNr col:1 toLine:lineNr+1 col:0.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3297
    ret := self basicDeleteLineWithoutRedraw:lineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3298
    self addUndo:(PasteString line:lineNr col:1 string:deleted info:'delete').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3299
    ^ ret.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3300
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3301
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3302
deleteLinesWithoutRedrawFrom:startLine to:endLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3303
    "delete lines - no redraw;
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3304
     return true, if something was really deleted"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3305
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3306
    |lastLine|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3307
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3308
    self checkModificationsAllowed ifFalse:[^ false].
331
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  3309
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3310
    (list isNil or:[startLine > list size]) ifTrue:[^ false].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3311
    (endLine > list size) ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3312
        lastLine := list size
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3313
    ] ifFalse:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3314
        lastLine := endLine
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3315
    ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3316
    self basicListRemoveFromIndex:startLine toIndex:lastLine.
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3317
    "/ TODO: remember old maxwidth of linerange,
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3318
    "/ only clear widthOfWidestLine, if this max
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3319
    "/ length was (one of) the longest.
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3320
    "/ avoids slow delete with huge texts.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3321
    widthOfWidestLine := nil. "/ i.e. unknown
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3322
    self textChanged.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3323
    ^ true
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3324
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3325
    "Modified: / 10.11.1998 / 23:55:29 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3326
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3327
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3328
deleteSelection
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3329
    "delete the selection"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3330
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3331
    |wasOn startLine startCol endLine endCol|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3332
331
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  3333
    self checkModificationsAllowed ifFalse:[ ^ self].
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  3334
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3335
    selectionStartLine notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3336
        wasOn := self hideCursor.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3337
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3338
        startLine := selectionStartLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3339
        startCol := selectionStartCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3340
        endLine := selectionEndLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3341
        endCol := selectionEndCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3342
        self unselectWithoutRedraw.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3343
        self deleteFromLine:startLine col:startCol toLine:endLine col:endCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3344
        self setCursorLine:startLine col:startCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3345
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3346
        self makeCursorVisibleAndShowCursor:wasOn
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3347
    ]
121
claus
parents: 118
diff changeset
  3348
!
claus
parents: 118
diff changeset
  3349
2157
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3350
deleteWordBeforeCursor
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3351
    "delete the word to the left of cursor and move cursor to left"
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3352
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3353
    |wasOn beginCol beginLine endCol endLine|
2157
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3354
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3355
    self checkModificationsAllowed ifFalse:[ ^ self].
5361
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  3356
    cursorCol <= 1 ifTrue:[
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  3357
        self deleteCharBeforeCursor.
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  3358
        ^ self 
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  3359
    ].
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3360
2157
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3361
    wasOn := self hideCursor.
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3362
    self 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3363
        undoableDo:[
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3364
            endCol := cursorCol-1.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3365
            endLine := cursorLine.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3366
            self cursorToPreviousWord.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3367
            beginCol := cursorCol.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3368
            beginLine := cursorLine.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3369
            self deleteFromLine:beginLine col:beginCol toLine:endLine col:endCol.
5361
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  3370
            self cursorLine:cursorLine col:beginCol.
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3371
        ] 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  3372
        info:'Delete Word'.
2157
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3373
    wasOn ifTrue:[ self showCursor ].
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3374
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3375
    "Modified: / 22.2.2000 / 23:59:04 / cg"
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3376
!
ba22c3cc278b added Shift-BackSpace function: DeleteWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  3377
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3378
indentSelectionBy1
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3379
    "indent selected line-range
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3380
     by 1 space (i.e. to the right)"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3381
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3382
    self indentBy:1
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3383
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3384
    "Created: / 06-06-2016 / 10:58:19 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3385
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3386
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3387
insert:aCharacter atLine:lineNr col:colNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3388
    "insert a single character at lineNr/colNr;
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3389
     set emphasis to character at current position"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3390
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3391
    self basicInsert:aCharacter atLine:lineNr col:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3392
    aCharacter ~~ Character cr ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3393
        self addUndo:(DeleteCharacters line:lineNr col:colNr info:'insert').
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3394
    ]
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3395
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3396
121
claus
parents: 118
diff changeset
  3397
insertCharAtCursor:aCharacter
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3398
    "insert a single character at cursor-position - advance cursor."
121
claus
parents: 118
diff changeset
  3399
claus
parents: 118
diff changeset
  3400
    |wasOn|
claus
parents: 118
diff changeset
  3401
claus
parents: 118
diff changeset
  3402
    wasOn := self hideCursor.
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3403
    aCharacter == Character tab ifTrue:[
4820
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3404
        "/ needs special care to advance cursor correctly
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3405
        self insertTabAtCursor
121
claus
parents: 118
diff changeset
  3406
    ] ifFalse:[
4820
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3407
        self insert:aCharacter atLine:cursorLine col:cursorCol.
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3408
        aCharacter == (Character cr) ifTrue:[
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3409
            self basicCursorReturn
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3410
        ] ifFalse:[
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3411
            self cursorRight.
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  3412
        ].
121
claus
parents: 118
diff changeset
  3413
    ].
claus
parents: 118
diff changeset
  3414
    self makeCursorVisibleAndShowCursor:wasOn.
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3415
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3416
    "Modified: / 12.6.1998 / 21:50:20 / cg"
121
claus
parents: 118
diff changeset
  3417
!
claus
parents: 118
diff changeset
  3418
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3419
insertLine:aString before:lineNr
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3420
    "insert the line aString before line lineNr"
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3421
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3422
    ^ self insertLines:(Array with:aString) from:1 to:1  before:lineNr.
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3423
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3424
    "Modified: 14.5.1996 / 13:42:54 / cg"
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3425
!
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3426
155
claus
parents: 133
diff changeset
  3427
insertLines:aStringCollection before:lineNr
claus
parents: 133
diff changeset
  3428
    "insert a bunch before line lineNr"
claus
parents: 133
diff changeset
  3429
claus
parents: 133
diff changeset
  3430
    self insertLines:aStringCollection from:1 to:aStringCollection size before:lineNr
claus
parents: 133
diff changeset
  3431
claus
parents: 133
diff changeset
  3432
    "Modified: 6.9.1995 / 20:51:03 / claus"
claus
parents: 133
diff changeset
  3433
!
claus
parents: 133
diff changeset
  3434
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3435
insertLines:someText from:start to:end before:lineNr
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3436
    "insert a bunch of lines before line lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3437
     The cursor position is left unchanged."
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3438
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3439
    |text indent visLine w nLines "{ Class: SmallInteger }"
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3440
     srcY "{ Class: SmallInteger }"
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3441
     dstY "{ Class: SmallInteger }" |
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3442
5357
d942c4152f03 class: EditTextView
ca
parents: 5331
diff changeset
  3443
    "wrong when pasting multiple lines"
d942c4152f03 class: EditTextView
ca
parents: 5331
diff changeset
  3444
    false "autoIndent" ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3445
        indent := self leftIndentForLine:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3446
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3447
        text := someText 
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3448
            collect:[:ln||line|
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3449
                ln notNil ifTrue:[
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3450
                    line := ln withoutLeadingSeparators.
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3451
                    (line isEmpty or:[indent == 0]) ifFalse:[
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3452
                        line := (String new:indent), line
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3453
                    ].
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3454
                    line
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3455
                ] ifFalse:[
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3456
                    nil
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3457
                ]
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  3458
            ].
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3459
    ] ifFalse:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3460
        text := someText
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3461
    ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3462
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3463
    visLine := self listLineToVisibleLine:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3464
    (shown not or:[visLine isNil]) ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3465
        self withoutRedrawInsertLines:text
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3466
             from:start to:end
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3467
             before:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3468
    ] ifFalse:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3469
        nLines := end - start + 1.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3470
        ((visLine + nLines) >= nLinesShown) ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3471
            self withoutRedrawInsertLines:text
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3472
                 from:start to:end
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3473
                 before:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3474
            self redrawFromVisibleLine:visLine to:nLinesShown
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3475
        ] ifFalse:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3476
            w := self widthForScrollBetween:(lineNr + nLines)
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3477
                                        and:(firstLineShown + nLines + nLinesShown).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3478
            srcY := topMargin + ((visLine - 1) * fontHeight).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3479
            dstY := srcY + (nLines * fontHeight).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3480
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3481
            "/
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3482
            "/ scroll ...
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3483
            "/
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3484
            "
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3485
             stupid: must catchExpose before inserting new
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3486
             stuff - since catchExpose may perform redraws
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3487
            "
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3488
            self catchExpose.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3489
            self withoutRedrawInsertLines:text
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3490
                 from:start to:end
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3491
                 before:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3492
            self
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3493
                copyFrom:self
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3494
                x:textStartLeft y:srcY
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3495
                toX:textStartLeft y:dstY
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3496
                width:w
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3497
                height:(height - dstY)
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3498
                async:true.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3499
            self redrawFromVisibleLine:visLine to:(visLine + nLines - 1).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3500
            self waitForExpose
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3501
        ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3502
    ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3503
    widthOfWidestLine notNil ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3504
        text do:[:line |
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3505
            widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:line).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3506
        ]
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3507
    ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3508
    self textChanged.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3509
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3510
    "Modified: 29.1.1997 / 13:02:39 / cg"
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3511
!
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3512
654
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3513
insertLines:lines withCR:withCr
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  3514
    "insert a bunch of lines at cursor position.
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3515
     Cursor is moved behind insertion.
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3516
     If withCr is true, append cr after last line"
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3517
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3518
    |start end nLines wasOn|
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3519
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3520
    lines notNil ifTrue:[
4649
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3521
        nLines := lines size.
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3522
        (nLines == 1) ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3523
            self insertStringAtCursor:(lines at:1).
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3524
            withCr ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3525
                self insertCharAtCursor:(Character cr)
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3526
            ]
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3527
        ] ifFalse:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3528
            (cursorCol ~~ 1) ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3529
                self insertStringAtCursor:(lines at:1).
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3530
                self insertCharAtCursor:(Character cr).
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3531
                start := 2
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3532
            ] ifFalse:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3533
                start := 1
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3534
            ].
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3535
            withCr ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3536
                end := nLines
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3537
            ] ifFalse:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3538
                end := nLines - 1
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3539
            ].
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3540
            (start <= nLines) ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3541
                (end >= start) ifTrue:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3542
                    wasOn := self hideCursor.
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3543
                    self insertLines:lines from:start to:end before:cursorLine.
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3544
                    self setCursorLine:(cursorLine + (end - start + 1)).
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3545
                    wasOn ifTrue:[self showCursor].
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3546
                ]
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3547
            ].
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3548
            withCr ifFalse:[
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3549
                "last line without cr"
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3550
                self insertStringAtCursor:(lines at:nLines)
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3551
            ]
1b1db54a3d29 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4635
diff changeset
  3552
        ]
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3553
    ]
654
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3554
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3555
    "Created: / 18.5.1996 / 15:32:06 / cg"
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  3556
    "Modified: / 12.6.1998 / 21:51:16 / cg"
654
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3557
!
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3558
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3559
insertLines:lines withCr:withCr
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3560
    "insert a bunch of lines at cursor position. Cursor
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3561
     is moved behind insertion.
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3562
     If withCr is true, append cr after last line"
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3563
2363
1982139b2c0b Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2357
diff changeset
  3564
    <resource:#obsolete>
1982139b2c0b Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 2357
diff changeset
  3565
1292
ca4c9a957a32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  3566
    self obsoleteMethodWarning:'use #insertLines:withCR:'.
ca4c9a957a32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  3567
    self insertLines:lines withCR:withCr.
ca4c9a957a32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  3568
ca4c9a957a32 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1290
diff changeset
  3569
    "Modified: 31.7.1997 / 23:07:22 / cg"
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3570
!
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  3571
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3572
insertSelectedStringAtCursor:aString
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3573
    "insert the argument, aString at cursor position and select it"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3574
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3575
    |startLine startCol|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3576
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3577
    startLine := cursorLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3578
    startCol := cursorCol.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3579
    self insertStringAtCursor:aString.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3580
    self selectFromLine:startLine col:startCol
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3581
                 toLine:cursorLine col:(cursorCol - 1).
3514
98e103cad51d insertSelectedStringAtCursor: - make selection visible afterwards;
Michael Beyl <mb@exept.de>
parents: 3510
diff changeset
  3582
    self makeSelectionVisible.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3583
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3584
1935
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3585
insertString:aString atCharacterPosition:charPos
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3586
    "insert the argument, aString at a character position"
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3587
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3588
    |line col|
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3589
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3590
    line := self lineOfCharacterPosition:charPos.
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3591
    col := charPos - (self characterPositionOfLine:line col:1) + 1.
5060
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3592
    col == 0 ifTrue:[
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3593
        line > 1 ifTrue:[
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3594
            line := line - 1. 
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  3595
            col := (self listAt:line) size + 1. 
5060
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3596
        ] ifFalse:[
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3597
            col := 1.
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3598
        ]
669de456849b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5057
diff changeset
  3599
    ].
1935
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3600
    self insertString:aString atLine:line col:col
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3601
!
b59ff4681762 added #insertString:atCharacterPosition:
Claus Gittinger <cg@exept.de>
parents: 1929
diff changeset
  3602
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3603
insertString:aString atLine:lineNr col:colNr
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3604
    "insert the string, aString at line/col;
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3605
     handle cr's correctly"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3606
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3607
    |start           "{ Class: SmallInteger }"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3608
     stop            "{ Class: SmallInteger }"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3609
     end             "{ Class: SmallInteger }"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3610
     subString c
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3611
     l               "{ Class: SmallInteger }" |
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3612
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3613
    aString isNil ifTrue:[^ self].
1560
43d0f7c2143f use includes: instead of occurrencesOf:.
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3614
    (aString includes:(Character cr)) ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3615
        ^ self insertStringWithoutCRs:aString atLine:lineNr col:colNr
121
claus
parents: 118
diff changeset
  3616
    ].
1560
43d0f7c2143f use includes: instead of occurrencesOf:.
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3617
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3618
    l := lineNr.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3619
    c := colNr.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3620
    start := 1.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3621
    end := aString size.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3622
    [start <= end] whileTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3623
        stop := aString indexOf:(Character cr) startingAt:start.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3624
        stop == 0 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3625
            stop := end + 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3626
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3627
        subString := aString copyFrom:start to:(stop - 1).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3628
        self insertStringWithoutCRs:subString atLine:l col:c.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3629
        (stop <= end) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3630
            c := c + subString size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3631
            self insert:(Character cr) atLine:l col:c.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3632
            l := l + 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3633
            c := 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3634
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3635
        start := stop + 1
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3636
    ]
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  3637
1560
43d0f7c2143f use includes: instead of occurrencesOf:.
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3638
    "Modified: / 10.6.1998 / 19:03:59 / cg"
121
claus
parents: 118
diff changeset
  3639
!
claus
parents: 118
diff changeset
  3640
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3641
insertStringAtCursor:aString
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3642
    "insert the argument, aString at cursor position
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3643
     handle cr's correctly. A nil argument is interpreted as an empty line."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3644
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3645
    aString isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3646
        "new:"
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3647
        self insertCharAtCursor:(Character cr).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3648
        ^ self
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3649
    ].
1560
43d0f7c2143f use includes: instead of occurrencesOf:.
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3650
    (aString includes:(Character cr)) ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3651
        ^ self insertStringWithoutCRsAtCursor:aString
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3652
    ].
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3653
654
d621e63baaa5 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 641
diff changeset
  3654
    self insertLines:aString asStringCollection withCR:false.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3655
1560
43d0f7c2143f use includes: instead of occurrencesOf:.
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3656
    "Modified: / 10.6.1998 / 19:03:21 / cg"
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3657
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3658
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3659
insertStringWithoutCRs:aString atLine:lineNr col:colNr
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3660
    "insert aString (which has no crs) at lineNr/colNr"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3661
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3662
    self withoutRedrawInsertStringWithoutCRs:aString atLine:lineNr col:colNr.
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3663
    shown ifTrue:[
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  3664
        gc font hasOverlappingCharacters ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3665
            self invalidateLine:lineNr.
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3666
        ] ifFalse:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3667
            self redrawLine:lineNr from:colNr
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3668
        ]
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3669
    ]
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  3670
4191
8ac20ced2fbf changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4190
diff changeset
  3671
    "Modified: / 09-11-2010 / 13:43:03 / cg"
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3672
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3673
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3674
insertStringWithoutCRsAtCursor:aString
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3675
    "insert a string (which has no crs) at cursor position
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3676
     - advance cursor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3677
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  3678
    |wasOn oldLen newLen deltaLen|
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  3679
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  3680
    aString size > 0 ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3681
        wasOn := self hideCursor.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3682
        (aString includes:Character tab) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3683
            self checkForExistingLine:cursorLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3684
            oldLen := (list at:cursorLine) size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3685
            self insertString:aString atLine:cursorLine col:cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3686
            newLen := (list at:cursorLine) size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3687
            deltaLen := newLen - oldLen.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3688
        ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3689
            self insertString:aString atLine:(cursorLine ? 1) col:cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3690
            deltaLen := aString size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3691
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3692
        self setCursorCol:(cursorCol + deltaLen).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3693
        wasOn ifTrue:[self showCursor]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3694
    ]
1563
b4eb49efdfcd fixed cursor positioning if inserting a string with tabs.
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3695
b4eb49efdfcd fixed cursor positioning if inserting a string with tabs.
Claus Gittinger <cg@exept.de>
parents: 1561
diff changeset
  3696
    "Modified: / 10.6.1998 / 20:43:52 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3697
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3698
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3699
insertTabAtCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3700
    "insert spaces to next tab"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3701
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3702
    |wasOn nextTab|
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3703
121
claus
parents: 118
diff changeset
  3704
    wasOn := self hideCursor.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3705
    nextTab := self nextTabAfter:cursorCol.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3706
    self insertStringAtCursor:(String new:(nextTab - cursorCol)).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3707
    self makeCursorVisibleAndShowCursor:wasOn.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3708
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3709
3542
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  3710
joinLines
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3711
    "join lines (remove line-break)"
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3712
3583
fd5a924c8681 menu enablement
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
  3713
    self checkModificationsAllowed ifFalse:[ ^ self].
fd5a924c8681 menu enablement
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
  3714
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  3715
    self
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3716
        undoableDo:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3717
            |line col lineLen|
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3718
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3719
            line := cursorLine.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3720
            col := cursorCol.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3721
            lineLen := (list at:line) size.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3722
            col > lineLen ifTrue:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3723
                self insertString:(String new:col-lineLen) atLine:line col:col+1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3724
            ] ifFalse:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3725
                self deleteCharsAtLine:line fromCol:col toCol:lineLen.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3726
            ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3727
            self mergeLine:line removeBlanks:true.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3728
            self cursorLine:line col:col.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3729
        ]
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  3730
        info:'Join'
3542
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  3731
!
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  3732
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3733
mergeLine:lineNr
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3734
    "merge line lineNr with line lineNr+1"
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3735
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3736
    self mergeLine:lineNr removeBlanks:true
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3737
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3738
    "Modified: 9.9.1997 / 09:28:03 / cg"
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3739
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  3740
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3741
mergeLine:lineNr removeBlanks:removeBlanks
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3742
    "merge line lineNr with line lineNr+1"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3743
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3744
    |len|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3745
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3746
    self checkModificationsAllowed ifFalse:[ ^ self].
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3747
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3748
    len := (self listAt:lineNr) size.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3749
    self nonUndoableDo:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3750
        self basicMergeLine:lineNr removeBlanks:removeBlanks.
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3751
    ].
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3752
    self addUndo:(PasteString new line:lineNr col:len+1 string:(Character cr asString) selected:false).
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3753
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3754
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3755
parenthizeSelection
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3756
    "place parenthesis around the selected text.
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3757
     if already parenthized, de-parenthize it"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3758
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3759
    self parenthizeSelectionWith:$( and:$)
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3760
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3761
    "Created: / 06-06-2016 / 10:59:05 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3762
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3763
2506
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  3764
parenthizeSelectionWith:openingCharacter and:closingCharacter
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3765
    "if already parenthized, de-parenthize it"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3766
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3767
    |newSelectionEnd startLine endLine startCol endCol|
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  3768
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  3769
    self hasSelection ifFalse:[^ self].
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3770
    startLine := selectionStartLine.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3771
    endLine := selectionEndLine.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3772
    startCol := selectionStartCol.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3773
    endCol := selectionEndCol.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3774
    
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3775
    newSelectionEnd := endCol.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3776
    
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3777
    (self characterAtLine:startLine col:startCol) == openingCharacter ifTrue:[
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3778
        (self characterAtLine:endLine col:endCol) == closingCharacter ifTrue:[
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3779
            self deleteCharAtLine:endLine col:endCol.
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3780
            newSelectionEnd := newSelectionEnd-1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3781
        ].
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3782
        self deleteCharAtLine:startLine col:startCol.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3783
        startLine == endLine ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3784
            newSelectionEnd := newSelectionEnd-1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3785
        ]
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  3786
    ] ifFalse:[
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3787
        self insert:closingCharacter atLine:endLine col:endCol+1.
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3788
        newSelectionEnd := newSelectionEnd+1.
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3789
        self insert:openingCharacter atLine:startLine col:startCol.
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3790
        startLine == endLine ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3791
            newSelectionEnd := newSelectionEnd+1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3792
        ]
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  3793
    ].
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  3794
    self
5560
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3795
        selectFromLine:startLine col:startCol
511e59f19726 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 5529
diff changeset
  3796
        toLine:endLine col:newSelectionEnd.
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3797
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  3798
    "Modified (comment): / 06-06-2016 / 11:00:37 / cg"
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  3799
!
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  3800
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3801
removeTrailingBlankLines
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3802
    "remove all blank lines at end of text"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3803
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3804
    |lastLine "{ Class: SmallInteger }"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3805
     line finished|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3806
5114
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3807
    NoModificationError handle:[:ex |
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3808
        ^ self
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3809
    ] do:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3810
        lastLine := list size.
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3811
        finished := false.
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3812
        [finished] whileFalse:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3813
            (lastLine <= 1) ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3814
                finished := true
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3815
            ] ifFalse:[
5114
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3816
                line := list at:lastLine.
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3817
                line notNil ifTrue:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3818
                    line isBlank ifTrue:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3819
                        self basicListAt:lastLine put:nil.
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3820
                        line := nil
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3821
                    ]
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3822
                ].
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3823
                line notNil ifTrue:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3824
                    finished := true
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3825
                ] ifFalse:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3826
                    lastLine := lastLine - 1
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3827
                ]
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3828
            ]
5114
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3829
        ].
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3830
        (lastLine ~~ list size) ifTrue:[
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3831
            list grow:lastLine.
679cca16c072 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  3832
            "/ self textChanged
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  3833
        ]
118
claus
parents: 105
diff changeset
  3834
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3835
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3836
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3837
replace:aCharacter atLine:lineNr col:colNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3838
    "replace a single character at lineNr/colNr"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3839
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3840
    |originalChar|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3841
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3842
    originalChar := self characterAtLine:lineNr col:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3843
    self basicReplace:aCharacter atLine:lineNr col:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3844
    self addUndo:(ReplaceCharacters line:lineNr col:colNr character:originalChar info:'replace').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3845
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3846
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  3847
replace:patternArg by:replacePatternArg all:all ignoreCase:ignoreCase
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3848
    |pattern replacePattern|
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3849
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3850
    pattern := patternArg string.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3851
    replacePattern := replacePatternArg string.
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3852
    (pattern notEmpty and:[ replacePattern notEmpty ]) ifTrue:[
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3853
        self rememberSearchPattern:pattern.
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3854
        self rememberSearchPattern:replacePattern.
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  3855
        LastSearchIgnoredCase := ignoreCase.
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3856
        self
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3857
            undoableDo:[
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3858
                all ifTrue:[
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3859
                    self
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3860
                        replaceString:pattern
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3861
                        to:replacePattern
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  3862
                        ignoreCase:ignoreCase
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3863
                ] ifFalse:[
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3864
                    (self selectionAsString notNil
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  3865
                        and:[ self selectionAsString sameAs:pattern caseSensitive:ignoreCase not ])
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3866
                            ifTrue:[
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  3867
                                self replaceSelectionBy:replacePattern.
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3868
                                self
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3869
                                    search:pattern
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  3870
                                    ignoreCase:ignoreCase
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3871
                                    forward:(lastSearchDirection = #forward).
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3872
                            ].
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3873
                ]
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3874
            ]
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  3875
            info:'Replace'
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3876
    ]
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3877
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3878
    "Created: / 11-07-2006 / 11:19:57 / fm"
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3879
!
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  3880
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3881
replaceCharAtCursor:aCharacter
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3882
    "undoably replace a single character at cursor-position - advance cursor"
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3883
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3884
    |wasOn|
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3885
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3886
    wasOn := self hideCursor.
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3887
    aCharacter == (Character cr) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3888
        self cursorReturn
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3889
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3890
        self replace:aCharacter atLine:cursorLine col:cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3891
        self cursorRight.
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3892
    ].
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3893
    self makeCursorVisibleAndShowCursor:wasOn.
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3894
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3895
    "Created: 6.3.1996 / 12:27:42 / cg"
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3896
!
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  3897
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3898
replaceContentsWith:newContents
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3899
    "undoably replace everything"
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3900
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3901
    |originalContents|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3902
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3903
    originalContents := self contents.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3904
    self contents:newContents keepUndoHistory:true.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3905
    self addUndo:(ReplaceContents text:originalContents info:'replace').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3906
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3907
2427
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3908
replaceFromCharacterPosition:charPos1 to:charPos2 with:newString
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3909
    "undoably replace a substring at a character position"
2427
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3910
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  3911
    "/ sigh - insert first, to avoid trouble due to shifing-in virtual line ends
2427
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3912
    self insertString:newString atCharacterPosition:charPos1.
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3913
    self deleteFromCharacterPosition:charPos1+newString size to:charPos2+newString size.
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3914
!
43cc7ea39bac more editing stuff (xxx-characterPosition)
Claus Gittinger <cg@exept.de>
parents: 2422
diff changeset
  3915
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3916
replaceLine:lineNr with:newText
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3917
    "undoably replace a line at lineNr"
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3918
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3919
    |originalLine|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3920
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3921
    originalLine := self listAt:lineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3922
    originalLine isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  3923
        self checkForExistingLine:lineNr
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3924
    ].
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3925
    self list at:lineNr put:newText.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3926
    self addUndo:(ReplaceLine line:lineNr string:originalLine info:'replace').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3927
    self invalidateLine:lineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3928
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3929
    "Modified: / 12-04-2007 / 09:31:33 / cg"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3930
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  3931
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3932
replaceLines:lines withCR:withCr
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3933
    "undoably a bunch of lines at cursor position. Cursor
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3934
     is moved behind replacement.
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3935
     If withCr is true, move to the beginning of the next line
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3936
     after the last line"
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3937
1809
111f603c0a1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1807
diff changeset
  3938
    |line col nLines wasOn|
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3939
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3940
    lines notNil ifTrue:[
4661
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3941
        wasOn := self hideCursor.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3942
        nLines := lines size.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3943
        line := cursorLine.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3944
        col := cursorCol.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3945
        lines keysAndValuesDo:[:i :l |
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3946
            self replaceString:(l ? '') atLine:line col:col.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3947
            (i ~~ nLines or:[withCr]) ifTrue:[
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3948
                line := line + 1.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3949
                col := 1.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3950
            ] ifFalse:[
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3951
                col := col + (l size).
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3952
            ]
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3953
        ].
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3954
        self cursorLine:line col:col.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3955
        self makeCursorVisibleAndShowCursor:wasOn.
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3956
        "/ wasOn ifTrue:[self showCursor].
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3957
    ]
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3958
4661
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3959
    "Created: / 18-05-1996 / 15:32:06 / cg"
c029273f7660 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4649
diff changeset
  3960
    "Modified: / 25-07-2013 / 17:00:53 / cg"
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3961
!
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  3962
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3963
replaceSelectionBy:something
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3964
    "undoably delete the selection (if any) and insert something, a character or string;
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3965
     leave cursor after insertion"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  3966
4666
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3967
    self replaceSelectionBy:something keepCursor:false select:false
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3968
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3969
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3970
replaceSelectionBy:something keepCursor:keep
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3971
    "undoably delete the selection (if any) and insert something, a character or string;
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3972
     leave cursor after insertion or leave it, depending on keep"
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3973
4666
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3974
    self replaceSelectionBy:something keepCursor:keep select:false
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3975
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3976
    "Modified: 9.10.1996 / 16:14:35 / cg"
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3977
!
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3978
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3979
replaceSelectionBy:something keepCursor:keep select:selectNewText
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  3980
    "undoably delete the selection (if any) and insert something, a character or string;
4666
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3981
     leave cursor after insertion or leave it, depending on keep.
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3982
     If selectNewText is true, select the new text; otherwise deselect"
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3983
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3984
    |sel l c selStartLine selStartCol|
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3985
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3986
    l := cursorLine.
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3987
    c := cursorCol.
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  3988
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  3989
    sel := self selectionAsString.
4666
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3990
    sel isNil ifTrue:[
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3991
        selStartLine := l.
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3992
        selStartCol := c.
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3993
    ] ifFalse:[
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3994
        selStartLine := selectionStartLine.
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3995
        selStartCol := selectionStartCol.
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  3996
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  3997
        self setLastStringToReplace: sel.
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  3998
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  3999
        self deleteSelection.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4000
        replacing := true.
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  4001
        lastReplacementInfo rememberReplacement.
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  4002
        lastReplacementInfo lastReplacement: ''.
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  4003
        lastReplacementInfo stillCollectingInput:true.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4004
        undoSupport actionInfo:'replace'.
3161
982c2e416728 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3160
diff changeset
  4005
    ].
982c2e416728 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3160
diff changeset
  4006
982c2e416728 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3160
diff changeset
  4007
    something isCharacter ifTrue:[
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  4008
        lastReplacementInfo lastReplacement notNil ifTrue:[
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  4009
            lastReplacementInfo stillCollectingInput ifTrue:[
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  4010
                lastReplacementInfo lastReplacement: (lastReplacementInfo lastReplacement copyWith:something).
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  4011
            ].
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4012
        ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4013
        self isInInsertMode ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4014
            self insertCharAtCursor:something
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4015
        ] ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4016
            self replaceCharAtCursor:something
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4017
        ]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4018
    ] ifFalse:[
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4019
        something isString ifTrue:[
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  4020
            lastReplacementInfo lastReplacement: something.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4021
            self isInInsertMode ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4022
                self insertStringAtCursor:something
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4023
            ] ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4024
                self replaceStringAtCursor:something
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4025
            ]
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4026
        ] ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4027
            Transcript showCR:'EditTextView: non String-or-Character in replace'.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4028
        ].
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4029
    ].
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4030
    keep ifTrue:[
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  4031
        self cursorLine:l col:c
4666
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  4032
    ].
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  4033
    selectNewText ifTrue:[
81e48e442abe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
  4034
        self selectFromLine:selStartLine col:selStartCol toLine:cursorLine col:cursorCol-1
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4035
    ]
477
e7c29649e8ae fixed autoIndent & added insert vs. overwriteMode
Claus Gittinger <cg@exept.de>
parents: 474
diff changeset
  4036
840
b0071cea13fd fixed Again when spaces are replaced
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  4037
    "Modified: 9.10.1996 / 16:14:35 / cg"
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4038
!
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4039
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4040
replaceString:aString atLine:lineNr col:colNr
5413
b21cbb97c038 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5404
diff changeset
  4041
    "undoably replace multiple characters starting at lineNr/colNr.
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4042
     This is not prepared to encounter special chars (except TAB) in the string."
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4043
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4044
    |originalString|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4045
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4046
    self checkModificationsAllowed ifFalse:[ ^ self].
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4047
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4048
    originalString := self textFromLine:lineNr col:colNr toLine:lineNr col:colNr+aString size-1.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4049
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4050
    self basicReplaceString:aString atLine:lineNr col:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4051
    self addUndo:(ReplaceCharacters line:lineNr col:colNr characters:originalString info:'replace').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4052
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4053
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4054
replaceString:aString to:aNewString ignoreCase:ignoreCase
3549
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4055
    |continue count|
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4056
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4057
    self cursorToTop.
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4058
    self selectFromBeginning.
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4059
    count := 0.
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4060
    continue := true.
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4061
    [ continue ] whileTrue:[
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4062
        (self selectionAsString notNil
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4063
        and:[ self selectionAsString sameAs:aString caseSensitive:ignoreCase not ])
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4064
            ifTrue:[
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  4065
                self replaceSelectionBy:aNewString.
4713
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4066
                count := count + 1.
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4067
            ].
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4068
        self
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4069
            searchFwd:aString
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4070
            ignoreCase:ignoreCase
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4071
            ifAbsent:[
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4072
                Dialog information:('%1 has been replaced by %2 %3 times' 
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4073
                                    bindWith:aString with:aNewString with:count).
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4074
                continue := false.
e8c9caf13e05 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4707
diff changeset
  4075
            ].
3549
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4076
    ].
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  4077
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  4078
    "Created: / 10-07-2006 / 16:42:48 / fm"
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  4079
!
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  4080
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4081
replaceStringAtCursor:aString
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4082
    "replace multiple characters at cursor-position - advance cursor"
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4083
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4084
    |wasOn i1 i2|
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4085
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4086
    wasOn := self hideCursor.
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4087
    (aString includes:Character tab) ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4088
        "/ need special care for TAB (to move cursor correctly)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4089
        i1 := 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4090
        [i1 ~~ 0] whileTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4091
            i2 := aString indexOf:Character tab startingAt:i1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4092
            i2 ~~ 0 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4093
                i1 ~~ i2 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4094
                    self replaceString:(aString copyFrom:i1 to:i2-1) atLine:cursorLine col:cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4095
                    self cursorCol:(cursorCol + (i2 - i1)).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4096
                ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4097
                self replaceTABAtCursor.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4098
                i2 := i2 + 1.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4099
            ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4100
                self replaceString:(aString copyFrom:i1) atLine:cursorLine col:cursorCol.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4101
                self cursorCol:(cursorCol + (aString size - i1 + 1)).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4102
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4103
            i1 := i2.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4104
        ]
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4105
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4106
        self replaceString:aString atLine:cursorLine col:cursorCol.
5325
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4107
        self setValidatedCursorCol:(cursorCol + aString size).
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4108
        "/ self cursorCol:(cursorCol + aString size).
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4109
    ].
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4110
    wasOn ifTrue:[
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4111
        self sensor pushUserEvent:#makeCursorVisibleAndShowCursor: for:self withArguments:{ wasOn } 
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4112
        "/ self makeCursorVisibleAndShowCursor:wasOn.
b3d62a76761c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5283
diff changeset
  4113
    ].
1564
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4114
04c13358013e renamed replaceAll:* to replaceString:*;
Claus Gittinger <cg@exept.de>
parents: 1563
diff changeset
  4115
    "Created: / 9.6.1998 / 20:33:20 / cg"
1597
5fdcfcedb91c fixed cursor positioning after replaceStringAtCursor.
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
  4116
    "Modified: / 20.6.1998 / 19:41:02 / cg"
1566
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4117
!
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4118
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4119
replaceTABAtCursor
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4120
    "replace a single character at cursor-position by a TAB character"
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4121
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4122
    |wasOn nextTab|
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4123
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4124
    wasOn := self hideCursor.
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4125
    nextTab := self nextTabAfter:cursorCol.
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4126
    self replaceStringAtCursor:(String new:(nextTab - cursorCol)).
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4127
    self makeCursorVisibleAndShowCursor:wasOn.
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4128
4e37a55bd140 care for TAB chars in new replace functions.
Claus Gittinger <cg@exept.de>
parents: 1564
diff changeset
  4129
    "Created: / 12.6.1998 / 21:53:23 / cg"
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4130
!
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4131
4256
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4132
selectWordBeforeCursor
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4133
    "select the word to the left of cursor"
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4134
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4135
    |savCursorLine savCursorCol  beginCol beginLine endCol endLine|
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4136
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4137
    savCursorLine := cursorLine.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4138
    savCursorCol := cursorCol.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4139
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4140
    endCol := cursorCol-1.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4141
    endLine := cursorLine.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4142
    self cursorToPreviousWord.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4143
    beginCol := cursorCol.     
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4144
    beginLine := cursorLine.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4145
    self cursorLine:savCursorLine col:savCursorCol.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4146
    self selectFromLine:beginLine col:beginCol toLine:endLine col:endCol.
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4147
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4148
    "Created: / 14-06-2011 / 14:46:35 / cg"
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4149
!
1e4bdc48136c added: #selectWordBeforeCursor
Claus Gittinger <cg@exept.de>
parents: 4253
diff changeset
  4150
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4151
splitLine:lineNr before:colNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4152
    "split the line linNr before colNr; the right part (from colNr)
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4153
     is cut off and inserted after lineNr; the view is redrawn"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4154
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4155
    self basicSplitLine:lineNr before:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4156
    self addUndo:(DeleteRange line1:lineNr col1:colNr line2:lineNr+1 col2:0 info:'split').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4157
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4158
5761
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4159
toggleTabSetting
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4160
    "toggle between 4-col
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4161
     and 8-col tabs"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4162
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4163
    (tabPositions == self class tab4Positions)
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4164
         ifTrue:[self setTab8]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4165
         ifFalse:[self setTab4]
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4166
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4167
    "Created: / 06-06-2016 / 11:02:07 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4168
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4169
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4170
undentSelectionBy1
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4171
    "undent selected line-range
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4172
     by 1 space (i.e. to the left)"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4173
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4174
    self undentBy:1
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4175
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4176
    "Created: / 06-06-2016 / 10:49:51 / cg"
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4177
!
0b2929b446e9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5742
diff changeset
  4178
5146
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4179
withAutoIndent:aBoolean do:aBlock
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4180
    |sav|
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4181
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4182
    sav := autoIndent.
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4183
    autoIndent := aBoolean.
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4184
    aBlock ensure:[ autoIndent := sav ].
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4185
!
3169904851a4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  4186
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4187
withoutRedrawAt:lineNr put:aString
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4188
    "replace a line at lineNr"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4189
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4190
    |originalLine|
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4191
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4192
    originalLine := self listAt:lineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4193
    self addUndo:(ReplaceLine line:lineNr string:originalLine info:'replace').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4194
    super withoutRedrawAt:lineNr put:aString.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4195
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4196
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4197
withoutRedrawInsertLine:aString before:lineNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4198
    "insert the argument, aString before line lineNr; the string
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4199
     becomes line lineNr; everything else is moved down; the view
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4200
     is not redrawn"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4201
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4202
    self basicWithoutRedrawInsertLines:{ aString } from:1 to:1 before:lineNr.
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4203
    self addUndo:(DeleteRange line1:lineNr col1:1 line2:lineNr+1 col2:0 info:'insert').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4204
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4205
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4206
withoutRedrawInsertLines:lines from:start to:end before:lineNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4207
    "insert a bunch of lines before line lineNr; the view is not redrawn"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4208
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4209
    self basicWithoutRedrawInsertLines:lines from:start to:end before:lineNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4210
    self isReadOnly ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  4211
        self addUndo:(DeleteRange line1:lineNr col1:1 line2:lineNr+end-start+1 col2:0 info:'insert').
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4212
    ].
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4213
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4214
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4215
withoutRedrawInsertStringWithoutCRs:aString atLine:lineNr col:colNr
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4216
    "insert aString (which has no crs) at lineNr/colNr"
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4217
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4218
    self basicWithoutRedrawInsertStringWithoutCRs:aString atLine:lineNr col:colNr.
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4219
    self addUndo:(DeleteRange line1:lineNr col1:colNr line2:lineNr col2:colNr+aString size-1 info:'insert').
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4220
!
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4221
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4222
wrapLines
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4223
    "wrap lines (insert line-break)"
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4224
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4225
    |lineLength answerString string|
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4226
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4227
    self checkModificationsAllowed ifFalse:[ ^ self].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4228
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4229
    self hasSelection ifFalse:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4230
        self selectLine:cursorLine.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4231
    ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4232
    string := self selectionAsString.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4233
    string isEmptyOrNil ifTrue:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4234
        Dialog information:(resources string:'Nothing selected.').
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4235
        ^ self.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4236
    ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4237
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4238
    answerString := Dialog request:(resources string:'Line length (wrap after how many chars)?') initialAnswer:80.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4239
    lineLength := Number readFrom:answerString onError:nil.
4388
558b4dbf5648 changed:
Claus Gittinger <cg@exept.de>
parents: 4373
diff changeset
  4240
    lineLength isNil ifTrue:[^ self].
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4241
    lineLength < 1 ifTrue:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4242
        lineLength := 1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4243
    ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4244
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4245
    self
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4246
        undoableDo:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4247
            |inStream line col lineLen lastGoodCol lastStartCol word|
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4248
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4249
            line := selectionStartLine.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4250
            col := selectionStartCol.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4251
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4252
            self cutSelection.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4253
            self cursorLine:line col:col.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4254
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4255
            lastGoodCol := col.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4256
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4257
            inStream := string readStream.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4258
            [ inStream atEnd ] whileFalse:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4259
                [inStream atEnd not and:[inStream peek isSeparator]] whileTrue:[ inStream next ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4260
                word := WriteStream on:(String new:10).
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4261
                [inStream atEnd not and:[inStream peek isSeparator not]] whileTrue:[ word nextPut:inStream next ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4262
                (col + 1 + word size > lineLength) ifTrue:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4263
                    self insertCharAtCursor:(Character cr).
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4264
                    col := 1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4265
                ] ifFalse:[
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4266
                    col ~~ 1 ifTrue:[ 
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4267
                        self insertStringAtCursor:' '.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4268
                        col := col + 1.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4269
                    ]    
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4270
               ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4271
               self insertStringAtCursor:word contents.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4272
               col := col + word size.
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4273
            ].
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4274
        ]
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  4275
        info:'Wrap'
4388
558b4dbf5648 changed:
Claus Gittinger <cg@exept.de>
parents: 4373
diff changeset
  4276
558b4dbf5648 changed:
Claus Gittinger <cg@exept.de>
parents: 4373
diff changeset
  4277
    "Modified: / 01-03-2012 / 19:56:22 / cg"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4278
! !
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4279
2752
5650a9ab5935 method category rename
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  4280
!EditTextView methodsFor:'editing-basic'!
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4281
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4282
basicDeleteCharsAtLine:lineNr fromCol:startCol toCol:endCol
3549
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4283
    "delete characters from startCol to endCol in line lineNr"
569d0e4ab5a3 join at cursorposition
Claus Gittinger <cg@exept.de>
parents: 3542
diff changeset
  4284
1803
ac7cc1b99407 scroll left as required, if deleting characters of the longest line,
Claus Gittinger <cg@exept.de>
parents: 1796
diff changeset
  4285
    |line lineSize newLine start stop prevWidth newWidth|
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4286
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4287
    self unselect.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4288
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4289
    cursorLine == lineNr ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4290
        cursorCol >= startCol ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4291
            cursorCol >= endCol ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4292
                cursorCol := startCol.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4293
            ] ifFalse:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4294
                cursorCol := cursorCol - (endCol - startCol + 1).
5489
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  4295
                "/ self assert:(cursorCol >= 0).
Claus Gittinger <cg@exept.de>
parents: 5414
diff changeset
  4296
                cursorCol := cursorCol max:1.
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4297
            ]
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4298
        ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4299
    ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4300
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4301
    line := self listAt:lineNr.
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4302
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4303
    (self checkModificationsAllowed and:[line notNil]) ifFalse:[^ self].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4304
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4305
    lineSize := line size.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4306
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4307
    startCol == 0 ifFalse:[ start := startCol ] ifTrue:[ start := 1 ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4308
    endCol > lineSize ifFalse:[ stop  := endCol ] ifTrue:[ stop  := lineSize ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4309
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4310
    stop >= start ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4311
        start ~~ 1 ifTrue:[ newLine := line copyFrom:1 to:(start-1) ]
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4312
                  ifFalse:[ newLine := '' ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4313
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4314
        stop == lineSize ifFalse:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4315
            line bitsPerCharacter > newLine bitsPerCharacter ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4316
                newLine := line string species fromString:newLine.
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4317
            ].
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4318
            newLine := newLine, (line copyFrom:(stop + 1) to:lineSize)
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4319
        ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4320
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4321
        (trimBlankLines and:[newLine isBlank]) ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4322
            newLine := nil
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4323
        ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4324
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4325
        prevWidth := self widthOfLine:lineNr.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4326
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4327
        self basicListAt:lineNr put:newLine.
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4328
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4329
        (prevWidth = widthOfWidestLine) ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4330
            "/ remember old width of this line,
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4331
            "/ only clear widthOfWidestLine, if this lines
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4332
            "/ length was (one of) the longest.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4333
            "/ avoids slow delete with huge texts.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4334
            widthOfWidestLine := nil.   "i.e. unknown"
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4335
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4336
            "/ scroll left if reqiured
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4337
            viewOrigin x > 0 ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4338
                newWidth := self widthOfLine:lineNr.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4339
                newWidth < (viewOrigin x + width) ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4340
                    self scrollHorizontalTo:(newWidth
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4341
                                             - width
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4342
                                             + margin + margin
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4343
                                             + (gc font widthOf:'  '))
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4344
                ]
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4345
            ].
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4346
            self textChanged.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4347
        ] ifFalse:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4348
            self textChanged "/ textChangedButNoSizeChange
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4349
        ].
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4350
        gc font hasOverlappingCharacters ifTrue:[
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4351
            self invalidateLine:lineNr.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4352
        ] ifFalse:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4353
            self redrawLine:lineNr from:start.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4354
        ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  4355
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4356
4191
8ac20ced2fbf changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4190
diff changeset
  4357
    "Modified: / 09-11-2010 / 13:42:45 / cg"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4358
!
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4359
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4360
basicDeleteFromLine:startLineNr toLine:endLineNr
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4361
    "delete some lines"
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4362
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4363
    |wasOn nLines|
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4364
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4365
    self checkModificationsAllowed ifFalse:[ ^ self].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4366
    list isNil ifTrue:[^ self].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4367
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4368
    wasOn := self hideCursor.
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4369
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4370
    "/ isnt this the same as:
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4371
    "/ self deleteLinesWithoutRedrawFrom:startLineNr to:endLineNr.
4226
a09775d899a6 changed: #basicDeleteFromLine:toLine:
az
parents: 4225
diff changeset
  4372
    startLineNr <= list size ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4373
        self basicListRemoveFromIndex:startLineNr toIndex:(endLineNr min:list size).
4226
a09775d899a6 changed: #basicDeleteFromLine:toLine:
az
parents: 4225
diff changeset
  4374
    ].
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4375
    "/ TODO: remember old maxwidth of linerange,
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4376
    "/ only clear widthOfWidestLine, if this max
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4377
    "/ length was (one of) the longest.
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4378
    "/ avoids slow delete with huge texts.
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4379
    widthOfWidestLine := nil. "/ i.e. unknown
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4380
    self textChanged.
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4381
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4382
    self redrawFromLine:startLineNr.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4383
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4384
    nLines := list size.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4385
    (firstLineShown >= nLines) ifTrue:[
4226
a09775d899a6 changed: #basicDeleteFromLine:toLine:
az
parents: 4225
diff changeset
  4386
        self makeLineVisible:nLines
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4387
    ].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4388
    wasOn ifTrue:[self showCursor].
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4389
4226
a09775d899a6 changed: #basicDeleteFromLine:toLine:
az
parents: 4225
diff changeset
  4390
    "Modified: / 10-11-1998 / 23:55:05 / cg"
a09775d899a6 changed: #basicDeleteFromLine:toLine:
az
parents: 4225
diff changeset
  4391
    "Modified: / 18-03-2011 / 18:26:23 / az"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4392
!
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4393
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4394
basicDeleteLineWithoutRedraw:lineNr
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4395
    "delete line - no redraw;
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4396
     return true, if something was really deleted"
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4397
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4398
    self checkModificationsAllowed ifFalse:[ ^ false].
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4399
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4400
    (list isNil or:[lineNr > list size]) ifTrue:[^ false].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4401
    list removeIndex:lineNr.
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4402
    "/ TODO: remember old maxwidth of linerange,
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4403
    "/ only clear widthOfWidestLine, if this max
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4404
    "/ length was (one of) the longest.
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4405
    "/ avoids slow delete with huge texts.
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4406
    widthOfWidestLine := nil. "/ i.e. unknown
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4407
    self textChanged.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4408
    ^ true
1717
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4409
83203096a851 dont forget widthOfWidestLine information when deleting single
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  4410
    "Modified: / 10.11.1998 / 23:53:24 / cg"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4411
!
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4412
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4413
basicInsert:aCharacter atLine:lineNr col:colNr
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  4414
    "insert a single character at lineNr/colNr;
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4415
     set emphasis to character at current position"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4416
1929
8e70fb7c9701 fixed handling of italic text when inserting
Claus Gittinger <cg@exept.de>
parents: 1928
diff changeset
  4417
    |line lineSize newLine drawCharacterOnly attribute oldClip x y|
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4418
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4419
    self checkModificationsAllowed ifFalse:[ ^ self].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4420
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4421
    aCharacter == (Character cr) ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4422
        self splitLine:lineNr before:colNr.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4423
        ^ self
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4424
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4425
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4426
    drawCharacterOnly := false.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4427
    self checkForExistingLine:lineNr.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4428
    line := list at:lineNr.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4429
    lineSize := line size.
671
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4430
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  4431
    self st80EditMode ifFalse:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4432
        (trimBlankLines
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4433
        and:[colNr > lineSize
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4434
        and:[aCharacter == Character space]]) ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4435
            ^ self
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4436
        ]
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4437
    ].
671
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4438
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4439
    (lineSize == 0) ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4440
        newLine := aCharacter asString species new:colNr.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4441
        drawCharacterOnly := true
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4442
    ] ifFalse: [
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4443
        (colNr > lineSize) ifTrue: [
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4444
            colNr == (lineSize +1) ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4445
                attribute := line emphasisAt:lineSize
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4446
            ].
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4447
            newLine := line species new:colNr.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4448
            newLine replaceFrom:1 to:lineSize with:line startingAt:1.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4449
            drawCharacterOnly := true
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4450
        ] ifFalse: [
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4451
            attribute := line emphasisAt:colNr.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4452
            newLine   := line species new:(lineSize + 1).
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4453
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4454
            newLine replaceFrom:1 to:(colNr - 1) with:line startingAt:1.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4455
            newLine replaceFrom:(colNr + 1) to:(lineSize + 1) with:line startingAt:colNr
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4456
        ]
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4457
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4458
2869
48d830f0aea5 insertCharacter: care for wide chars
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  4459
    aCharacter asString bitsPerCharacter > newLine bitsPerCharacter ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4460
        newLine := aCharacter asString species fromString:newLine.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4461
        line isText ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4462
            newLine := newLine asText
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4463
        ]
2869
48d830f0aea5 insertCharacter: care for wide chars
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  4464
    ].
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4465
    newLine at:colNr put:aCharacter.
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4466
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4467
    attribute notNil ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4468
        newLine emphasisAt:colNr put:attribute.
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4469
    ].
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4470
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4471
    aCharacter == (Character tab) ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4472
        newLine := self withTabsExpanded:newLine.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4473
        drawCharacterOnly := false
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4474
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4475
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4476
    self basicListAt:lineNr put:(newLine ifNil:[newLine] ifNotNil:[newLine asSingleByteStringIfPossible]).
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4477
    widthOfWidestLine notNil ifTrue:[
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4478
        widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:newLine).
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4479
    ].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4480
    self textChanged.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4481
    shown ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4482
        "/ care for italic text - in this case, we must also
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4483
        "/ redraw the character before the insertion in order
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4484
        "/ to fix the slanted piece of the character.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4485
        "/ (but we must clip, to avoid destoying the character before)
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4486
        (newLine notNil and:[newLine isText]) ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4487
            colNr > 1 ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4488
                cursorVisibleLine notNil ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4489
                    oldClip := self clippingRectangleOrNil.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4490
                    x := (self xOfCol:colNr-1 inVisibleLine:cursorVisibleLine) - viewOrigin x.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4491
                    y := self yOfVisibleLine:cursorVisibleLine.
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4492
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4493
                    gc font hasOverlappingCharacters ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4494
                        self invalidateLine:lineNr.
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4495
                    ] ifFalse:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4496
                        drawCharacterOnly ifTrue:[
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4497
                            self clippingRectangle:(x@y extent:((gc font width * 2) @ fontHeight)).
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4498
                            self redrawLine:lineNr from:colNr-1 to:colNr
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4499
                        ] ifFalse:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4500
                            self clippingRectangle:(x@y extent:((width - x) @ fontHeight)).
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4501
                            self redrawLine:lineNr from:colNr-1
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4502
                        ].
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4503
                        self clippingRectangle:oldClip.
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4504
                    ].
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4505
                ].
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4506
                ^ self.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4507
            ].
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4508
        ].
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4509
        gc font hasOverlappingCharacters ifTrue:[
4189
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4510
            self invalidateLine:lineNr.
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4511
        ] ifFalse:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4512
            drawCharacterOnly ifTrue:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4513
                self redrawLine:lineNr col:colNr
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4514
            ] ifFalse:[
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4515
                self redrawLine:lineNr from:colNr
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4516
            ]
c9adf30e582a changed: #basicInsert:atLine:col:
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
  4517
        ]
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4518
    ]
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4519
4191
8ac20ced2fbf changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4190
diff changeset
  4520
    "Modified: / 09-11-2010 / 13:43:18 / cg"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4521
!
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4522
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4523
basicListAt:lineNr put:newLine
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4524
    "redefinable for special subclasses (with virtual list)"
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4525
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4526
    list at:lineNr put:newLine.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4527
!
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4528
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4529
basicListRemoveFromIndex:startLineNr toIndex:endLineNr
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4530
    "redefinable for special subclasses (with virtual list)"
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4531
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4532
    list removeFromIndex:startLineNr toIndex:(endLineNr min:list size).
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4533
!
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4534
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4535
basicMergeLine:lineNr removeBlanks:removeBlanks
1319
2739903e7a80 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  4536
    "merge line lineNr with line lineNr+1"
2739903e7a80 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  4537
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4538
    |leftPart rightPart bothParts nextLineNr i|
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4539
2356
6416beb0f23a backSpace if behond end of text.
Claus Gittinger <cg@exept.de>
parents: 2350
diff changeset
  4540
    (list notNil and:[(list size) >= lineNr]) ifFalse:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4541
        "/ empty list or beyond end of text
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4542
        ^ self
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4543
    ].
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4544
    leftPart := self listAt:lineNr.
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4545
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4546
    leftPart isNil ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4547
        leftPart := ''.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4548
        autoIndent ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4549
            (i := self leftIndentForLine:cursorLine) == 0 ifFalse:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4550
                leftPart := String new:i
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4551
            ]
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4552
        ]
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4553
    ].
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4554
    self cursorLine:lineNr col:((leftPart size) + 1).
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4555
    nextLineNr := self validateCursorLine:(lineNr + 1).
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4556
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  4557
    nextLineNr > (list size) ifFalse:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4558
        (rightPart := self listAt:nextLineNr) isNil ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4559
            rightPart := ''
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4560
        ] ifFalse:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4561
            removeBlanks ifTrue:[
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4562
                rightPart := rightPart withoutLeadingSeparators.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4563
            ]
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4564
        ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4565
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4566
        bothParts := leftPart , rightPart.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4567
        (trimBlankLines and:[bothParts isBlank]) ifTrue:[bothParts := nil].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4568
        self basicListAt:lineNr put:bothParts.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4569
        self redrawLine:lineNr.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4570
        self deleteLine:nextLineNr
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4571
    ]
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4572
1319
2739903e7a80 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  4573
    "Created: 9.9.1997 / 09:27:38 / cg"
2739903e7a80 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  4574
    "Modified: 9.9.1997 / 09:28:27 / cg"
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4575
!
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4576
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4577
basicReplace:aCharacter atLine:lineNr col:colNr
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4578
    "replace a single character at lineNr/colNr"
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4579
5045
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4580
    |line lineSize newLineSpecies newLine drawCharacterOnly|
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4581
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4582
    self checkModificationsAllowed ifFalse:[ ^ self].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4583
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4584
    aCharacter == (Character cr) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4585
        ^ self
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4586
    ].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4587
1558
abf35cc39757 minimize redraw in overwrite-replace;
Claus Gittinger <cg@exept.de>
parents: 1557
diff changeset
  4588
    drawCharacterOnly := true.
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4589
    self checkForExistingLine:lineNr.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4590
    line := list at:lineNr.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4591
    lineSize := line size.
671
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4592
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4593
    (trimBlankLines
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4594
    and:[colNr > lineSize
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4595
    and:[aCharacter == Character space]]) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4596
        ^ self
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4597
    ].
671
f3fe0d8c604d added trimBlankLines flag & handling
Claus Gittinger <cg@exept.de>
parents: 666
diff changeset
  4598
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4599
    (lineSize == 0) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4600
        newLine := aCharacter asString species new:colNr.
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4601
    ] ifFalse: [
5045
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4602
        (aCharacter bitsPerCharacter > line bitsPerCharacter) ifTrue:[ 
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4603
            newLineSpecies := aCharacter stringSpecies
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4604
        ] ifFalse:[
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4605
            newLineSpecies := line species
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4606
        ].
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4607
        newLine := newLineSpecies new:(colNr max:lineSize).
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4608
        newLine replaceFrom:1 to:lineSize with:line startingAt:1.
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4609
    ].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4610
    newLine at:colNr put:aCharacter.
1558
abf35cc39757 minimize redraw in overwrite-replace;
Claus Gittinger <cg@exept.de>
parents: 1557
diff changeset
  4611
    aCharacter == (Character tab) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4612
        newLine := self withTabsExpanded:newLine.
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4613
        drawCharacterOnly := false
1558
abf35cc39757 minimize redraw in overwrite-replace;
Claus Gittinger <cg@exept.de>
parents: 1557
diff changeset
  4614
    ].
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4615
    self basicListAt:lineNr put:(newLine ifNil:[newLine] ifNotNil:[newLine asSingleByteStringIfPossible]).
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4616
    widthOfWidestLine notNil ifTrue:[
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4617
        widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:newLine).
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4618
    ].
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4619
    self textChanged.
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4620
    shown ifTrue:[
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4621
        gc font hasOverlappingCharacters ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4622
            self invalidateLine:lineNr.
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4623
        ] ifFalse:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4624
            drawCharacterOnly ifTrue:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4625
                self redrawLine:lineNr col:colNr
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4626
            ] ifFalse:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4627
                self redrawLine:lineNr from:colNr
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4628
            ]
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4629
        ]
629
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4630
    ]
cf0a3ab9b9f1 Text fixes & category changes
Claus Gittinger <cg@exept.de>
parents: 606
diff changeset
  4631
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4632
    "Created: / 06-03-1996 / 12:29:20 / cg"
4191
8ac20ced2fbf changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4190
diff changeset
  4633
    "Modified: / 09-11-2010 / 13:42:54 / cg"
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4634
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  4635
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4636
basicReplaceString:aString atLine:lineNr col:colNr
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4637
    "replace multiple characters starting at lineNr/colNr.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4638
     This is not prepared to encounter special chars (except TAB)
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4639
     in the string."
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4640
5045
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4641
    |line lineSize newLine newLineSpecies endCol|
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4642
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4643
    self checkModificationsAllowed ifFalse:[ ^ self].
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4644
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4645
    self checkForExistingLine:lineNr.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4646
    line := list at:lineNr.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4647
    lineSize := line size.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4648
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4649
    endCol := colNr + aString size - 1.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4650
    (lineSize == 0) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4651
        newLine := aString species new:endCol.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4652
    ] ifFalse: [
5571
b2ec50dc48ca #BUGFIX
Stefan Vogel <sv@exept.de>
parents: 5560
diff changeset
  4653
        (aString bitsPerCharacter > line bitsPerCharacter) ifTrue:[ 
5045
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4654
            newLineSpecies := aString stringSpecies
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4655
        ] ifFalse:[
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4656
            newLineSpecies := line species
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4657
        ].
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4658
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4659
        newLine := newLineSpecies new:(endCol max:lineSize).
6197bf1337fe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4988
diff changeset
  4660
        newLine replaceFrom:1 to:lineSize with:line startingAt:1.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4661
    ].
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4662
    newLine replaceFrom:colNr with:aString.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4663
    (aString includes:(Character tab)) ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4664
        newLine := self withTabsExpanded:newLine.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4665
    ].
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4666
    self basicListAt:lineNr put:(newLine ifNil:[newLine] ifNotNil:[newLine asSingleByteStringIfPossible]).
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4667
    widthOfWidestLine notNil ifTrue:[
4458
f3421ef26d82 changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4451
diff changeset
  4668
        widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:newLine).
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4669
    ].
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4670
    self textChanged.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4671
    shown ifTrue:[
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  4672
        gc font hasOverlappingCharacters ifTrue:[
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4673
            self invalidateLine:lineNr.
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4674
        ] ifFalse:[
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4675
            self redrawLine:lineNr from:colNr
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4676
        ]
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4677
    ]
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4678
4190
d79217c1317d changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
  4679
    "Created: / 11-06-1998 / 10:38:32 / cg"
4191
8ac20ced2fbf changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4190
diff changeset
  4680
    "Modified: / 09-11-2010 / 13:42:56 / cg"
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4681
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  4682
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4683
basicSplitLine:lineNr before:colNr
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4684
    "split the line linNr before colNr; the right part (from colNr)
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4685
     is cut off and inserted after lineNr; the view is redrawn"
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4686
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  4687
    |line lineSize leftRest rightRest visLine w h mustWait
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4688
     srcY    "{ Class: SmallInteger }" |
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4689
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4690
    list isNil ifTrue:[ ^ self ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4691
    lineNr > (list size) ifTrue:[ ^ self ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4692
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4693
    (colNr == 1) ifTrue:[
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4694
        self nonUndoableDo:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4695
            self insertLine:nil before:lineNr.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4696
        ].
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4697
        ^ self
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4698
    ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4699
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4700
    line := list at:lineNr.
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4701
    line notNil ifTrue:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4702
        lineSize := line size.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4703
        (colNr <= lineSize) ifTrue:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4704
            rightRest := line copyFrom:colNr to:lineSize.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4705
            (colNr > 1) ifTrue:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4706
                leftRest := line copyTo:(colNr - 1)
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4707
            ]
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4708
        ] ifFalse:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4709
            leftRest := line
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4710
        ]
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4711
    ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4712
    leftRest notNil ifTrue:[
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4713
        (trimBlankLines and:[leftRest isBlank]) ifTrue:[leftRest := nil]
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4714
    ].
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4715
    self basicListAt:lineNr put:leftRest.
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4716
    self nonUndoableDo:[
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4717
        self withoutRedrawInsertLine:rightRest before:(lineNr + 1).
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4718
    ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4719
    visLine := self listLineToVisibleLine:(lineNr).
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4720
    visLine notNil ifTrue:[
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4721
        w := self widthForScrollBetween:lineNr
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4722
                                    and:(firstLineShown + nLinesShown).
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4723
        srcY := topMargin + (visLine * fontHeight).
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4724
        h := ((nLinesShown - visLine - 1) * fontHeight).
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4725
        (mustWait := (w > 0 and:[h > 0])) ifTrue:[
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4726
            self catchExpose.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4727
            self
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4728
                copyFrom:self
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4729
                x:textStartLeft y:srcY
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4730
                toX:textStartLeft y:(srcY + fontHeight)
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4731
                width:w
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4732
                height:((nLinesShown - visLine - 1) * fontHeight)
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4733
                async:true.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4734
        ].
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4735
        self redrawLine:lineNr.
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4736
        self redrawLine:(lineNr + 1).
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4737
        mustWait ifTrue:[self waitForExpose]
3027
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4738
    ].
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4739
    widthOfWidestLine := nil. "/ unknown
0dd9657b8033 *** empty log message ***
ca
parents: 3024
diff changeset
  4740
    self textChanged.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4741
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  4742
    "Modified: / 06-12-2010 / 13:12:55 / cg"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4743
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  4744
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4745
basicWithoutRedrawInsertLines:lines from:start to:end before:lineNr
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4746
    "insert a bunch of lines before line lineNr; the view is not redrawn.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4747
     Tabs are expanded here with a tab=8 setting (independent of any editor-setting,
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4748
     because the text might have been pasted from an alien view."
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4749
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4750
    |newLine newLines nLines|
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4751
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4752
    nLines := end - start + 1.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4753
    newLines := Array new:(lines size).
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4754
    start to:end do:[:index |
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4755
        newLine := lines at:index.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4756
        newLine notNil ifTrue:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4757
            newLine isString ifTrue:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4758
                newLine isBlank ifTrue:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4759
                    newLine := nil
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4760
                ] ifFalse:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4761
                    (newLine includes:(Character tab)) ifTrue:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4762
                        newLine := self withTabs:(ListView tab8Positions) expand:newLine
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4763
                    ]
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4764
                ]
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4765
            ]
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4766
        ].
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4767
        newLines at:index put:newLine
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4768
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4769
    list isNil ifTrue: [
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4770
        list := StringCollection new:(lineNr + nLines + 1)
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4771
    ] ifFalse: [
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4772
        list grow:((list size + nLines) max:(lineNr + nLines - 1))
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  4773
    ].
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  4774
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  4775
    "I have changed 'replaceFrom:to:with:startingAt:' to correctly handle
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4776
     overlapping copy - if it didn't, we had to use:"
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4777
"
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4778
    index := list size.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4779
    [index > lineNr] whileTrue: [
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4780
        pIndex := index - 1.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4781
        list at:index put:(list at:pIndex).
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4782
        index := pIndex
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4783
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4784
"
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4785
    list replaceFrom:(lineNr + nLines) to:(list size) with:list startingAt:lineNr.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4786
    list replaceFrom:lineNr to:(lineNr + nLines - 1) with:newLines startingAt:start.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4787
    self contentsChanged
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4788
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4789
    "Modified: / 07-10-2011 / 15:55:18 / cg"
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4790
!
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4791
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4792
basicWithoutRedrawInsertStringWithoutCRs:aString atLine:lineNr col:colNr
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4793
    "insert aString (which has no crs) at lineNr/colNr.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4794
     Tabs are expanded here with a tab=8 setting (independent of any editor-setting,
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4795
     because the text might have been pasted from an alien view."
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4796
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4797
    |isText strLen line lineSize newLine stringType sz lineCharWidth stringCharWidth|
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4798
4623
22047f737cb0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
  4799
    (aString isNil) ifTrue:[ ^ self].
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4800
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4801
    strLen := aString size.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4802
    self checkForExistingLine:lineNr.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4803
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4804
    stringType := aString string species.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4805
    isText     := aString isText.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4806
    line       := list at:lineNr.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4807
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4808
    line notNil ifTrue:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4809
        lineSize := line size.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4810
        line isString ifFalse:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4811
            stringType := line species
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4812
        ] ifTrue:[
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4813
            lineCharWidth := line bitsPerCharacter.
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4814
            stringCharWidth := aString bitsPerCharacter.
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4815
            lineCharWidth > stringCharWidth ifTrue:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4816
                stringType := line string species
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4817
            ] ifFalse:[
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4818
                stringCharWidth > lineCharWidth ifTrue:[
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4819
                    stringType := aString string species
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4820
                ]
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4821
            ].
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4822
            line isText ifTrue:[ isText := true ]
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4823
        ].
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4824
    ] ifFalse:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4825
        lineSize := 0
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4826
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4827
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4828
    ((colNr == 1) and:[lineSize == 0]) ifTrue: [
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4829
        newLine := aString
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4830
    ] ifFalse:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4831
        (lineSize == 0 or:[colNr > lineSize]) ifTrue: [
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4832
            sz := colNr + strLen - 1
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4833
        ] ifFalse:[
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4834
            sz := lineSize + strLen
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4835
        ].
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4836
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4837
        newLine := stringType new:sz.
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4838
        isText ifTrue:[
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4839
            newLine := Text string:newLine
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4840
        ].
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4841
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4842
        (lineSize ~~ 0) ifTrue: [
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4843
            (colNr > lineSize) ifTrue: [
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4844
                newLine replaceFrom:1 to:lineSize with:line startingAt:1
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4845
            ] ifFalse: [
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4846
                newLine replaceFrom:1 to:(colNr - 1) with:line startingAt:1.
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4847
                newLine replaceFrom:(colNr + strLen) to:(lineSize + strLen) with:line startingAt:colNr
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4848
            ]
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4849
        ].
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4850
        newLine replaceFrom:(colNr max:1) to:(colNr + strLen - 1) with:aString startingAt:1
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4851
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4852
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4853
    (aString includes:(Character tab)) ifTrue:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4854
        newLine := self withTabs:(ListView tab8Positions) expand:newLine
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4855
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4856
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  4857
    self basicListAt:lineNr put:(newLine ifNil:[newLine] ifNotNil:[newLine asSingleByteStringIfPossible]).
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4858
    widthOfWidestLine notNil ifTrue:[
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  4859
        widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:newLine).
2954
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4860
    ].
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4861
    self textChanged.
65a518fe6eb6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2952
diff changeset
  4862
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  4863
    "Modified: / 25-01-2012 / 00:37:29 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4864
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4865
2752
5650a9ab5935 method category rename
Claus Gittinger <cg@exept.de>
parents: 2744
diff changeset
  4866
!EditTextView methodsFor:'event handling'!
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4867
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4868
buttonPress:button x:x y:y
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4869
    "hide the cursor when button is activated"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4870
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  4871
    hasKeyboardFocus := true.   "/ cg: why is this needed?
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  4872
    dragIsActive := false.
62794ae04446 support drop
ca
parents: 2580
diff changeset
  4873
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  4874
    completionSupport notNil ifTrue:[ 
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  4875
        "/ also give that guy a chance to close its popup view
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  4876
        completionSupport buttonPress:button x:x y:y
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  4877
    ].
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  4878
1817
1a9e22f755c8 show non-focus cursor when disabled or readOnly
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
  4879
    cursorShown ifTrue: [
3915
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4880
        self drawCursor
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4881
    ].
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4882
4420
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4883
    "On X11, be nice and paste PRIMARY when middle click. 
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4884
     Note, that middle button on X11 is translated to button
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4885
     128 in Smalltalk/X - see XWorkstation class>>initializeConstants"
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  4886
    (button == #paste and:[device platformName == #X11]) ifTrue:[
4420
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4887
        self undoableDo:[
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4888
            self paste: (self getClipboardText:#selection).
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4889
        ].
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4890
        ^self.
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4891
    ].
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4892
3915
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4893
    (button == 1) ifTrue:[
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4894
        self hideCursor
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4895
    ].
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4896
"/ some very old code from times, when a right-click was a paste in X11
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4897
"/
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4898
"/    (button == #paste) ifTrue:[
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4899
"/        self pasteOrReplace.
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4900
"/        ^ self
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4901
"/    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4902
    super buttonPress:button x:x y:y
1817
1a9e22f755c8 show non-focus cursor when disabled or readOnly
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
  4903
4420
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4904
    "Modified: / 23-03-1999 / 13:51:40 / cg"
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4905
    "Modified (comment): / 17-04-2012 / 21:02:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
121
claus
parents: 118
diff changeset
  4906
!
claus
parents: 118
diff changeset
  4907
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4908
buttonRelease:button x:x y:y
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4909
    "move the cursor to the click-position of previous button press"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4910
3789
a9b4805e0754 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3788
diff changeset
  4911
    |x1 x2 x2_3 newCursorCol|
3788
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4912
3915
737e276852c8 preps for right-menu on buttonRelease
Claus Gittinger <cg@exept.de>
parents: 3907
diff changeset
  4913
    (button == 1) ifTrue:[
3788
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4914
        typeOfSelection := nil.
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4915
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4916
        dragIsActive ifTrue:[
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4917
            self unselect
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4918
        ].
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4919
        selectionStartLine isNil ifTrue:[
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4920
            clickCol notNil ifTrue:[
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4921
                self cursorMovementAllowed ifTrue:[
3789
a9b4805e0754 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3788
diff changeset
  4922
                    newCursorCol := clickCol.
a9b4805e0754 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3788
diff changeset
  4923
a9b4805e0754 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3788
diff changeset
  4924
                    cursorType ~~ #block ifTrue:[
3790
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4925
                        clickPos notNil ifTrue:[
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4926
                            "/ we do something special, if the text-cursor's type is not a block-cursor
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4927
                            "/ (i.e. if its an ibeam).
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4928
                            "/ adjust clickCol if the user clicked in the right third of a character.
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4929
                            x1 := self xOfCol:clickCol inVisibleLine:clickLine.  
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4930
                            x2 := self xOfCol:clickCol+1 inVisibleLine:clickLine.
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4931
                            x2_3 := x1 + ((x2-x1) * (2/3)).
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4932
                            (clickPos x >= x2_3) ifTrue:[ newCursorCol := clickCol+1 ].
7f4d267cf342 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3789
diff changeset
  4933
                        ].
3789
a9b4805e0754 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3788
diff changeset
  4934
                    ].
5056
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4935
                    "/ the following fixes the ugly select behavior when double clicking on
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4936
                    "/ a partially visible last line (where the first click used to
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4937
                    "/ scroll the text so that the second click was handled on another
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4938
                    "/ line. An alternative (possibly better) solution would be to
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4939
                    "/ remember the last click posision and adjust in the double click
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4940
                    "/ event handling (i.e. subtract the number of scrolled lines in between)
9984a425a389 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5050
diff changeset
  4941
                    "/ Time will show, if this hack works.
5057
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4942
                    clickLine >= (self lastLineShown -1 ) ifTrue:[
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4943
                        self cursorLine:clickLine col:newCursorCol makeVisible:false.
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4944
                        Processor 
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4945
                            addTimedBlock:[self sensor pushUserEvent:#makeCursorVisible for:self]
5742
0a7b90d7670a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5724
diff changeset
  4946
                            after:0.3 seconds.
5057
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4947
                    ] ifFalse:[
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4948
                        self cursorLine:clickLine col:newCursorCol.
990eb60b7dbe class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5056
diff changeset
  4949
                    ].
4394
c3cabdc1f4cc changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4388
diff changeset
  4950
                ].
c3cabdc1f4cc changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4388
diff changeset
  4951
                true "self hadSelectionBeforeClick not" ifTrue:[
4396
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4952
                    list notEmptyOrNil ifTrue:[
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4953
                        UserPreferences current selectAllWhenClickingBeyondEnd ifTrue:[
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4954
                            (clickLine >= list size) ifTrue:[
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4955
                                (clickLine > (self list size + 2) 
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4956
                                or:[ clickCol > (list last size + 5) ]) ifTrue:[
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4957
                                    self selectAll
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4958
                                ].
4394
c3cabdc1f4cc changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4388
diff changeset
  4959
                            ].
4396
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4960
                        ]
4394
c3cabdc1f4cc changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4388
diff changeset
  4961
                    ]
3788
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4962
                ]
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4963
            ]
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4964
        ] ifFalse:[
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  4965
            lastStringFromReplaceForNextSearch := nil.  "new selection invalidates remembered string"
3788
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4966
        ].
b72271bf0bc2 when clicking on a character, position the cursor on the next
Claus Gittinger <cg@exept.de>
parents: 3786
diff changeset
  4967
        self showCursor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4968
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4969
    super buttonRelease:button x:x y:y
1580
d30e562bea15 allow cursorMovement with button-press
Claus Gittinger <cg@exept.de>
parents: 1577
diff changeset
  4970
4396
7820ce5cac3d changed: #buttonRelease:x:y:
Claus Gittinger <cg@exept.de>
parents: 4394
diff changeset
  4971
    "Modified: / 07-03-2012 / 18:48:37 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4972
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  4973
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  4974
cursorKeyPress:key shifted:shifted
4492
088b5fba29d0 changed: #keyPress:x:y:view:
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  4975
    <resource: #keyboard (#CursorRight #CursorDown #CursorUp #CursorDown)>
088b5fba29d0 changed: #keyPress:x:y:view:
Claus Gittinger <cg@exept.de>
parents: 4484
diff changeset
  4976
4844
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  4977
    | n oldTypeOfSelection |
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  4978
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  4979
    oldTypeOfSelection := typeOfSelection.
2730
61a2f1981ac6 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2725
diff changeset
  4980
2606
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  4981
    self changeTypeOfSelectionTo:nil.
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  4982
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  4983
    (key == #CursorRight) ifTrue:[
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4984
        (shifted and:[selectionStartLine isNil]) ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4985
            selectionStartLine := selectionEndLine := clickStartLine := cursorLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4986
            selectionStartCol := selectionEndCol := clickStartCol := cursorCol.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  4987
            cursorCol := cursorCol + 1.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4988
            expandingTop := false.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4989
            self validateNewSelection.
4420
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  4990
            self setPrimarySelection.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4991
            self selectionChanged.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4992
            self redrawLine:selectionStartLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4993
            ^ self.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4994
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  4995
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  4996
        self cursorMovementAllowed ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  4997
            shifted ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  4998
                self addToSelectionAfter:[ self cursorRight ]
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  4999
            ] ifFalse:[
4844
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5000
                "/ Compensate for Claus paste-cursordown-paste feature.
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5001
                "/ Right after paste the cursor is at the beginning of the
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5002
                "/ selection. But if immediately after paste user moves cursor right
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5003
                "/ (but without shift!!!!!!), she probably wants to move past the 
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5004
                "/ pasted text, not into it. This is how every other editor behaves.
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5005
                oldTypeOfSelection == #paste ifTrue:[
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5006
                    cursorLine := selectionEndLine.
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  5007
                    cursorCol := selectionEndCol + 1.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5008
                ].
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5009
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5010
                "/ If there's selection, unselect and move cursor
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5011
                "/ to the end of selection.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5012
                self hasSelection ifTrue:[ 
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5013
                    self setCursorLine: selectionEndLine.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5014
                    self setCursorCol: selectionEndCol + 1.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5015
                    self unselect; makeCursorVisible.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5016
                    ^ self.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5017
                ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5018
                self unselect; makeCursorVisible.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5019
                self cursorRight.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5020
            ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5021
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5022
        ^ self
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5023
    ].
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5024
    (key == #CursorDown) ifTrue:[
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5025
        (shifted and:[selectionStartLine isNil]) ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5026
            selectionStartLine := clickStartLine := cursorLine. selectionEndLine := cursorLine + 1.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5027
            selectionStartCol := clickStartCol := cursorCol.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5028
            selectionEndCol := cursorCol - 1.
4970
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  5029
"/            selectionEndCol == 1 ifTrue:[
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  5030
"/                selectionEndCol := 0.
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  5031
"/            ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5032
            self setCursorLine: cursorLine + 1.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5033
            self validateNewSelection.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5034
            self selectionChanged.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5035
            self redrawLine:selectionStartLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5036
            expandingTop := false.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5037
            self redrawLine:selectionEndLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5038
            ^ self
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5039
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5040
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5041
        selectionStartLine notNil ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5042
            self cursorMovementAllowed ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5043
                "/
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5044
                "/ treat the whole selection as cursor
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5045
                "/
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5046
"/                self setCursorLine:(selectionEndLine ? selectionStartLine).
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5047
"/                self setCursorCol:selectionStartCol.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5048
"/                (cursorCol == 0 or:[selectionEndCol == 0]) ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5049
"/                    self setCursorCol:1.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5050
"/                    self setCursorLine:(cursorLine - 1).
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5051
"/                ].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5052
"/                self makeCursorVisible.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5053
"/
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5054
"/                shifted ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5055
"/                    clickLine := cursorLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5056
"/                    clickCol := cursorCol.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5057
"/                    self setCursorLine: cursorLine + 1.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5058
"/                    self expandSelectionDown.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5059
"/                    ^ self
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5060
"/                ].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5061
"/                self unselect.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5062
            ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5063
        ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5064
        self cursorMovementAllowed ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5065
            n := 1 + (self sensor compressKeyPressEventsWithKey:#CursorDown).
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5066
            shifted ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5067
                self addToSelectionAfter:[ self cursorDown:n ]
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5068
            ] ifFalse:[
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5069
                "/ If there's selection, unselect and move cursor
4977
d0e0234d922c Fix for select & CursorDown press (non-shift)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4976
diff changeset
  5070
                "/ one line below last selection line but at the
d0e0234d922c Fix for select & CursorDown press (non-shift)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4976
diff changeset
  5071
                "/ selectionStartCol column. This behavior is
d0e0234d922c Fix for select & CursorDown press (non-shift)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4976
diff changeset
  5072
                "/ useful when pasting...
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5073
                self hasSelection ifTrue:[ 
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5074
                    self setCursorLine: selectionEndLine.
4977
d0e0234d922c Fix for select & CursorDown press (non-shift)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4976
diff changeset
  5075
                    self setCursorCol: selectionStartCol.
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5076
                ].    
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5077
                self unselect; makeCursorVisible.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5078
                self cursorDown:n.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5079
            ].  
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5080
            "/
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5081
            "/ flush keyboard to avoid runaway cursor
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5082
            "/
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5083
            self sensor flushKeyboardFor:self.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5084
        ].
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5085
        ^ self
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5086
    ].
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5087
    (key == #CursorLeft or:[key == #CursorUp]) ifTrue:[
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5088
        (shifted and:[selectionStartLine isNil]) ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5089
            expandingTop := true.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5090
            key == #CursorLeft ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5091
                cursorCol > 1 ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5092
                    selectionStartLine := selectionEndLine := clickStartLine := cursorLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5093
                    selectionEndCol := clickStartCol := cursorCol-1.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5094
                    selectionStartCol := cursorCol-1.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5095
                    self setCursorCol: cursorCol-1.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5096
                    self validateNewSelection.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5097
                    self selectionChanged.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5098
                    self redrawLine:selectionStartLine.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5099
                    ^ self
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5100
                ]
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5101
            ] ifFalse:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5102
                cursorLine > 1 ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5103
                    selectionEndLine := clickStartLine := cursorLine.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5104
                    selectionStartCol := clickStartCol := cursorCol.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5105
                    selectionEndCol := cursorCol - 1.
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5106
                    selectionStartLine := cursorLine - 1.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5107
                    selectionEndCol == 1 ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5108
                        selectionEndCol := 0.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5109
                    ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5110
                    self validateNewSelection.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5111
                    self selectionChanged.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5112
                    self redrawFromLine:selectionStartLine to:cursorLine.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5113
                    self setCursorLine: cursorLine - 1.  
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5114
                    ^ self
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5115
                ]
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5116
            ]
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5117
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5118
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5119
        self hasSelection ifTrue:[
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5120
            self cursorMovementAllowed ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5121
                "/
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5122
                "/ treat the whole selection as cursor
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5123
                "/
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5124
"/                self setCursorLine:selectionStartLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5125
"/                self setCursorCol:selectionStartCol.
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5126
"/                self makeCursorVisible.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5127
"/
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5128
"/                shifted ifFalse:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5129
"/                    self unselect.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5130
"/                ]
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5131
            ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5132
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5133
        (key == #CursorLeft) ifTrue:[
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5134
            shifted ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5135
                self addToSelectionAfter:[self cursorLeft].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5136
            ] ifFalse:[
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5137
                "/ If there's selection, unselect and move cursor
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5138
                "/ to the end of selection.   
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5139
                self hasSelection ifTrue:[ 
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5140
                    self setCursorLine:selectionStartLine.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5141
                    self setCursorCol:selectionStartCol.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5142
                    self unselect; makeCursorVisible.                    
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5143
                    ^ self.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5144
                ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5145
                self unselect; makeCursorVisible.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5146
                self cursorLeft. 
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5147
            ].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5148
            ^self
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5149
        ].
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5150
        (key == #CursorUp)        ifTrue:[
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5151
            n := 1 + (self sensor compressKeyPressEventsWithKey:#CursorUp).
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5152
            shifted ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5153
                self addToSelectionAfter: [ self cursorUp:n ]
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5154
            ] ifFalse:[
4975
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5155
                "/ If there's selection, unselect and move cursor
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5156
                "/ to the beggining of selection.   
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5157
                self hasSelection ifTrue:[ 
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5158
                    self setCursorLine:selectionStartLine.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5159
                    self setCursorCol:selectionStartCol.
bee454945bf7 Bugfix for cursor position after non-shifter cursor key press while having selection.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4974
diff changeset
  5160
                ].    
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5161
                self unselect; makeCursorVisible.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5162
                self cursorUp:n.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5163
            ].
4100
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5164
            "/
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5165
            "/ flush keyboard to avoid runaway cursor
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5166
            "/
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5167
            self sensor flushKeyboardFor:self.
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5168
            ^ self
3fbb7392a6e1 changed: #cursorKeyPress:shifted:
Claus Gittinger <cg@exept.de>
parents: 4097
diff changeset
  5169
        ].
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5170
    ].
4420
8f0164295ef8 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4414
diff changeset
  5171
4977
d0e0234d922c Fix for select & CursorDown press (non-shift)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4976
diff changeset
  5172
    "Modified: / 28-03-2014 / 12:32:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5173
!
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  5174
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5175
doKeyPress:key x:x y:y
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5176
    "handle keyboard input"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5177
4521
0b6740e2d1a7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4494
diff changeset
  5178
    <resource: #keyboard (#Paste #Insert #PasteFromHistory #Cut #Again #AgainForAll
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  5179
                          #Replace #Undo #Redo #Accept
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5180
                          #Delete #BasicDelete #BackSpace #BasicBackspace
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5181
                          #DeleteSpaces #Join
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5182
                          #SearchMatchingParent #SelectMatchingParents
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5183
                          #SelectWord #ExpandSelectionByWord
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5184
                          #SelectToEnd #SelectFromBeginning
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5185
                          #SelectLine #ExpandSelectionByLine
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5186
                          #BeginOfLine #EndOfLine #NextWord #PreviousWord
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5187
                          #CursorRight #CursorDown #CursorLeft #CursorUp
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5188
                          #Return #Tab #BackTab #NonInsertingTab #Escape
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5189
                          #GotoLine #BeginOfText #EndOfText
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5190
                          #InsertLine #DeleteLine
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5191
                          #SelectLineFromBeginning
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5192
                          #LearnKeyboardMacro #ExecuteKeyboardMacro #ToggleInsertMode
5134
f801128ce11d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5133
diff changeset
  5193
                          #OpenSpecialCharacterWindow #InsertUUID
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5194
                          #'F*' #'f*')>
2017
5d4bf15e09f5 simple (naive) undo
Claus Gittinger <cg@exept.de>
parents: 2010
diff changeset
  5195
4730
1f84a8cfec4e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4728
diff changeset
  5196
    |fKeyMacros shiftPressed ctrlPressed i event macroName
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5197
     immediateCompletion currentUserPrefs rawKey|
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5198
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5199
    currentUserPrefs := UserPreferences current.
2184
fb634dc3e606 learn (Cmd-l)and executeMacro (Cmd-M)
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  5200
4701
fc3e667bcc01 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4700
diff changeset
  5201
    "/ experimental
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5202
    immediateCompletion := currentUserPrefs immediateCodeCompletion.
4738
f59a81d925c9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4731
diff changeset
  5203
    (immediateCompletion 
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5204
    or:[currentUserPrefs codeCompletionOnControlKey
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5205
    or:[currentUserPrefs codeCompletionOnTabKey]]) ifTrue:[
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5206
        completionSupport isNil ifTrue:[
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5207
            self initializeCompletionSupport.
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5208
        ].
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5209
    ].
5394
bd2329beafbc class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5393
diff changeset
  5210
    
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5211
    "/ JV: why setting it to nil here?
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5212
"/    ifFalse:[
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5213
"/        completionService := nil
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5214
"/    ].
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5215
    completionSupport notNil ifTrue:[
5394
bd2329beafbc class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5393
diff changeset
  5216
        completionSupport stopCompletionProcess.
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5217
        (completionSupport handleKeyPress:key x:x y:y) ifTrue:["eaten" ^ self].
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  5218
    ].
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  5219
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5220
    key isSymbol ifTrue:[
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5221
        (device modifierKeys includes:key) ifFalse:[
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5222
            lastReplacementInfo stillCollectingInput:false.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5223
        ]
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5224
    ].
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5225
    (key == #LearnKeyboardMacro) ifTrue:[
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5226
        lastReplacementInfo stillCollectingInput:false.
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5227
        self toggleLearnMode.
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5228
        ^ self
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5229
    ].
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5230
    (key == #ExecuteKeyboardMacro) ifTrue:[
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5231
        lastReplacementInfo stillCollectingInput:false.
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5232
        self executeLearnedKeyboardMacro.
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5233
        ^ self.
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5234
    ].
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  5235
    (key == #Undo) ifTrue:[self undo. ^self].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  5236
    (key == #Redo) ifTrue:[self redo. ^self].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  5237
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5238
    self learnMode ifTrue:[
4482
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5239
        event := WindowGroup lastEventQuerySignal query.
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5240
        learnedMacro add:event.
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5241
    ].
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  5242
4238
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5243
    (self executekeyboardMacroNamed:key) ifTrue:[
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5244
        "the macro named key exists"
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5245
        ^ self
2416
56acdd9e31b5 lifted mkeyboardMacro handling from Workspace to EditTextView
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  5246
    ].
56acdd9e31b5 lifted mkeyboardMacro handling from Workspace to EditTextView
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  5247
4482
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5248
    key isSymbol ifFalse:[
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5249
        "the usual case: key is a character, but maybe a string also (in X11)"
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5250
        self handleNonCommandKey:key.
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5251
        ^ self
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5252
    ].
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5253
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5254
    event isNil ifTrue:[
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5255
        event := WindowGroup lastEventQuerySignal query.
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5256
    ].
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5257
    shiftPressed := event hasShift.
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5258
    ctrlPressed := event hasCtrl and:[(event rawKey asString startsWith:'Ctrl') not].
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5259
    rawKey := event rawKey.
4482
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5260
5133
9d9d9845258f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5119
diff changeset
  5261
    key == #InsertUUID ifTrue:[
9d9d9845258f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5119
diff changeset
  5262
        self insertUUID.
9d9d9845258f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5119
diff changeset
  5263
        ^ self.
9d9d9845258f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5119
diff changeset
  5264
    ].
9d9d9845258f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5119
diff changeset
  5265
4253
adea55ecdb57 changed: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4249
diff changeset
  5266
    (key == #DeleteWordBeforeCursor) ifTrue:[
adea55ecdb57 changed: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4249
diff changeset
  5267
        self deleteWordBeforeCursor.
adea55ecdb57 changed: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4249
diff changeset
  5268
        ^ self.
adea55ecdb57 changed: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4249
diff changeset
  5269
    ].
adea55ecdb57 changed: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4249
diff changeset
  5270
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5271
    (rawKey == #BackSpace or:[key == #BasicBackspace]) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5272
        selectionStartLine notNil ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5273
            ((key == #BasicBackspace)
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5274
            or:[ currentUserPrefs deleteSetsClipboardText not ])
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5275
            ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5276
                self deleteSelection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5277
            ] ifFalse: [
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5278
                self copyAndDeleteSelection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5279
            ].
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5280
        ] ifFalse:[
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5281
            self makeCursorVisible.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5282
"/          (shiftPressed and:[ ctrlPressed ]) ifTrue:[
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5283
"/            self deleteWordBeforeCursor.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5284
"/          ] ifFalse:[
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5285
            self deleteCharBeforeCursor.
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5286
"/          ].
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5287
        ].
4738
f59a81d925c9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4731
diff changeset
  5288
        true "immediateCompletion" ifTrue:[ 
5394
bd2329beafbc class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5393
diff changeset
  5289
            completionSupport notNil ifTrue:[ 
bd2329beafbc class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5393
diff changeset
  5290
                completionSupport postKeyPress:key
bd2329beafbc class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5393
diff changeset
  5291
            ].
4731
e3da3340744b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
  5292
        ].
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5293
        ^ self
2205
230cf9cef6c3 searchPatter, if from selection (escape meta characters)
Claus Gittinger <cg@exept.de>
parents: 2196
diff changeset
  5294
    ].
2184
fb634dc3e606 learn (Cmd-l)and executeMacro (Cmd-M)
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
  5295
3782
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5296
    (key == #ToggleAutoIndent) ifTrue:[
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5297
        self autoIndent:(autoIndent not).
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5298
        ^ self.
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5299
    ].
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5300
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5301
    key == #ToggleInsertMode ifTrue:[
3782
79ae5dad28d4 Ctrl-Insert to toggle insert mode.
Claus Gittinger <cg@exept.de>
parents: 3781
diff changeset
  5302
        self insertMode:(editMode value == EditMode insertMode) not.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5303
        ^ self.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  5304
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5305
4162
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5306
    key == #OpenSpecialCharacterWindow ifTrue:[
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5307
        CharacterSetView notNil ifTrue:[
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5308
            self specialCharacters.
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5309
            ^ self.
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5310
        ]        
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5311
    ].
9c80c8f4ba45 changed:
Claus Gittinger <cg@exept.de>
parents: 4143
diff changeset
  5312
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5313
    replacing := false.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5314
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5315
    "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5316
     Fn      pastes a key-sequence (but only if not overlayed with
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5317
             another function in the keyboard map)
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5318
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5319
     see TextView>>:x:y
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5320
    "
1177
9d23e1241404 avoid match: if possible (to not clobber the previous matchString)
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
  5321
    (key at:1) asLowercase == $f ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5322
        (('[fF][0-9]' match:key)
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5323
        or:['[fF][0-9][0-9]' match:key]) ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5324
            shiftPressed ifFalse:[
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5325
                fKeyMacros := currentUserPrefs functionKeySequences.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5326
                fKeyMacros notNil ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5327
                    (fKeyMacros includesKey:key) ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5328
                        self pasteOrReplace:(fKeyMacros at:key) asStringCollection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5329
                        ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5330
                    ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5331
                ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5332
            ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5333
        ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5334
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5335
2506
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  5336
    (key == #'Ctrl8' or:[key == #'Ctrl9']) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5337
        self parenthizeSelectionWith:$( and:$).
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5338
        ^ self.
2506
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  5339
    ].
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  5340
    (key == #'Ctrl2') ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5341
        self parenthizeSelectionWith:$" and:$".
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5342
        ^ self.
2506
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  5343
    ].
5568d67dbddd Ctrl-8 / Ctrl-9,
Claus Gittinger <cg@exept.de>
parents: 2505
diff changeset
  5344
    (key == #'Ctrl#') ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5345
        self parenthizeSelectionWith:$' and:$'.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5346
        ^ self.
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5347
    ].
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  5348
    (key == #'ConvertSelectionToLowercaseOrUppercaseOrUppercaseFirst') ifTrue:[
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  5349
        self convertSelectionToLowercaseOrUppercaseOrUppercaseFirst.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  5350
        ^ self.
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  5351
    ].
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5352
274
6df4bb990f04 handle accept where acceptAction is define (this was a historic leftover)
Claus Gittinger <cg@exept.de>
parents: 259
diff changeset
  5353
    (key == #Accept)  ifTrue:[^ self accept].
5387
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  5354
    (key == #PasteFromHistory) ifTrue:[self pasteOrReplaceFromHistory. ^self].
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  5355
    (key == #Paste or:[key == #Insert]) ifTrue:[self pasteOrReplaceByKeyPress. ^self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5356
    (key == #Cut) ifTrue:[self cut. ^self].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5357
    (key == #Again) ifTrue:[self again. ^self].
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  5358
    (key == #AgainForAll) ifTrue:[self multipleAgain. ^self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5359
3542
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  5360
    (key == #Join) ifTrue:[self joinLines. ^self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5361
    (key == #Replace) ifTrue:[self replace. ^self].
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5362
    (key == #ExpandSelectionByWord) ifTrue:[
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5363
        self makeCursorVisible.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5364
        self findNextWordAfterSelectionAndAddToSelection.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5365
        ^ self
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5366
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5367
    (key == #SelectWord) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5368
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5369
        self selectWordUnderCursor.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5370
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5371
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5372
2505
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5373
    (key == #SearchMatchingParent) ifTrue:[self searchForMatchingParenthesis. ^ self].
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5374
    (key == #SelectMatchingParents) ifTrue:[self searchForAndSelectMatchingParenthesis. ^ self].
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5375
    (key == #SelectToEnd) ifTrue:[self selectUpToEnd. ^ self].
9204d5313979 Ctrl-8 / Ctrl-9 to parenthize/unparenthize
Claus Gittinger <cg@exept.de>
parents: 2491
diff changeset
  5376
    (key == #SelectFromBeginning) ifTrue:[self selectFromBeginning. ^ self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5377
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5378
" disabled - nobody liked it ...
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5379
  and if you like it, its better done in the keymap.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5380
1304
173d00c195f9 flush pending keyboard events in cursor-up/down
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  5381
    (key == #Ctrlb) ifTrue:[self unselect. self cursorLeft. ^ self].
173d00c195f9 flush pending keyboard events in cursor-up/down
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  5382
    (key == #Ctrlf) ifTrue:[self unselect. self cursorRight. ^ self].
173d00c195f9 flush pending keyboard events in cursor-up/down
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  5383
    (key == #Ctrln) ifTrue:[self unselect. self cursorDown. ^ self].
173d00c195f9 flush pending keyboard events in cursor-up/down
Claus Gittinger <cg@exept.de>
parents: 1300
diff changeset
  5384
    (key == #Ctrlp) ifTrue:[self unselect. self cursorUp. ^ self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5385
"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5386
1675
b1cba2341f95 EndOfLine / BeginOfLine unselect first.
Claus Gittinger <cg@exept.de>
parents: 1601
diff changeset
  5387
    (key == #BeginOfLine) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5388
        shiftPressed ifTrue: [
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5389
            "/ "Original St/X code - now use Ctrl modifier"
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5390
            "/ self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5391
            "/ self cursorHome.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5392
            "Jan's modification"
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5393
            self addToSelectionAfter:[ self cursorToBeginOfLine ].
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  5394
            "/ Jan's modification modified by his own request ;-))
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5395
            "/ JV: Well, does not work correctly. Better to fix addToSelectionAfter: 
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5396
            "/ self selectFromBeginOfLine.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5397
        ] ifFalse: [
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5398
            self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5399
            ctrlPressed ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5400
                self cursorHome.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5401
            ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5402
                self cursorToBeginOfLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5403
            ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5404
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5405
        ^ self
1675
b1cba2341f95 EndOfLine / BeginOfLine unselect first.
Claus Gittinger <cg@exept.de>
parents: 1601
diff changeset
  5406
    ].
b1cba2341f95 EndOfLine / BeginOfLine unselect first.
Claus Gittinger <cg@exept.de>
parents: 1601
diff changeset
  5407
    (key == #EndOfLine) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5408
        shiftPressed ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5409
            "/ "Original St/X code - now use Ctrl modifier"
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5410
            "/ self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5411
            "/ self cursorToBottom
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  5412
            " Jan's modification"
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5413
            self addToSelectionAfter:[ self cursorToEndOfLine ] .
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  5414
            "/ Jan's modification modified by his own request ;-))
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5415
            "/ JV: Well, does not work correctly. Better to fix addToSelectionAfter:
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  5416
            "/  self selectToEndOfLine.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5417
        ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5418
            self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5419
            ctrlPressed ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5420
                self cursorToBottom
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5421
            ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5422
                self cursorToEndOfLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5423
            ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5424
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5425
        ^ self
1675
b1cba2341f95 EndOfLine / BeginOfLine unselect first.
Claus Gittinger <cg@exept.de>
parents: 1601
diff changeset
  5426
    ].
4978
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5427
    (key == #NextWord) ifTrue:[
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5428
        shiftPressed ifTrue:[
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5429
            self addToSelectionAfter:[  
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5430
                self cursorToNextWord. 
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5431
            ]
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5432
        ] ifFalse:[ 
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5433
            self cursorToNextWord
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5434
        ].
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5435
        ^self
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5436
    ].
3310
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  5437
    (key == #EndOfWord) ifTrue:[self cursorToEndOfWord. ^self].
4978
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5438
    (key == #PreviousWord) ifTrue:[
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5439
        shiftPressed ifTrue:[
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5440
            self addToSelectionAfter:[      
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5441
                self cursorToPreviousWord. 
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5442
            ]
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5443
        ] ifFalse:[ 
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5444
            self cursorToPreviousWord.                                
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5445
        ].
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5446
        ^self
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5447
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5448
    (key == #GotoLine) ifTrue:[self gotoLine. ^self].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5449
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5450
    (rawKey == #CursorRight
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5451
    or:[rawKey == #CursorDown
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5452
    or:[rawKey == #CursorLeft
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5453
    or:[rawKey == #CursorUp]]]) ifTrue:[
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5454
        self cursorKeyPress:rawKey shifted:shiftPressed.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5455
        ^ self.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5456
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5457
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5458
    (key == #ShiftReturn or:[key == #NonInsertingReturn]) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5459
        self unselect. self cursorReturn.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5460
        ^ self
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5461
    ].
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5462
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5463
    (key == #Return) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5464
        shiftPressed ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5465
            self unselect. self cursorReturn.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5466
            ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5467
        ].
4199
cd7069b3bc33 comment/format in: #doKeyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4192
diff changeset
  5468
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5469
        self isReadOnly ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5470
            self unselect; makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5471
            self cursorReturn
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5472
        ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5473
            self isInInsertMode ifFalse:[
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  5474
                self cursorReturn:true.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5475
                autoIndent == true ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5476
                    i := self leftIndentForLine:(cursorLine + 1).
4820
8640fa6f128f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4818
diff changeset
  5477
                    (self listAt:cursorLine) isEmptyOrNil ifTrue:[
4811
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  5478
                        self cursorCol:(i+1 max:1)
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  5479
                    ]
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5480
                ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5481
            ] ifTrue:[
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5482
                |left right oldIndent|
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5483
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5484
                "/ old version just unselected ...
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5485
                "/ self unselect; makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5486
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5487
                "/ new version deletes ...
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5488
                typeOfSelection == #paste ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5489
                    self unselect; makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5490
                ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5491
                    self copyAndDeleteSelection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5492
                ].
4816
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5493
                left := (self listAt:cursorLine to:cursorCol-1) ? ''.
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5494
                right := (self listAt:cursorLine from:cursorCol) ? ''.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5495
                self insertCharAtCursor:(Character cr).
5112
a1aa277baf30 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5107
diff changeset
  5496
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5497
                autoIndent == true ifTrue:[
4816
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5498
                    (right isEmpty and:[cursorCol ~~ 1]) ifTrue:[
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5499
                        "/ nothing to do.
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5500
                    ] ifFalse:[
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5501
                        ((self listAt:cursorLine) isEmptyOrNil 
5112
a1aa277baf30 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5107
diff changeset
  5502
                        or:[ false "cursorCol == 1" ]) ifTrue:[
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5503
                            i := (self leftIndentForLine:cursorLine).
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5504
                            left := left withoutSeparators.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5505
                            right := right withoutSeparators.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5506
                            (left endsWith:'[') ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5507
"/                                i := i + 4.
4816
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5508
                            ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5509
                                (false "(left endsWith:']')" or:[(right startsWith:']')]) ifTrue:[
4816
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5510
                                    i := i - 4.
6020db6f57f6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4814
diff changeset
  5511
                                ].
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5512
                            ].
4826
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5513
                            oldIndent := self leftIndentOfLine:cursorLine.
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5514
                            self indentFromLine:cursorLine toLine:cursorLine by:(i-oldIndent).
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5515
                            self st80EditMode ifTrue:[
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5516
                                (self listAt:cursorLine) size < i ifTrue:[
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5517
                                    self insertStringAtCursor:(String new:((i-oldIndent) max:0)).
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5518
                                ].
ee17c37a8012 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4823
diff changeset
  5519
                            ].
4812
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5520
                            self cursorCol:(i+1 max:1)
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5521
                        ].
ca6d48bf0053 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4811
diff changeset
  5522
                    ]
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5523
                ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5524
            ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5525
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5526
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5527
    ].
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 297
diff changeset
  5528
2819
a7a41dfb9df7 BackTab / NonInsertingTab modifiers now defined in keyboard.rc
ca
parents: 2817
diff changeset
  5529
    (key == #NonInsertingTab) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5530
        self unselect. self cursorTab.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5531
        ^ self
2819
a7a41dfb9df7 BackTab / NonInsertingTab modifiers now defined in keyboard.rc
ca
parents: 2817
diff changeset
  5532
    ].
3422
a0c68e8bd56e tab with line selection means: indent/undent
Claus Gittinger <cg@exept.de>
parents: 3416
diff changeset
  5533
    ((key == #BackTab) or:[(key == #Tab)]) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5534
        self tabMeansNextField ifTrue:[^ super keyPress:key x:x y:y].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5535
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5536
        self hasSelection ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5537
            selectStyle == #line ifTrue:[
4238
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5538
                ((key == #Tab) and:[shiftPressed not]) ifTrue:[
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5539
                    macroName := #IndentBy4.
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5540
                ] ifFalse:[
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5541
                    macroName := #UndentBy4.
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5542
                ].
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5543
                macroName notNil ifTrue:[
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5544
                    self executekeyboardMacroNamed:macroName.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5545
                ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5546
            ]
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5547
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5548
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5549
        self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5550
        (key == #Tab) ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5551
            (shiftPressed or:[self isInInsertMode not]) ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5552
                self cursorTab.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5553
                ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5554
            ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5555
            self insertTabAtCursor.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5556
            ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5557
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5558
        self cursorBacktab.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5559
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5560
    ].
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 297
diff changeset
  5561
2883
6cdb4a5a7b5e shift-delete - delete whiteSpace
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  5562
    "/ key == #DeleteSpaces ifTrue:[
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5563
    (rawKey == #Delete) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5564
        shiftPressed ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5565
            [(cursorCol <= (self listAt:cursorLine) size)
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5566
             and:[self characterUnderCursor isSeparator]] whileTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5567
             self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5568
                self deleteCharAtCursor.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5569
            ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5570
            ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5571
        ]
2883
6cdb4a5a7b5e shift-delete - delete whiteSpace
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  5572
    ].
6cdb4a5a7b5e shift-delete - delete whiteSpace
Claus Gittinger <cg@exept.de>
parents: 2880
diff changeset
  5573
5119
1ba5fb52a0e3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  5574
    (rawKey == #Delete
870
c606f29db5d7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 865
diff changeset
  5575
     or:[key == #BasicDelete]) ifTrue:[
4129
34908a157d21 changed: #deleteCopyToClipboard:
fm
parents: 4126
diff changeset
  5576
        selectionStartLine notNil ifTrue:[  
4130
87d51f65430e changed: #doKeyPress:x:y:
fm
parents: 4129
diff changeset
  5577
"/          Again function is not supporting Delete action (on purpose, to avoid replacing the next search string)
87d51f65430e changed: #doKeyPress:x:y:
fm
parents: 4129
diff changeset
  5578
"/          To remove text repetetively, use Cut instead.
87d51f65430e changed: #doKeyPress:x:y:
fm
parents: 4129
diff changeset
  5579
"/            self setLastStringToReplace: self selection asStringWithoutFinalCR.
87d51f65430e changed: #doKeyPress:x:y:
fm
parents: 4129
diff changeset
  5580
"/            lastReplacementInfo lastReplacement: nil.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5581
            ((key == #BasicDelete)
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5582
            or:[currentUserPrefs deleteSetsClipboardText not]) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5583
                self deleteSelection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5584
            ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5585
                self copyAndDeleteSelection.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5586
            ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5587
            ^ self
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5588
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5589
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5590
        self deleteCharAtCursor.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5591
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5592
    ].
309
b5c9d68e95e1 new tabbing scheme (asking via #canTab); new focus change (passing explicit to showFocus/noFocus);
Claus Gittinger <cg@exept.de>
parents: 297
diff changeset
  5593
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5594
    (key == #BeginOfText) ifTrue:[     "i.e. HOME"
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5595
        self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5596
        cursorVisibleLine == 1 ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5597
            self cursorHome.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5598
        ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5599
            self cursorToFirstVisibleLine
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5600
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5601
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5602
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5603
    (key == #EndOfText) ifTrue:[       "i.e. END"
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5604
        self unselect.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5605
        cursorVisibleLine == nFullLinesShown ifTrue:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5606
            self cursorToBottom.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5607
        ] ifFalse:[
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5608
            self cursorToLastVisibleLine
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5609
        ].
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5610
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5611
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5612
    ((key == #Escape)
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5613
    or:[key == #SelectLineFromBeginning]) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5614
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5615
        self unselect. self selectCursorLineFromBeginning.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5616
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5617
    ].
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5618
    (key == #SelectLine) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5619
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5620
        self unselect. self selectCursorLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5621
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5622
    ].
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5623
    (key == #ExpandSelectionByLine) ifTrue:[
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  5624
        "/ self makeCursorVisible.
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5625
        self selectExpandCursorLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5626
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5627
    ].
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5628
    (key == #DeleteLine) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5629
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5630
        self unselect. self deleteCursorLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5631
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5632
    ].
3257
628e1e05814d shift-Tab fix.
Claus Gittinger <cg@exept.de>
parents: 3252
diff changeset
  5633
    (key == #InsertLine) ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5634
        self makeCursorVisible.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5635
        self unselect. self insertLine:nil before:cursorLine.
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  5636
        ^ self
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5637
    ].
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  5638
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5639
    super keyPress:key x:x y:y
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5640
3310
83368f9014a1 word check
Claus Gittinger <cg@exept.de>
parents: 3303
diff changeset
  5641
    "Modified: / 06-02-1998 / 11:59:59 / stefan"
4286
83ef1d9faf6d added: #convertSelectionToLowercaseOrUppercaseOrUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 4285
diff changeset
  5642
    "Modified: / 14-07-2011 / 12:08:28 / cg"
4978
0eb26aed1456 Fix for Ctrl-Shift-Left/Right (Shift-NextWord / PreviousWord)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4977
diff changeset
  5643
    "Modified: / 31-03-2014 / 16:27:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
121
claus
parents: 118
diff changeset
  5644
!
claus
parents: 118
diff changeset
  5645
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5646
executeKeyboardMacro:cmdMacro
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5647
    Error handle:[:ex |
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5648
        self warn:'Error in keyboard macro: ' , ex description.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5649
        ex return.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5650
    ] do:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5651
        AbortOperationRequest handle:[:ex |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5652
            self warn:'Keyboard macro aborted'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5653
            ex return.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5654
        ] do:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5655
            Parser
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5656
                evaluate:cmdMacro asString
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5657
                receiver:self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5658
                notifying:nil
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5659
                compile:false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5660
        ].
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5661
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5662
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5663
5340
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5664
extendSelectionToX:x y:y setPrimarySelection:aBoolean
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5665
    | movedVisibleLine movedLine movedCol movedUp |
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5666
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5667
    movedVisibleLine := self visibleLineOfY:y.
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5668
    movedLine := self visibleLineToAbsoluteLine:movedVisibleLine.
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5669
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5670
    (x < leftMargin) ifTrue:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5671
        movedCol := 0
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5672
    ] ifFalse:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5673
        movedCol := self colOfX:x inVisibleLine:movedVisibleLine
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5674
    ].
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5675
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5676
    "find out if we are before or after initial click"
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5677
    movedUp := false.
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5678
    (movedLine < (clickStartLine ? movedLine)) ifTrue:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5679
        movedUp := true
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5680
    ] ifFalse:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5681
        (movedLine == (clickStartLine ? movedLine)) ifTrue:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5682
            (movedCol < (clickStartCol ? movedCol)) ifTrue:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5683
                movedUp := true
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5684
            ]
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5685
        ]
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5686
    ].
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5687
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5688
    self hasSelection ifTrue:[ 
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5689
        movedUp ifTrue:[
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5690
            "/ Set cursor to selection start
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5691
            self setCursorLine: selectionStartLine col: selectionStartCol
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5692
        ] ifFalse:[ 
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5693
            "/ Set cursor to selection end
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5694
            self setCursorLine: selectionEndLine col: selectionEndCol + 1
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5695
        ].
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5696
    ].
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5697
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5698
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5699
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5700
    super extendSelectionToX:x y:y setPrimarySelection:aBoolean.
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5701
fcba05443013 Fixed cursor handling when selection is done by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5333
diff changeset
  5702
    "Created: / 02-05-2015 / 07:33:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5703
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5704
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5705
handleNonCommandKey:keyArg
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5706
    |selStartLineBefore selStartColBefore selEndLineBefore selEndColBefore key|
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5707
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5708
    self isReadOnly ifTrue:[
4988
9f6f620a1f06 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  5709
        self flashReadOnly.
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5710
        ^ self.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5711
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5712
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5713
    key := keyArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5714
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5715
    typeOfSelection == #paste ifTrue:[
4846
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5716
        "Pasted selection will NOT be replaced by keystroke (non-standard, St/X feature)"
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5717
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5718
        "/ After paste, the cursor is at the beginning to support
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5719
        "/ paste-cursordown-paste. Compensate for this here - we want
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5720
        "/ to continue editing after the end of the selection.
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5721
        "/ This is
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5722
        cursorLine := selectionEndLine.
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5723
        cursorCol := selectionEndCol + 1.
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5724
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5725
        "/ Cursor position set, we can unselect.
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5726
        self unselect.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5727
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5728
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5729
    selStartLineBefore := selectionStartLine.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5730
    selStartColBefore := self selectionStartCol.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5731
    selEndLineBefore := selectionEndLine.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5732
    selEndColBefore := self selectionEndCol.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5733
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  5734
    (gc characterEncoding ? #'iso10646-1') ~~ #'iso10646-1' ifTrue:[
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  5735
        key isCharacter ifTrue:[
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  5736
            key := CharacterEncoder encode:key from:#'iso10646-1' into:gc characterEncoding.
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  5737
        ] ifFalse:[
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  5738
            key := CharacterEncoder encodeString:key from:#'iso10646-1' into:gc characterEncoding.
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  5739
        ].
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5740
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5741
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5742
    "replace selection by what is typed in -
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5743
     if word was selected with a space, keep it.
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5744
     if there was no selection, the key's character is inserted"
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5745
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5746
    editMode value isInsertAndSelectMode ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5747
        selectionStartLine := selectionStartCol := selectionEndLine := selectionEndCol := nil.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5748
    ].
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5749
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5750
    (selectStyle == #wordLeft) ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5751
        self replaceSelectionBy:(' ' , key asString)
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5752
    ] ifFalse:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5753
        (selectStyle == #wordRight) ifTrue:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5754
            self replaceSelectionBy:(key asString , ' ').
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5755
            self cursorLeft
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5756
        ] ifFalse:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5757
            self replaceSelectionBy:key
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5758
        ]
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  5759
    ].
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5760
    selectStyle := nil.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5761
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5762
    editMode value isInsertAndSelectMode ifTrue:[
4700
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5763
        selectionStartLine := selStartLineBefore.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5764
        selectionStartCol := selStartColBefore.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5765
        selectionEndLine := selEndLineBefore.
150468a2ea5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4697
diff changeset
  5766
        selectionEndCol := selEndColBefore.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5767
    ].
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5768
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5769
    showMatchingParenthesis ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5770
        "emacs style parenthesis shower"
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5771
      (ExecutingMacroQuery query ? false) ifFalse:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5772
        "claus: only do it for closing parenthesis -
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5773
                otherwise its too anoying.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5774
        "
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5775
"
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  5776
        ('()[]{}' includes:key) ifTrue:[
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5777
"
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  5778
        (')]}' includes:key) ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5779
        self
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5780
            searchForMatchingParenthesisFromLine:cursorLine col:(cursorCol - 1)
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5781
            ifFound:[:line :col |
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5782
                         |savLine savCol sensor|
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5783
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5784
                         self withCursor:Cursor eye do:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5785
                             savLine := cursorLine.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5786
                             savCol := cursorCol.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5787
                             self cursorLine:line col:col.
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  5788
                             self flush.
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5789
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5790
                             "/ want to wait 200ms, but not if another keyPress
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5791
                             "/ arrives in the meantime ...
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5792
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5793
                             sensor := self sensor.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5794
                             5 timesRepeat:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5795
                                 (sensor hasKeyPressEventFor:self) ifFalse:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5796
                                     Processor activeProcess millisecondDelay:40.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5797
                                 ]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5798
                             ].
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5799
                             self cursorLine:savLine col:savCol
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5800
                         ]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5801
                    ]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5802
            ifNotFound:[self showNotFound]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5803
            onError:[self beep]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5804
        ].
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5805
      ]
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5806
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5807
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5808
"/    true "autoExpandWhileTyping" ifTrue:[
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5809
"/        self wordAtLine:cursorLine col:cursorCol-1 do:[
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5810
"/            :beginLine :beginCol :endLine :endCol :style |
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5811
"/
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5812
"/            self selectFromLine:beginLine col:beginCol toLine:endLine col:endCol.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5813
"/            self selection.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5814
"/            typeOfSelection := #paste.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  5815
"/        ].
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  5816
"/    ].
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5817
    editMode value isInsertAndSelectMode ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5818
        selectionStartLine isNil ifTrue:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5819
            self selectFromLine:cursorLine col:cursorCol-1 toLine:cursorLine col:cursorCol-1.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5820
        ] ifFalse:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5821
            self selectFromLine:selectionStartLine col:selectionStartCol toLine:cursorLine col:cursorCol-1.
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  5822
        ].
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  5823
    ].
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5824
    completionSupport notNil ifTrue:[ completionSupport postKeyPress:keyArg ].
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  5825
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  5826
    "Modified (comment): / 25-01-2012 / 00:30:11 / cg"
4846
cd2e0b754655 Fix for paster-keystroke: should insert character at the end of the just pasted selection,
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4845
diff changeset
  5827
    "Modified: / 30-08-2013 / 20:10:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5828
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5829
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5830
keyPress:key x:x y:y
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5831
    "handle keyboard input"
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5832
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  5833
    |wasOn|
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  5834
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  5835
    wasOn := cursorShown.
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  5836
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5837
    NoModificationError 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5838
        handle:[:ex |
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5839
            self flashReadOnly.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5840
            (cursorShown not and:[wasOn]) ifTrue:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5841
                self makeCursorVisibleAndShowCursor:wasOn.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5842
            ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5843
        ] 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5844
        do:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5845
            self undoableDo:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5846
                self doKeyPress:key x:x y:y
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5847
            ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5848
        ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5849
4242
93363c9c43cd changed: #keyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4238
diff changeset
  5850
    self repairDamage
93363c9c43cd changed: #keyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4238
diff changeset
  5851
93363c9c43cd changed: #keyPress:x:y:
Claus Gittinger <cg@exept.de>
parents: 4238
diff changeset
  5852
    "Modified: / 18-04-2011 / 21:35:27 / cg"
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  5853
    "Modified (format): / 30-04-2016 / 20:45:52 / cg"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5854
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5855
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5856
mapped
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5857
    "view was made visible"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5858
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5859
    super mapped.
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  5860
    self updateCursorVisibleLine.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5861
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5862
3268
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5863
requestAutoAccept
5068
3ad3eb432172 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5067
diff changeset
  5864
    "request to accept: this is invoked when a dialog closes via accept or cancel.
3ad3eb432172 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5067
diff changeset
  5865
     This forces my value to be accepted into my model.
3ad3eb432172 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5067
diff changeset
  5866
     Any widget may suppress the ok/cancel, by returning false."
3268
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5867
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5868
    acceptEnabled == false ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5869
        "/ nope -
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5870
        ^ false
3268
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5871
    ].
5404
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5872
    "/ cg: only do this if modified.
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5873
    "/ otherwise, users would have to make sure that the contents is
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5874
    "/ always correct (which they don't). If you change this back,
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5875
    "/ please check the expecco file-save or file-reimport dialog,
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5876
    "/ which has a problem with that behavior.
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5877
    self modified ifTrue:[
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5878
        self accept.
50b74416cbd4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5879
    ].
3268
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5880
    ^ true.
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5881
!
d30df22739ca move #requestAutoAccept from EditField to superclass EditTextView
Stefan Vogel <sv@exept.de>
parents: 3257
diff changeset
  5882
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5883
sizeChanged:how
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5884
    "make certain, cursor is visible after the sizechange"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5885
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5886
    |cv|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5887
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5888
    cv := cursorVisibleLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5889
    super sizeChanged:how.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5890
    cv notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  5891
        self makeLineVisible:cursorLine
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5892
    ]
4967
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5893
!
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5894
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5895
unmapped
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5896
    super unmapped.
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5897
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5898
    completionSupport notNil ifTrue:[
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5899
        completionSupport release.
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5900
    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5901
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5902
1807
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5903
!EditTextView methodsFor:'focus handling'!
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5904
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5905
focusOut
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5906
    super focusOut.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5907
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5908
    completionSupport notNil ifTrue:[
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5909
        completionSupport release.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5910
    ].
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5911
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5912
1807
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5913
hasKeyboardFocus:aBoolean
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5914
    "sent by the windowGroup, a delegate or myself to make me show a block cursor
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5915
     (otherwise, I would not know about this)"
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5916
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5917
    hasKeyboardFocus := aBoolean.
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5918
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  5919
    (cursorShown
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  5920
    and:[self enabled
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  5921
    and:[self isReadOnly not]]) ifTrue:[
4609
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5922
        self drawCursor
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5923
    ].
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5924
8b3eb80d04d0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4595
diff changeset
  5925
    hasKeyboardFocus ifFalse:[
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  5926
        completionSupport notNil ifTrue:[
4821
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5927
            "/ this is a hack for Windows:
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5928
            "/ on windows, an activate:false event is first sent to my textView,
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5929
            "/ then an activate is sent to the completion popup.
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5930
            "/ this is done BEFORE the buttonPress event is delivered.
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5931
            "/ therefore, allow for the activate of the completionMenu and it's button event to be processed.
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5932
            "/ before forcing it to be closed...
5773
ec46173c74e1 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5769
diff changeset
  5933
            completionSupport startTimeoutForEditViewLostFocus.
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  5934
        ].
1816
0b9380a0cc7e only take keyboardFocus (and show cursor)
Claus Gittinger <cg@exept.de>
parents: 1811
diff changeset
  5935
    ].
0b9380a0cc7e only take keyboardFocus (and show cursor)
Claus Gittinger <cg@exept.de>
parents: 1811
diff changeset
  5936
4821
b108cc2ff7e9 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4820
diff changeset
  5937
    "Modified (format): / 06-11-2013 / 15:37:31 / cg"
1807
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5938
!
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5939
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5940
showFocus:explicit
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5941
    "in addition to however my superclass thinks how a focusView is to be
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5942
     displayed, show the cursor when I got the focus"
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5943
5239
0312ca8fd55e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5226
diff changeset
  5944
    self hasKeyboardFocus:true.
1807
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5945
    self showCursor.
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5946
    super showFocus:explicit
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5947
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5948
    "Modified: 11.12.1996 / 16:56:54 / cg"
1918
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5949
!
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5950
4967
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5951
showNoFocus:explicit
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5952
    "the view lost the keyboard focus 
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5953
     (either explicit, via tabbing; or implicit, by pointer movement)
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5954
      - change any display attributes as req'd."
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5955
5af7718d4f2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4966
diff changeset
  5956
    super showNoFocus:explicit.
5149
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5957
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5958
    "/ cg: only do this for an explicit change (i.e. by tabbing),
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5959
    "/ not when the focus is lost normally (because this also happens when
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5960
    "/ the completion-menu is clicked on), and we don't want to kill the
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5961
    "/ completer. Otherwise, completion does not work when clocking into the list.
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5962
    explicit ifTrue:[
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5963
        completionSupport notNil ifTrue:[
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5964
            completionSupport release.
cc14f4e4157d class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5146
diff changeset
  5965
        ].
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5966
    ].
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5967
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  5968
1918
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5969
wantsFocusWithPointerEnter
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5970
    "return true, if I want the focus when
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5971
     the mouse pointer enters"
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5972
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  5973
    (UserPreferences current focusFollowsMouse ~~ false
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  5974
     and:[(styleSheet at:#'editText.requestFocusOnPointerEnter' default:true)
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  5975
     and:[self enabled
4781
11d53632e47e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4775
diff changeset
  5976
     and:[true "self isReadOnly not"]]]
4097
233d27a2b0a0 comment/format in: #wantsFocusWithPointerEnter
Claus Gittinger <cg@exept.de>
parents: 4089
diff changeset
  5977
    ) ifTrue:[
233d27a2b0a0 comment/format in: #wantsFocusWithPointerEnter
Claus Gittinger <cg@exept.de>
parents: 4089
diff changeset
  5978
        ^ true
1918
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5979
    ].
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5980
3ac07b97b4f7 use extra query: #wantsFocusWithPointerEnter;
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
  5981
    ^ false
1807
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5982
! !
30526cb1acfc category and comment
Claus Gittinger <cg@exept.de>
parents: 1804
diff changeset
  5983
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5984
!EditTextView methodsFor:'formatting'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  5985
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  5986
executekeyboardMacroNamed:macroName
4371
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5987
    "try to execute the keyboard macro; 
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5988
     return true if that worked, false otherwise"
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5989
4482
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5990
    |cmdMacro|
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5991
0530a2d95b4b class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4481
diff changeset
  5992
    cmdMacro := UserPreferences current functionKeySequences at:macroName ifAbsent:[^ false].
4371
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5993
    self
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5994
        undoableDo:[ self executeKeyboardMacro:cmdMacro ]
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5995
        info: macroName.
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  5996
    ^ true
4238
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5997
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  5998
    "
4483
5b71475eddbc class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4482
diff changeset
  5999
      EditTextView open
4238
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6000
                contents:'bla';
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6001
                selectAll;
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6002
                executekeyboardMacroNamed:#IndentBy4.
4483
5b71475eddbc class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4482
diff changeset
  6003
      EditTextView open
4238
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6004
                contents:'bla';
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6005
                selectAll;
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6006
                executekeyboardMacroNamed:#blabla.
5f7125996b44 changed:
Stefan Vogel <sv@exept.de>
parents: 4237
diff changeset
  6007
    "
4371
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  6008
a631db2025af changed: #executekeyboardMacroNamed:
Claus Gittinger <cg@exept.de>
parents: 4360
diff changeset
  6009
    "Modified: / 14-02-2012 / 11:17:27 / cg"
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6010
!
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6011
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6012
indent
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6013
    "indent a line-range - this is done by searching for the
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6014
     last non-empty line before the selection, and changing the indent
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6015
     of the selected line-range based on that line's indent."
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6016
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6017
    |start end|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6018
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6019
    selectionStartLine isNil ifTrue:[^ self].
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6020
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6021
    start := selectionStartLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6022
    end := selectionEndLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6023
    (selectionEndCol == 0) ifTrue:[
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6024
        end := end - 1
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6025
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6026
    self unselect.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  6027
    self
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6028
        undoableDo:[self indentFromLine:start toLine:end]
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6029
        info:'Indent'
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6030
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6031
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6032
indentBy4
5050
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6033
    self indentBy:4. "/ self executekeyboardMacroNamed:#IndentBy4.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6034
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6035
    "Modified: / 06-04-2011 / 18:52:40 / cg"
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6036
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6037
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6038
indentBy8
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6039
    self indentBy:8. "/ self executekeyboardMacroNamed:#IndentBy4.
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6040
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6041
    "Modified: / 06-04-2011 / 18:52:40 / cg"
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6042
!
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6043
5050
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6044
indentBy:n
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6045
    |line1 line2|
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6046
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6047
    line1 := self selectionStartLine.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6048
    line2 := self selectionEndLine.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6049
    line1 isNil ifTrue:[
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6050
        line1 := self cursorLine.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6051
        line1 notNil ifTrue:[
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6052
            line2 := line1+1
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6053
        ]
5769
32db0c4a851c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5761
diff changeset
  6054
    ] ifFalse:[
32db0c4a851c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5761
diff changeset
  6055
        line2 notNil ifTrue:[
32db0c4a851c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5761
diff changeset
  6056
            self selectionEndCol == 0 ifTrue:[ line2 := line2 - 1 ].
32db0c4a851c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5761
diff changeset
  6057
        ].                
32db0c4a851c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5761
diff changeset
  6058
    ].                
5050
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6059
    line1 notNil ifTrue:[
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6060
        self indentFromLine:line1 toLine:line2 by:n.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6061
    ]
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6062
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6063
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6064
indentByTab
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6065
    self indentBy:((tabPositions == self class tab4Positions) ifTrue:4 ifFalse:8)
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6066
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6067
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6068
indentFromLine:start toLine:end
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6069
    "indent a line-range - this is done by searching for the
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6070
     last non-empty line before start, and change the indent
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6071
     of the selected line-range based on that line's indent."
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6072
4811
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6073
    |leftStart delta|
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6074
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6075
    leftStart := self leftIndentForLine:start.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6076
    (leftStart == 0) ifTrue:[^ self].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6077
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6078
    delta := leftStart - (self leftIndentOfLine:start).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6079
    (delta == 0) ifTrue:[^ self].
4811
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6080
    self indentFromLine:start toLine:end by:delta
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6081
!
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6082
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6083
indentFromLine:start toLine:end by:delta
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6084
    "indent a line-range - this is done by searching for the
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6085
     last non-empty line before start, and change the indent
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6086
     of the selected line-range based on that line's indent."
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6087
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6088
    |d line spaces anyChange|
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6089
e868808b229e class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4803
diff changeset
  6090
    (delta == 0) ifTrue:[^ self].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6091
    (delta > 0) ifTrue:[
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6092
        spaces := String new:delta
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6093
    ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6094
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6095
    anyChange := false.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6096
    start to:end do:[:lineNr |
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6097
        line := self listAt:lineNr.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6098
        line notNil ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6099
            line isBlank ifTrue:[
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6100
                self basicListAt:lineNr put:nil
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6101
            ] ifFalse:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6102
                (delta > 0) ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6103
                    line := spaces , line.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6104
                    widthOfWidestLine notNil ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6105
                        widthOfWidestLine := widthOfWidestLine max:(self widthOfLineString:line).
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6106
                    ]
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6107
                ] ifFalse:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6108
                    "check if deletion is ok"
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6109
                    d := delta negated + 1.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6110
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6111
                    line size > d ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6112
                        (line copyTo:(d - 1)) withoutSeparators isEmpty ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6113
                            line := line copyFrom:d
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6114
                        ]
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6115
                    ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6116
                    widthOfWidestLine := nil
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6117
                ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6118
                self replaceLine:lineNr with:line.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6119
                anyChange := true.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6120
            ]
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6121
        ]
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6122
    ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6123
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6124
    anyChange ifTrue:[ self textChanged ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6125
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6126
    "/ self redrawFromLine:start to:end
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6127
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6128
    "Modified: 5.3.1996 / 14:59:18 / cg"
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6129
!
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6130
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6131
leftIndentForLine:lineNr
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6132
    "find an appropriate indent for a line.
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6133
     this is done by searching for the last non-empty line before it
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6134
     and returning its indent.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6135
     cg: changed: only look for the single previous line."
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6136
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6137
    "SHOULD GO TO ListView"
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6138
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6139
    |line lnr indent|
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6140
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6141
    lnr := lineNr.
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6142
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6143
    "/ [lnr ~~ 1] whileTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6144
    (lnr ~~ 1) ifTrue:[
4814
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6145
        lnr  := lnr - 1.
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6146
        line := self listAt:lnr.
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6147
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6148
        line notNil ifTrue:[
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6149
            indent := line indexOfNonSeparatorStartingAt:1.
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6150
            indent ~~ 0 ifTrue:[
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6151
                (line endsWith:$[) ifTrue:[
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6152
                    ^ indent + 4 - 1
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6153
                ].
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6154
                ^ indent - 1
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6155
            ]
6f9c85f3fbfb class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4812
diff changeset
  6156
        ]
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6157
    ].
827
6b42229252b9 reuse of basic editing functionality and thus change
ca
parents: 823
diff changeset
  6158
    ^ 0
474
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6159
f73ed1f5cb75 added autoIndent functionality
Claus Gittinger <cg@exept.de>
parents: 473
diff changeset
  6160
    "Created: 5.3.1996 / 14:58:53 / cg"
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6161
!
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6162
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6163
undentBy4
5050
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6164
    self undentBy:4. "/ self executekeyboardMacroNamed:#UndentBy4.
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6165
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6166
    "Modified: / 06-04-2011 / 18:52:49 / cg"
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6167
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6168
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6169
undentBy8
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6170
    self undentBy:8. "/ self executekeyboardMacroNamed:#UndentBy4.
4237
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6171
Claus Gittinger <cg@exept.de>
parents: 4226
diff changeset
  6172
    "Modified: / 06-04-2011 / 18:52:49 / cg"
5050
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6173
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6174
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6175
undentBy:n
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6176
    self indentBy:(n negated)
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6177
!
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6178
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6179
undentByTab
a1157f4a40ce class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5045
diff changeset
  6180
    self undentBy:((tabPositions == self class tab4Positions) ifTrue:4 ifFalse:8).
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  6181
! !
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  6182
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  6183
!EditTextView methodsFor:'initialization'!
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  6184
941
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6185
fetchDeviceResources
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6186
    "fetch device colors, to avoid reallocation at redraw time"
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6187
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6188
    super fetchDeviceResources.
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6189
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  6190
    cursorFgColor notNil ifTrue:[cursorFgColor := cursorFgColor onDevice:device].
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  6191
    cursorBgColor notNil ifTrue:[cursorBgColor := cursorBgColor onDevice:device].
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  6192
    cursorNoFocusFgColor notNil ifTrue:[cursorNoFocusFgColor := cursorNoFocusFgColor onDevice:device].
941
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6193
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6194
    "Created: 14.1.1997 / 00:15:24 / cg"
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  6195
    "Modified: 18.2.1997 / 15:02:46 / cg"
941
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6196
!
f06fa4d47f26 fetch device resources early
Claus Gittinger <cg@exept.de>
parents: 922
diff changeset
  6197
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6198
initEvents
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6199
    "enable enter/leave events in addition"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6200
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6201
    super initEvents.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6202
    self enableEnterLeaveEvents
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6203
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6204
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6205
initStyle
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6206
    "initialize style specific stuff"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6207
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6208
    super initStyle.
4576
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6209
    "/ lineSpacing := 2.       "/ for underwave - also looks better
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6210
    lockUpdates := false.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6211
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6212
    cursorFgColor := DefaultCursorForegroundColor.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6213
    cursorFgColor isNil ifTrue:[cursorFgColor := bgColor].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6214
    cursorBgColor := DefaultCursorBackgroundColor.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6215
    cursorBgColor isNil ifTrue:[cursorBgColor := fgColor].
4721
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6216
    cursorType isNil ifTrue:[cursorType := DefaultCursorType].
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6217
    cursorTypeNoFocus isNil ifTrue:[
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6218
        cursorTypeNoFocus := cursorType.
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6219
        DefaultCursorTypeNoFocus notNil ifTrue:[
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6220
            cursorTypeNoFocus := DefaultCursorTypeNoFocus.
59fc420ce5b0 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4715
diff changeset
  6221
        ]
1534
bcb211e1b41a read noFocus cursorStyle from styleSheet
Claus Gittinger <cg@exept.de>
parents: 1533
diff changeset
  6222
    ].
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  6223
    cursorNoFocusFgColor := DefaultCursorNoFocusForegroundColor.
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  6224
    cursorNoFocusFgColor isNil ifTrue:[
4576
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6225
        cursorType ~~ #block ifTrue:[
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6226
            cursorNoFocusFgColor := cursorBgColor
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6227
        ] ifFalse:[
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6228
            cursorNoFocusFgColor := cursorFgColor
c9d937d20173 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4566
diff changeset
  6229
        ]
1022
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  6230
    ].
4362861fe15e allow specification of noFocusCursor color in styleSheet.
Claus Gittinger <cg@exept.de>
parents: 1018
diff changeset
  6231
2088
b2beb67b1a98 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  6232
    "Modified: / 15.12.1999 / 22:27:45 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6233
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6234
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6235
initialize
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6236
    "initialize a new EditTextView;
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6237
     setup some instance variables"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6238
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6239
    super initialize.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6240
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6241
    self level:-1.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6242
    readOnly := false.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6243
    fixedSize := false.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6244
    exceptionBlock := [:errorText | ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6245
    cursorShown := prevCursorState := true.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6246
    cursorLine := 1.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6247
    cursorVisibleLine := 1.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6248
    cursorCol := 1.
5251
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6249
    cursorLineHolder := ValueHolder with:1.
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6250
    cursorColHolder := ValueHolder with:1.
2119
2aa585fc62a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2117
diff changeset
  6251
    modifiedChannel := ValueHolder with:false.
2aa585fc62a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2117
diff changeset
  6252
    acceptChannel := ValueHolder with:false.
1437
ab84b08a9f9c allow modified- and acceptChannels to be set.
Claus Gittinger <cg@exept.de>
parents: 1426
diff changeset
  6253
    acceptChannel addDependent:self.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6254
    showMatchingParenthesis := false.
3296
7322b2e5222c Allow for readOnly TextCollectors
Stefan Vogel <sv@exept.de>
parents: 3269
diff changeset
  6255
    hasKeyboardFocus := false.
323
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  6256
    tabMeansNextField := false.
5106
7376f2c47d5f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5104
diff changeset
  6257
    "/ autoIndent := UserPreferences current autoIndentInCodeView.
7376f2c47d5f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5104
diff changeset
  6258
    autoIndent := false.
5251
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6259
    editMode := ValueHolder with:EditMode insertMode.
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6260
    learnMode := ValueHolder with:false.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6261
    trimBlankLines := self st80EditMode not.
2131
858209ba8509 cursor movement default
Claus Gittinger <cg@exept.de>
parents: 2129
diff changeset
  6262
    cursorMovementWhenUpdating := #beginOfText.
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  6263
    lastReplacementInfo := LastReplacementInfo new.
1596
0bbdb4e9fc43 made st80Mode also an inst-flag;
Claus Gittinger <cg@exept.de>
parents: 1591
diff changeset
  6264
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6265
    "/ enable drop by default
2589
62794ae04446 support drop
ca
parents: 2580
diff changeset
  6266
    self allowDrop:true.        "/ readOnly tested in #canDrop:
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  6267
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  6268
    undoSupport := UndoSupport for:self.
5251
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6269
    codeAspectHolder := ValueHolder with:nil.
4803
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  6270
87d60a4b098b Added codeAspect to EditTextView to signify what's being edited.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4801
diff changeset
  6271
    "Modified: / 27-09-2013 / 09:41:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  6272
!
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  6273
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6274
initializeCompletionSupport
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6275
    |supportClass|
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6276
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6277
    completionSupport isNil ifTrue:[
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6278
        (supportClass := self completionSupportClass) notNil ifTrue:[
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6279
            completionSupport := supportClass for:self.            
4696
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  6280
        ].
428c8bc44cfb refactored codeCompletionService
Claus Gittinger <cg@exept.de>
parents: 4694
diff changeset
  6281
    ].
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6282
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6283
    "Created: / 26-09-2013 / 17:51:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6284
!
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6285
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6286
release
4801
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6287
    completionSupport notNil ifTrue:[
69a5bff7b5cd Completion support refactored:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4786
diff changeset
  6288
        completionSupport release
4771
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6289
    ].
109861cbb78c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4764
diff changeset
  6290
    super release
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  6291
! !
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  6292
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6293
!EditTextView methodsFor:'macros'!
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6294
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6295
executeLearnedKeyboardMacro
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6296
    "replay the characters as learned previously"
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6297
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6298
    (self learnMode not and:[learnedMacro size > 0]) ifTrue:[
3813
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6299
        ExecutingMacroQuery 
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6300
            answer:true
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6301
            do:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6302
                learnedMacro do:[:event |
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6303
                            WindowGroup lastEventQuerySignal answer:event
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6304
                            do:[
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6305
                                self
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6306
                                    dispatchEvent:event
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6307
                                    withFocusOn:nil
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6308
                                    delegate:false
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6309
                            ]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6310
                ]
8d719ca5812d dont show matching parents when executing a keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3811
diff changeset
  6311
            ].
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6312
    ] ifFalse:[
5153
7dfd1a447284 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5149
diff changeset
  6313
        self flash:'no macro'.
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6314
    ].
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6315
!
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6316
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6317
learnMode
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6318
    "true if currently learning"
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6319
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6320
    ^ (learnMode value ? false).
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6321
!
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6322
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6323
learnMode:aBoolean
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6324
    "toggle the learn-mode"
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6325
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6326
    |fg bg|
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6327
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6328
    self learnModeHolder value:aBoolean.
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6329
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6330
    aBoolean ifTrue:[
5795
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
  6331
        learnedMacro := OrderedCollection new.
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
  6332
        fg := self whiteColor.
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
  6333
        bg := self blackColor.
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6334
    ] ifFalse:[
5795
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
  6335
        cursorFgColor := fg := (DefaultCursorForegroundColor ? bgColor).
ee8125645546 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 5787
diff changeset
  6336
        cursorBgColor := bg := (DefaultCursorBackgroundColor ? fgColor).
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6337
    ].
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6338
    self cursorForegroundColor:fg backgroundColor:bg.
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6339
!
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6340
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6341
learnModeHolder
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6342
    "a holder returning true, if in learn mode"
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6343
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6344
    learnMode isNil ifTrue:[
5251
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  6345
        learnMode := ValueHolder with:false
2795
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6346
    ].
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6347
    ^ learnMode
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6348
!
1f7b5f242eee learnMode and insertMode as valueHolders
Claus Gittinger <cg@exept.de>
parents: 2792
diff changeset
  6349
4673
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6350
rememberLearnedMacroAs: nameString
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6351
    Macros isNil ifTrue:[
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6352
        Macros := Dictionary new.
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6353
    ].
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6354
    Macros at:nameString put:learnedMacro
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6355
!
575d2d398823 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4666
diff changeset
  6356
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6357
toggleLearnMode
3793
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6358
    "toggle the learn-mode"
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6359
5a6074a257c1 learnmode: also learn backspace !
Claus Gittinger <cg@exept.de>
parents: 3790
diff changeset
  6360
    self learnMode:(self learnMode not).
2580
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6361
! !
12fea7ffcf8e learn/execute on menu
Claus Gittinger <cg@exept.de>
parents: 2579
diff changeset
  6362
4449
59fe55c937ea changed: #openFileBrowserOnIt
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  6363
!EditTextView methodsFor:'menu & menu actions'!
121
claus
parents: 118
diff changeset
  6364
2680
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6365
babelFishTranslate:fromToModeString
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6366
    "translate the selected text and paste it after the selection"
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6367
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6368
    |original translated|
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6369
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6370
    original := self selectionAsString.
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6371
    original size == 0 ifTrue:[^ self].
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6372
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6373
    self withWaitCursorDo:[
4143
34d78a2ca94f changed: #babelFishTranslate:
Claus Gittinger <cg@exept.de>
parents: 4142
diff changeset
  6374
        (HostNameLookupError , SOAP::SoapImplError) handle:[:ex |
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6375
            Dialog warn:('Translation failed - WEB Service error:\\%1.' bindWith:ex description allBold) withCRs
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6376
        ] do:[
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6377
            translated := SOAP::BabelFishClient new translate:original mode:fromToModeString.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6378
        ]
2680
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6379
    ].
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6380
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6381
    "/ v pasteOrReplace:translated
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6382
    self cursorLine:(self selectionEndLine) col:(self selectionEndCol + 1).
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6383
    self unselect.
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6384
    self 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6385
        undoablePaste:translated 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6386
        info:'Translate'
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6387
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6388
    "Modified: / 28-07-2007 / 13:27:21 / cg"
2680
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6389
!
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6390
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6391
compareWithClipboard
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6392
    "compare the selection against the clipboard contents"
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6393
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6394
    |t1 t2|
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6395
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6396
    t2 := self getClipboardText.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6397
    t2 isEmptyOrNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6398
        Dialog information:'Clipboard is empty.'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6399
        ^ self.
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6400
    ].
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6401
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6402
    self hasSelection ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6403
        t1 := self selectionAsString.
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6404
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6405
        t1 := self contents asString
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6406
    ].
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6407
    t1 := t1 string.
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6408
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6409
    t1 = t2 ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6410
        Dialog information:'Strings are equal.'.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6411
        ^ self.
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6412
    ].
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6413
    DiffTextView
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6414
        openOn:t1 label:'Editor'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6415
        and:t2 label:'Clipboard'
3517
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6416
!
0a2f117c2fb8 +compare menu item
Claus Gittinger <cg@exept.de>
parents: 3514
diff changeset
  6417
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6418
copySelection
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6419
    "copy contents into smalltalk copybuffer.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6420
     Redefined to move the (currently hidden cursor) to the selection's end"
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6421
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6422
    self hasSelection ifTrue:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6423
        self setCursorLine:selectionEndLine col:selectionEndCol+1
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6424
    ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6425
    super copySelection.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6426
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6427
    "Created: / 30-04-2016 / 21:07:10 / cg"
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6428
!
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  6429
121
claus
parents: 118
diff changeset
  6430
cut
claus
parents: 118
diff changeset
  6431
    "cut selection into copybuffer"
claus
parents: 118
diff changeset
  6432
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6433
    self deleteCopyToClipboard:true
121
claus
parents: 118
diff changeset
  6434
!
claus
parents: 118
diff changeset
  6435
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6436
defaultForGotoLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6437
    "return a default value to show in the gotoLine box"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6438
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6439
    cursorLine notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  6440
        ^ cursorLine
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6441
    ].
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6442
    ^ super defaultForGotoLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6443
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  6444
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6445
deleteCopyToClipboard:toClipboard
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6446
    "cut selection into copybuffer"
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6447
4129
34908a157d21 changed: #deleteCopyToClipboard:
fm
parents: 4126
diff changeset
  6448
    |line col history sel |
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6449
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6450
    (self checkModificationsAllowed) ifFalse:[
4988
9f6f620a1f06 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  6451
        self flashReadOnly.
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6452
        ^ self
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6453
    ].
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6454
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6455
    sel := self selection.
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6456
    sel notNil ifTrue:[
4129
34908a157d21 changed: #deleteCopyToClipboard:
fm
parents: 4126
diff changeset
  6457
        self setLastStringToReplace: sel.
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  6458
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6459
        line := selectionStartLine.
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6460
        col := selectionStartCol.
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6461
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6462
        toClipboard ifTrue:[
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6463
            "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6464
             remember in CopyBuffer
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6465
            "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6466
            self setClipboardText:sel. "/ lastString.
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6467
        ].
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6468
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6469
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6470
         append to DeleteHistory (if there is one)
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6471
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6472
        history := Smalltalk at:#DeleteHistory.
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6473
        history notNil ifTrue:[
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6474
            history addAll:(sel asStringCollection).
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6475
            history size > 1000 ifTrue:[
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6476
                history := history copyFrom:(history size - 1000)
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6477
            ].
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6478
        ].
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6479
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6480
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6481
         now, delete it
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6482
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6483
        self 
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6484
            undoableDo:[self deleteSelection] 
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6485
            info:'Delete'.
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  6486
        lastReplacementInfo lastReplacement: nil
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6487
    ] ifFalse:[
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6488
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6489
         a cut without selection will search&cut again
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6490
        "
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6491
        self undoableDo:[
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6492
            self again
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6493
        ]
3324
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6494
    ]
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6495
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6496
    "Modified: / 5.4.1998 / 16:51:53 / cg"
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6497
!
1297aecf6699 delete does not (by default) update the clipboard
Claus Gittinger <cg@exept.de>
parents: 3313
diff changeset
  6498
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6499
editMenu
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6500
    "return the views middleButtonMenu"
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6501
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6502
    <resource: #keyboard (#Again #AgainForAll #Copy #Cut #Paste #Accept 
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6503
                          #Find #GotoLine #SaveAs #Print
3890
4c5c54cf856b +wrapLines
Claus Gittinger <cg@exept.de>
parents: 3886
diff changeset
  6504
                          #PasteFromHistory #Join #Wrap #Undo #Redo 
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6505
                          #ToggleAutoIndent #ToggleInsertMode 
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6506
                          #LearnKeyboardMacro #ExecuteKeyboardMacro )>
1261
bdb18f73205c resource flag: #menu -> #programMenu
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
  6507
    <resource: #programMenu>
1054
d699ecd13e60 menu resource
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  6508
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6509
    |items m sub translateItems sortItems miscItems toolItems subSub toolSub
3569
d3eec21d0ece also show \"what-would-be-done\" in redo item
Claus Gittinger <cg@exept.de>
parents: 3566
diff changeset
  6510
     transSub sortSub what undoIdx redoIdx sensor main mainItems|
1515
9e9b65bd6efb care for nil sensor
Claus Gittinger <cg@exept.de>
parents: 1495
diff changeset
  6511
2460
Claus Gittinger <cg@exept.de>
parents: 2438
diff changeset
  6512
    items := #(
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6513
                    ('Redo'             redo           Redo        )
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6514
                    ('Again (for All)'  multipleAgain  AgainForAll )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6515
                    ('-'                                        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6516
                    ('Search...'        search         Find     )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6517
                    ('Goto Line...'     gotoLine       GotoLine )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6518
                    ('-'                                        )
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6519
                    ('Tools'            tools                   )
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6520
                    ('Font...'           changeFont             )
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6521
                    ('Insert Unicode...' insertUnicode )
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6522
            ).
4213
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6523
    CharacterSetView notNil ifTrue:[
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6524
        items := items ,
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6525
                    #(
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6526
                        ('Special Characters...'    specialCharacters  OpenSpecialCharacterWindow )
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6527
                    ).
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6528
    ].
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6529
    items := items , #(
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6530
                    ('-'                                        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6531
                    ('Save As...'       save           SaveAs   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6532
                    ('Print'            doPrint        Print    )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6533
                    ('='                                        )
4213
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6534
                    ('Misc'             misc           ShiftCtrl) ).
2460
Claus Gittinger <cg@exept.de>
parents: 2438
diff changeset
  6535
2866
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6536
    miscItems := #(
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6537
                    ('AutoIndent \c'    autoIndent:                  ToggleAutoIndent )
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6538
                    ('InsertMode \c'    insertMode:                  ToggleInsertMode )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6539
                    ('-'                                        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6540
                    ('Paste Previous...'   pasteOrReplaceFromHistory PasteFromHistory )
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6541
                    ('Join Lines'       joinLines                    Join )
4388
558b4dbf5648 changed:
Claus Gittinger <cg@exept.de>
parents: 4373
diff changeset
  6542
                    ('Wrap Lines...'    wrapLines                    Wrap )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6543
                    ('-'                                        )
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6544
                    ('Learn Macro'      learnMode:                   LearnKeyboardMacro)
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6545
                    ('Execute Macro'    executeLearnedKeyboardMacro  ExecuteKeyboardMacro )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6546
                    ('-'                                        )
3811
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6547
                    ('Insert File...'           insertFile          )
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6548
                    ('Insert URL Contents...'   insertURL           )
3781
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6549
                    ('Insert new UUID'      insertUUID          )
36268d8303d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3780
diff changeset
  6550
                    ('Insert Date && Time'  insertDateAndTime   )
3732
30fde62d31e6 changed #editMenu
Claus Gittinger <cg@exept.de>
parents: 3731
diff changeset
  6551
                    ('-'                                        )
30fde62d31e6 changed #editMenu
Claus Gittinger <cg@exept.de>
parents: 3731
diff changeset
  6552
                    ('Insert File as String Literal...' insertFileAsStringLiteral  )
30fde62d31e6 changed #editMenu
Claus Gittinger <cg@exept.de>
parents: 3731
diff changeset
  6553
                    ('Paste as String Literal'          pasteAsStringLiteral       )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6554
                ).
4213
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6555
"/    CharacterSetView notNil ifTrue:[
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6556
"/        miscItems := miscItems ,
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6557
"/                    #(
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6558
"/                        ('-'                                        )
4213
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6559
"/                        ('Special Characters...'    specialCharacters  OpenSpecialCharacterWindow )
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6560
"/                        ('Font...'                  changeFont              )
4213
6045bffe7299 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4199
diff changeset
  6561
"/                    ).
5529
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6562
"/    ] ifFalse:[
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6563
"/        miscItems := miscItems ,
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6564
"/                #(
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6565
"/                    ('Font...'                  changeFont              )
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6566
"/"/                    ('Encoding...'      changeEncoding          )
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6567
"/                ).
0b33c7ac879d #FEATURE
Claus Gittinger <cg@exept.de>
parents: 5525
diff changeset
  6568
"/    ]. 
2866
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6569
2680
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6570
    translateItems := #(
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6571
                    ('English -> German'      (babelFishTranslate: 'en_de')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6572
                    ('English -> French'      (babelFishTranslate: 'en_fr')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6573
                    ('English -> Italian'     (babelFishTranslate: 'en_it')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6574
                    ('English -> Spanish'     (babelFishTranslate: 'en_es')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6575
                    ('English -> Portuguese'  (babelFishTranslate: 'en_pt')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6576
                    ('-'                                        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6577
                    ('German -> English'      (babelFishTranslate: 'de_en')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6578
                    ('French -> English'      (babelFishTranslate: 'fr_en')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6579
                    ('Italian -> English'     (babelFishTranslate: 'it_en')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6580
                    ('Spanish -> English'     (babelFishTranslate: 'es_en')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6581
                    ('Portuguese -> English'  (babelFishTranslate: 'pt_en')   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6582
              ).
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6583
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6584
    sortItems := #(
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6585
                    ('Lines'                            (sortSelection:ignoreCase: #lines false)        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6586
                    ('Lines by First Word'              (sortSelection:ignoreCase: #linesByFirstWord false)     )
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6587
                    ('Lines by n''th Word'              (sortSelection:ignoreCase: #linesByNthWord false)       )
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6588
                    ('Lines by n''th Number'            (sortSelection:ignoreCase: #linesByNthNumber false)     )
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6589
                    ('Lines by n''th Hex Number'        (sortSelection:ignoreCase: #linesByNthHexNumber false)     )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6590
                    ('Words'                            (sortSelection:ignoreCase: #words false)        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6591
                    ('-'                                                      )
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6592
                    ('Lines (ignore case)'               (sortSelection:ignoreCase: #lines true)         )
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6593
                    ('Lines by First Word (ignore case)' (sortSelection:ignoreCase: #linesByFirstWord true)      )
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6594
                    ('Lines by n''th Word (ignore case)' (sortSelection:ignoreCase: #linesByNthWord true)        )
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6595
                    ('Words (ignore case)'               (sortSelection:ignoreCase: #words true)         )
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  6596
                    ('-'                                                      )
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  6597
                    ('By Line Length'                    (sortSelection:ignoreCase: #linesByLength nil)         )
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  6598
                    ('Reverse'                           (sortSelection:ignoreCase: #reverse       nil)         )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6599
              ).
2680
208d99c47d7c babelFish service moved to editor
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  6600
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  6601
    toolItems := #(
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6602
                    ('Indent'                      indent                     )
4287
858f9e8961b6 changed: #editMenu
Claus Gittinger <cg@exept.de>
parents: 4286
diff changeset
  6603
                    ('Toggle Case'      convertSelectionToLowercaseOrUppercaseOrUppercaseFirst   ConvertSelectionToLowercaseOrUppercaseOrUppercaseFirst)
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6604
                    ('Sort'                        sort                       )
5370
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  6605
                    ('Split...'                    splitLinesAtCharacterOrString )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6606
                    ('-'                                                      )
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6607
                    ('Google Spell Check'          googleSpellingSuggestion   )
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6608
                    ('Builtin Spell Check'         internalSpellingSuggestion   )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6609
                    ('Translate'                   babelFishTranslate         )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6610
                    ('Compare with Clipboard...'   compareWithClipboard       )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6611
              ).
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  6612
3623
f99c70d99425 close door to fileBrowser and workspace
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  6613
    Smalltalk isStandAloneApp ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6614
        toolItems := toolItems , #(
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6615
                        ('-'                                                      )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6616
                        ('Open FileBrowser on It'      openFileBrowserOnIt        )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6617
                        ('Open Workspace with It'      openWorkspaceWithIt        )
5578
2aef3f3d1d9a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
  6618
                        ('Inspect Selected String'     inspectSelectedString      )
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6619
                  ).
3623
f99c70d99425 close door to fileBrowser and workspace
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  6620
    ].
f99c70d99425 close door to fileBrowser and workspace
Claus Gittinger <cg@exept.de>
parents: 3595
diff changeset
  6621
2460
Claus Gittinger <cg@exept.de>
parents: 2438
diff changeset
  6622
    sub := PopUpMenu itemList:items resources:resources performer:model.
2461
54d220735048 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2460
diff changeset
  6623
    sub receiver:self.
2460
Claus Gittinger <cg@exept.de>
parents: 2438
diff changeset
  6624
2919
Claus Gittinger <cg@exept.de>
parents: 2916
diff changeset
  6625
    toolSub := PopUpMenu itemList:toolItems resources:resources performer:model.
Claus Gittinger <cg@exept.de>
parents: 2916
diff changeset
  6626
    toolSub receiver:self.
Claus Gittinger <cg@exept.de>
parents: 2916
diff changeset
  6627
    sub subMenuAt:#tools put:toolSub.
Claus Gittinger <cg@exept.de>
parents: 2916
diff changeset
  6628
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6629
    transSub := PopUpMenu itemList:translateItems resources:resources performer:model.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6630
    transSub receiver:self.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6631
    toolSub subMenuAt:#babelFishTranslate put:transSub.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6632
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6633
    sortSub := PopUpMenu itemList:sortItems resources:resources performer:model.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6634
    sortSub receiver:self.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6635
    toolSub subMenuAt:#sort put:sortSub.
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  6636
2866
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6637
    subSub := PopUpMenu itemList:miscItems resources:resources performer:model.
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6638
    subSub receiver:self.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  6639
    subSub checkToggleAt:#autoIndent: put:autoIndent.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  6640
    subSub checkToggleAt:#insertMode: put:(self isInInsertMode).
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  6641
    subSub checkToggleAt:#learnMode: put:(self learnModeHolder value).
3907
e4be6bf71a98 Always Paste the Contents when Dropping a File
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  6642
2866
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6643
    sub subMenuAt:#misc put:subSub.
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  6644
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6645
    mainItems := #(
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6646
                    ('Undo'    undo             Undo   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6647
                    ('Again'   again            Again  )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6648
                    ('-'                               )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6649
                    ('Cut'     cut              Cut    )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6650
                    ('Copy'    copySelection    Copy   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6651
                    ('Paste'   pasteOrReplace   Paste  )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6652
                    ('-'                               )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6653
                    ('Accept'  accept           Accept )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6654
                    ('='                               )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6655
                    ('More'    others           Ctrl   )
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6656
              ).
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6657
    main := PopUpMenu itemList:mainItems resources:resources.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6658
    main subMenuAt:#others put:sub.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6659
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6660
    sensor := self sensor.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6661
    (sensor notNil and:[sensor ctrlDown]) ifTrue:[
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6662
       sensor shiftDown ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6663
            m := subSub
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6664
        ] ifFalse:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6665
            m := sub
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6666
        ]
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6667
    ] ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6668
        m := main
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6669
    ].
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6670
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6671
    "/ the 'Smalltalk at:' code is here to
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6672
    "/ avoid making the SOAP package a prerequisite for this package (libwidg)
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  6673
    (Smalltalk at:#'SOAP::GoogleClient') isNil ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6674
        "/ GoogleClient new spellingSuggestionOf: 'Smmalltlaak and Soaap'.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6675
        m disable:#googleSpellingSuggestion
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6676
    ].
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6677
    (Smalltalk at:#'RBSpellChecker') isNil ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6678
        m disable:#internalSpellingSuggestion
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6679
    ].
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6680
3811
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6681
    HTTPInterface isNil ifTrue:[
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6682
        m disableAll:#(insertURL)
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6683
    ].
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6684
1733
c5139b7402f0 use self isReadonly; readOnly may now be a valueHolder.
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
  6685
    self isReadOnly ifTrue:[
4475
ca13f24cb1f3 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4464
diff changeset
  6686
        m disableAll:#(accept undo again multipleAgain redo
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6687
                       paste pasteOrReplace pasteOrReplaceFromHistory
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6688
                       cut indent autoIndent: insertMode:
3811
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6689
                       insertFile insertFileAsStringLiteral insertURL
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6690
                       babelFishTranslate googleSpellingSuggestion sort
4475
ca13f24cb1f3 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4464
diff changeset
  6691
                       convertSelectionToLowercaseOrUppercaseOrUppercaseFirst 
4764
bf1d2ec07858 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4763
diff changeset
  6692
                       joinLines wrapLines insertUUID insertDateAndTime pasteAsStringLiteral
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6693
                       insertUnicode specialCharacters)
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6694
    ].
2817
7c82a9535b96 not ifTrue -> ifFalse
Claus Gittinger <cg@exept.de>
parents: 2815
diff changeset
  6695
    self hasSelectionForCopy ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6696
        m disable:#copySelection.
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6697
    ].
2416
56acdd9e31b5 lifted mkeyboardMacro handling from Workspace to EditTextView
Claus Gittinger <cg@exept.de>
parents: 2406
diff changeset
  6698
    self hasSelection ifFalse:[
5371
663c7bdd9fa8 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5370
diff changeset
  6699
        m disableAll:#(cut googleSpellingSuggestion babelFishTranslate openFileBrowserOnIt 
5578
2aef3f3d1d9a #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5571
diff changeset
  6700
                       openWorkspaceWithIt sort indent splitLinesAtCharacterOrString inspectSelectedString).
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  6701
    ] ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6702
        (Error handle:[:ex |
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6703
            ex return:false
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6704
        ] do:[
4042
2dac2f89e877 changed:
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  6705
            |fn|
2dac2f89e877 changed:
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  6706
            fn := self selectionAsString.
2dac2f89e877 changed:
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  6707
            fn asFilename exists or:[ fn withoutSeparators withoutQuotes asFilename exists ]
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6708
        ]) ifFalse:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6709
            m disableAll:#(openFileBrowserOnIt).
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6710
        ]
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6711
    ].
2569
b499c81c58ae added hasUndoAction query.
Claus Gittinger <cg@exept.de>
parents: 2560
diff changeset
  6712
    self hasUndoAction ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6713
        m disable:#undo.
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  6714
    ] ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6715
        what := undoSupport undoActionInfo.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6716
        what notNil ifTrue:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6717
            undoIdx := m indexOf:#undo.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6718
            m labelAt:undoIdx put:(resources string:'Undo (%1)' with:what).
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6719
        ]
1818
aa16d9b96e40 fixed cut to not compress multiple blanks.
Claus Gittinger <cg@exept.de>
parents: 1817
diff changeset
  6720
    ].
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  6721
    self hasRedoAction ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6722
        sub disable:#redo.
3569
d3eec21d0ece also show \"what-would-be-done\" in redo item
Claus Gittinger <cg@exept.de>
parents: 3566
diff changeset
  6723
    ] ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6724
        what := undoSupport redoActionInfo.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6725
        what notNil ifTrue:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6726
            redoIdx := sub indexOf:#redo.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6727
            sub labelAt:redoIdx put:(resources string:'Redo (%1)' with:what).
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6728
        ]
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  6729
    ].
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  6730
    self canAccept ifFalse:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6731
        m disable:#accept
1108
3d14bb6bceb7 added disableAccept
Claus Gittinger <cg@exept.de>
parents: 1082
diff changeset
  6732
    ].
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6733
    ^ m.
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6734
4388
558b4dbf5648 changed:
Claus Gittinger <cg@exept.de>
parents: 4373
diff changeset
  6735
    "Modified: / 01-03-2012 / 19:56:58 / cg"
428
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6736
!
6b0881b0bce1 changes for accelerator-display
Claus Gittinger <cg@exept.de>
parents: 400
diff changeset
  6737
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6738
getTextSelectionFromHistory
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6739
    |sel list box history|
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6740
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  6741
    history := device getCopyBufferHistory copy.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  6742
    list := history collect:[:entry |
4165
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6743
                |text shown|
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6744
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6745
                text := entry asString string asCollectionOfLines.
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6746
                shown := text detect:[:line| line notEmptyOrNil] ifNone:['      '].
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6747
                text size > 1 ifTrue:[
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6748
                    shown := shown,(resources string:' ... [%1 lines]' with:text size).
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6749
                ].
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6750
                shown
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6751
            ].
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6752
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6753
    box := ListSelectionBox
4165
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6754
                title:(resources string:'Clipboard History')
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6755
                okText:(resources string:'Paste')
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6756
                abortText:(resources string:'Cancel')
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6757
                list:list
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6758
                action:[:idx | idx notNil ifTrue:[sel := history at:idx]].
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6759
    box label:(resources string:'Select Previous Copybuffer String').
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6760
    box useIndex:true.
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6761
    box show.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  6762
    ^ sel.
4165
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6763
869b207a6964 changed: #getTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  6764
    "Modified: / 25-08-2010 / 22:02:14 / cg"
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6765
!
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6766
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6767
getTextSelectionOrTextSelectionFromHistory
2730
61a2f1981ac6 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2725
diff changeset
  6768
61a2f1981ac6 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2725
diff changeset
  6769
    self sensor shiftDown ifTrue:[
3855
8607bb2b8b6c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3825
diff changeset
  6770
        ^ self getTextSelectionFromHistory
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6771
    ].
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  6772
4285
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6773
    "/ return either the (xterm-) selection or the clipBoard depending on
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6774
    "/ the Ctrl-Key state.
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6775
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6776
    "/ ouch - this used to be ok for ALT-c / ALT-v,
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6777
    "/ but no longer works with CTRL-c / CTRL-v.
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6778
    ^ self getClipboardText:#clipboard
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6779
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6780
"/    ^ self
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6781
"/        getClipboardText:(self sensor ctrlDown
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6782
"/                            ifTrue:[#selection]
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6783
"/                            ifFalse:[#clipboard])
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6784
8487c7a8fab0 changed: #getTextSelectionOrTextSelectionFromHistory
Claus Gittinger <cg@exept.de>
parents: 4275
diff changeset
  6785
    "Modified: / 13-07-2011 / 14:55:58 / cg"
2544
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6786
!
48ab4ed67816 shift-paste: select pasted string from copyBuffer history
Claus Gittinger <cg@exept.de>
parents: 2540
diff changeset
  6787
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6788
googleSpellingSuggestion
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6789
    "insert the google-spelling suggestion for the selected text.
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6790
     Requires that the SOAP stuff is loaded and working."
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6791
2677
afb234f8b822 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2676
diff changeset
  6792
    |text suggestion|
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6793
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6794
    self withWaitCursorDo:[
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6795
        text := self selection asString string withoutSeparators.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6796
        text size == 0 ifTrue:[^ self].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6797
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6798
        "/ the 'Smalltalk at:' code is here to
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6799
        "/ avoid making the SOAP package a prerequisite for this package (libwidg)
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6800
        (Smalltalk at:#'SOAP::SoapImplError') handle:[:ex |
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6801
            Dialog warn:('Spelling correction failed - WEB Service error:\\%1.' bindWith:ex description allBold) withCRs.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6802
            ^ self.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6803
        ] do:[
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6804
            suggestion := (Smalltalk at:#'SOAP::GoogleClient') new spellingSuggestionOf:text.
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6805
        ].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6806
        suggestion size == 0 ifTrue:[
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6807
            self information:('No spelling suggestion from Google for: ' , text).
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6808
            Transcript showCR:('No spelling suggestion from Google for: ' , text).
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6809
            ^ self.
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6810
        ].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6811
    ].
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6812
    self 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6813
        undoablePaste:suggestion 
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6814
        info:'Spelling Suggestion'.
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6815
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6816
    "Modified: / 28-07-2007 / 13:25:10 / cg"
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6817
!
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6818
3595
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6819
insertDateAndTime
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6820
    "insert the curent date and time string"
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6821
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6822
    typeOfSelection := nil.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6823
    self
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6824
        undoableDo:[ self pasteOrReplace:(Timestamp now printStringRFC1123Format)]
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6825
        info:'Paste Date and Time'
3595
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6826
!
9277e3a4d2e9 paste date and time added
Claus Gittinger <cg@exept.de>
parents: 3583
diff changeset
  6827
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6828
insertFile
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  6829
    "insert contents of a file
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6830
     - ask user for filename using a fileSelectionBox."
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6831
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6832
    self insertFileAsStringLiteral:false
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6833
!
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6834
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6835
insertFileAsStringLiteral
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6836
    "insert a file's contents as a string literal.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6837
     Almost the same as the insert file, but single-quotes are doubled,
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6838
     to make it a legal string literal"
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6839
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6840
    self insertFileAsStringLiteral:true
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6841
!
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6842
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6843
insertFileAsStringLiteral:asStringLiteral
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6844
    "insert contents of a file; either as-is or as a string literal.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6845
     - ask user for filename using a fileSelectionBox."
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6846
3409
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6847
    |sel selFn file text ok initial|
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6848
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6849
    ((sel := self selectionAsString) notEmptyOrNil
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6850
    and:[ (selFn := sel asFilename) exists
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6851
    and:[ selFn isRegularFile ]])
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6852
    ifTrue:[
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6853
        initial := selFn pathName.
3409
d650e3ae9085 insert-file menu item cares for current selection being a filename
Claus Gittinger <cg@exept.de>
parents: 3406
diff changeset
  6854
    ].
2757
b98097eaf8dc Stc cannot handle thisContext restart in true-Block.
Stefan Vogel <sv@exept.de>
parents: 2756
diff changeset
  6855
b98097eaf8dc Stc cannot handle thisContext restart in true-Block.
Stefan Vogel <sv@exept.de>
parents: 2756
diff changeset
  6856
    [
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6857
        |why|
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6858
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6859
        file := Dialog
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6860
            requestFileName:(resources string:'Insert Contents Of:')
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6861
            default:initial
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6862
            ok:(resources string:'Insert')
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6863
            abort:(resources string:'Cancel')
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6864
            pattern:nil
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6865
            fromDirectory:directoryForFileDialog.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6866
        file isNil ifTrue:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6867
            "cancel"
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6868
            ^ self.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6869
        ].
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6870
        file := file asFilename.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6871
        directoryForFileDialog := file.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6872
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6873
        ok := file isReadable and:[file isDirectory not].
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6874
        ok ifFalse:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6875
            file isReadable ifFalse:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6876
                why := '%1 is unreadable.\\Please try again.'
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6877
            ] ifTrue:[
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6878
                why := '%1 is a directory.\\Please try again.'
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6879
            ].
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6880
            Dialog warn:(resources stringWithCRs:why with:file pathName).
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  6881
        ].
2909
a43e1343718f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2901
diff changeset
  6882
    ] doUntil:[ok].
2757
b98097eaf8dc Stc cannot handle thisContext restart in true-Block.
Stefan Vogel <sv@exept.de>
parents: 2756
diff changeset
  6883
5063
103ce513648a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5060
diff changeset
  6884
    text := file contentsAsString.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6885
    self
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6886
        undoableDo:[ self paste:(asStringLiteral ifTrue:[text storeString] ifFalse:[text]) ]
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6887
        info:'Paste File'
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6888
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6889
    "Modified: / 28-07-2007 / 13:23:32 / cg"
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6890
!
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6891
3811
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6892
insertURL
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6893
    "insert contents of a URL
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6894
     - ask user for URL using a dialog."
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6895
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6896
    self insertURLAsStringLiteral:false
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6897
!
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6898
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6899
insertURLAsStringLiteral:asStringLiteral
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6900
    "insert contents of a file; either as-is or as a string literal.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6901
     - ask user for filename using a fileSelectionBox."
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6902
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6903
    |sel url text response initial|
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6904
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6905
    (sel := self selectionAsString) notEmptyOrNil
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6906
    ifTrue:[
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6907
        initial := sel.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6908
    ].
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6909
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6910
    url := Dialog
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6911
        request:(resources string:'Insert Contents of URL:')
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6912
        initialAnswer:initial
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6913
        okLabel:(resources string:'Insert')
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6914
        title:(resources string:'URL').
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6915
    url isNil ifTrue:[
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6916
        "cancel"
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6917
        ^ self.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6918
    ].
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6919
    response := HTTPInterface get:url.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6920
    response isErrorResponse ifTrue:[
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6921
        Dialog warn:(resources string:'Could not fetch the document: %1' with:url).
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6922
        ^ self.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6923
    ].
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6924
    text := response data asString.
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6925
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6926
    self
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6927
        undoableDo:[ 
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6928
            self paste:(asStringLiteral ifTrue:[text storeString] ifFalse:[text]) 
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6929
        ]
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6930
        info:'Insert Contents of URL'
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6931
!
a56e6f74ee4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3801
diff changeset
  6932
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6933
insertUUID
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6934
    "insert a new UUID's string"
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6935
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6936
    typeOfSelection := nil.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  6937
    self
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  6938
        undoableDo:[ self pasteOrReplace:(UUID genUUID printString)]
3799
f6cbe8d860d5 code formatting
Claus Gittinger <cg@exept.de>
parents: 3793
diff changeset
  6939
        info:'Paste New UUID'
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6940
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  6941
    "Created: / 28-07-2007 / 13:01:16 / cg"
2676
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6942
!
cc61fa88a3fb google spelling;
Claus Gittinger <cg@exept.de>
parents: 2660
diff changeset
  6943
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6944
insertUnicode
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6945
    "open a Dialog requesting an integer value and insert it as unicode character"
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6946
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6947
    |unicodePoint unicodeChar unicodeString|
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6948
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6949
    unicodeString := Dialog request:'Enter unicode (U+01FF or decimal number):'.
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6950
    unicodeString size < 2 ifTrue:[
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6951
        ^ self.
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6952
    ].
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6953
    (unicodeString second = $+ and:['Uu' includes:unicodeString first]) ifTrue:[
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6954
        unicodePoint := Integer readFrom:(unicodeString copyFrom:3) radix:16 onError:[^ self].
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6955
    ] ifFalse:[
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6956
        unicodePoint := Integer readFrom:unicodeString onError:[^ self].
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6957
    ].
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6958
        
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6959
    unicodeChar := Character value:unicodePoint.
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6960
    self keyPress:unicodeChar x:0 y:0.
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6961
    self keyRelease:unicodeChar x:0 y:0.
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6962
!
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  6963
5331
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6964
inspectSelectedString
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6965
    "inspect the selected text"
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6966
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6967
    self selectionAsString inspect.
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6968
!
1d78ee0cb88b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5325
diff changeset
  6969
4742
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6970
internalSpellingSuggestion
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6971
    "insert the internal-spelling suggestion for the selected text.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6972
     Requires that the RefactoryBrowser/line/spelCheck stuff is loaded."
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6973
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6974
    |text suggestions best|
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6975
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6976
    self withWaitCursorDo:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6977
        text := self selection asString string withoutSeparators.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6978
        text size == 0 ifTrue:[^ self].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6979
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6980
        suggestions := RBSpellChecker default bestMatchesFor:text.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6981
        suggestions size == 0 ifTrue:[
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6982
            self information:('No spelling suggestion from builtin checker for: ' , text).
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6983
            Transcript showCR:('No spelling suggestion from builtin checker for: ' , text).
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6984
            ^ self.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6985
        ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6986
        Transcript showCR:suggestions.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6987
        best := suggestions first.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6988
    ].
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6989
    self 
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6990
        undoablePaste:best 
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6991
        info:'Spelling Suggestion'.
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6992
!
a00cb40ee392 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4738
diff changeset
  6993
4884
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  6994
openFileBrowserOnFileNamed:fileNameString
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  6995
    "open a fileBrowser on the given fileNameString"
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  6996
4630
b043ca9e5060 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4623
diff changeset
  6997
    |fn|
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  6998
4884
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  6999
    fn := fileNameString asFilename.
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  7000
    fn exists ifFalse:[
4884
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7001
        fn := fileNameString withoutSeparators withoutQuotes asFilename.
4042
2dac2f89e877 changed:
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  7002
        fn exists ifFalse:[
5082
57b4941c5788 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5068
diff changeset
  7003
            ^ self warn:(resources 
57b4941c5788 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5068
diff changeset
  7004
                            string:'Sorry - file "%1" was not found in directory "%2"' 
57b4941c5788 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5068
diff changeset
  7005
                            with:fn baseName allBold
57b4941c5788 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5068
diff changeset
  7006
                            with:fn directory baseName allBold).
4042
2dac2f89e877 changed:
Claus Gittinger <cg@exept.de>
parents: 4041
diff changeset
  7007
        ].
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  7008
    ].
4449
59fe55c937ea changed: #openFileBrowserOnIt
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  7009
    UserPreferences fileBrowserClass openOn:fn
59fe55c937ea changed: #openFileBrowserOnIt
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  7010
59fe55c937ea changed: #openFileBrowserOnIt
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  7011
    "Modified: / 06-09-2012 / 14:47:22 / cg"
2762
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  7012
!
e29673db4ddb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2757
diff changeset
  7013
4884
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7014
openFileBrowserOnIt
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7015
    "open a fileBrowser on the selected fileName"
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7016
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7017
    |fileNameString|
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7018
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7019
    fileNameString := self selectionAsString.
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7020
    self openFileBrowserOnFileNamed:fileNameString
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7021
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7022
    "Modified: / 06-09-2012 / 14:47:22 / cg"
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7023
!
9b12ee7ca951 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4829
diff changeset
  7024
3483
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7025
openWorkspaceWithIt
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7026
    "open a workspace containing the selected text"
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7027
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7028
    |text|
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7029
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7030
    text := self selectionAsString.
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7031
    WorkspaceApplication openWith:text selected:true
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7032
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7033
    "Created: / 26-05-2007 / 06:05:22 / cg"
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7034
!
8ef0f9a0737f +openWorkspaceWithSelection menu function
Claus Gittinger <cg@exept.de>
parents: 3482
diff changeset
  7035
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7036
paste
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7037
    "paste the copybuffer; if there is a selection, unselect first.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7038
     Then paste at cursor position."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7039
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7040
    self checkModificationsAllowed ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7041
        self withSelfAndTextForPasteDo:[:me :text |
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7042
            me unselect.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7043
            me undoablePaste:text
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7044
        ]
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  7045
    ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7046
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7047
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7048
paste:someText
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7049
    "paste someText at cursor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7050
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7051
    self paste:someText withCR:false
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7052
!
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7053
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7054
paste:someText withCR:withCR
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7055
    "paste someText at cursor"
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7056
2856
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7057
    |s nLines startLine startCol l1 l2 c1 c2 codingErrorReported|
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7058
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7059
    self checkModificationsAllowed ifFalse:[^ self].
2853
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7060
    someText isNil ifTrue:[^ self].
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7061
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7062
    s := someText.
2856
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7063
    codingErrorReported := false.
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7064
    CharacterEncoderError handle:[:ex |
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7065
        |code msg|
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7066
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7067
        code := ex parameter.
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7068
        codingErrorReported ifFalse:[
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  7069
            msg := 'Cannot represent pasted string in this Views encoding (',gc characterEncoding,').'.
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7070
            code notNil ifTrue:[
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7071
                msg := msg , '\\Reason: No representation for ' , (code radixPrintStringRadix:16).
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7072
            ].
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7073
            Dialog warn:(resources stringWithCRs:msg).
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7074
            codingErrorReported := true.
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7075
        ].
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7076
        ex proceedWith:ex defaultValue
2856
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7077
    ] do:[
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7078
        s isString ifTrue:[
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  7079
            s encoding ~~ gc characterEncoding ifTrue:[
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  7080
                s := s encodeFrom:(s encoding) into:gc characterEncoding.
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7081
            ].
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7082
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7083
            s := s asStringCollection.
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7084
            (someText endsWith:Character cr) ifTrue:[
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7085
                "/ s := s copyWith:nil.
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7086
                s := s copyWith:'' "/ an empty line at the end
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7087
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7088
            ]
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7089
        ] ifFalse:[
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7090
            s isStringCollection ifTrue:[
4940
73e7031a4a85 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4889
diff changeset
  7091
                s := s encodeFrom:(s encoding) into:gc characterEncoding.
3825
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7092
            ] ifFalse:[
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7093
                (self
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7094
                    confirm:(resources
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7095
                        stringWithCRs:'Selection (%1) is not convertable to Text.\\Paste storeString ?'
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7096
                        with:s class name)) ifFalse:[^ self].
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7097
                s := StringCollection with:s storeString .
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7098
                "/ ^ self
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7099
            ].
184c9b081973 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3816
diff changeset
  7100
        ].
2856
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7101
    ].
bc6bb86d4d2e character encodings - first attempt
Claus Gittinger <cg@exept.de>
parents: 2854
diff changeset
  7102
2853
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7103
    (nLines := s size) == 0 ifTrue:[^ self].
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7104
    (nLines == 1 and:[(s at:1) size == 0]) ifTrue:[^ self].
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7105
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7106
    typeOfSelection := #paste.
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7107
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7108
    startLine := l1 := cursorLine.
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7109
    startCol := c1 := cursorCol.
3180
609f340fd96c paste - do not expand tabs!
Michael Beyl <mb@exept.de>
parents: 3161
diff changeset
  7110
5194
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7111
    "do not autoindent here. 
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7112
     It does make things very ugly, in the inspector 
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7113
     (try inspecting a multiline string)..."
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7114
    self withAutoIndent:false do:[
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7115
        "do not expand tabs into spaces here -
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7116
         they get expanded in basicWithoutRedrawInsertStringWithoutCRs:aString atLine:lineNr col:colNr.
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7117
         Some Subviews want to paste with unexpanded tabs!!"
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7118
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7119
        self insertLines:s withCR:withCR.
24c790b5d279 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5153
diff changeset
  7120
    ].
2853
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7121
    l2 := cursorLine.
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7122
    c2 := (cursorCol - 1).
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7123
    self selectFromLine:l1 col:c1 toLine:l2 col:c2.
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7124
    typeOfSelection := #paste. "/ sigh - cleared by #selectFromLine:
4844
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7125
    "/ For Claus to support paste-cursordown-paste :-)
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7126
    "/ Move cursor the the beggining of the selection so subsequent
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7127
    "/ cursor move will start there.
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7128
    self setCursorLine: l1.
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7129
    self setCursorCol: c1.
2853
f8c1d3963b49 preps for character conversions (paste)
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
  7130
4328
ea91d179b5f0 changed:
Claus Gittinger <cg@exept.de>
parents: 4289
diff changeset
  7131
    "Modified: / 14-02-1996 / 11:14:14 / stefan"
4360
fe77e479d95a comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4328
diff changeset
  7132
    "Modified: / 25-01-2012 / 00:31:30 / cg"
4844
269a12794578 Selection refactoring, part 3: support for paste-cursordown-paste
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4843
diff changeset
  7133
    "Modified: / 30-08-2013 / 00:09:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7134
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7135
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7136
pasteAsStringLiteral
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7137
    "insert clipboard string as a string literal.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7138
     Almost the same as a normal paste, but single-quotes are doubled,
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7139
     to make it a legal string literal"
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7140
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7141
    typeOfSelection := nil.
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7142
    self
5107
0653fd82a0f4 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5106
diff changeset
  7143
        undoableDo:[ self pasteOrReplace:(self getClipboardText asString string storeString) ]
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  7144
        info:'Paste as String Literal'
3731
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7145
!
041b0c7ad557 +insert as literal
Claus Gittinger <cg@exept.de>
parents: 3725
diff changeset
  7146
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7147
pasteOrReplace
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7148
    "paste the copybuffer; if there is a selection, replace it.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  7149
     otherwise paste at cursor position.
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  7150
     Replace is not done for selections which were created by a paste,
2010
ca8dcc8723dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1993
diff changeset
  7151
     to allow multiple paste operations in a row."
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7152
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7153
    self withSelfAndTextForPasteDo:[:me :text | me pasteOrReplace:text]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7154
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7155
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7156
pasteOrReplace:someText
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7157
    "paste someText; if there is a selection, replace it.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7158
     otherwise paste at cursor position. Replace is not done
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7159
     for originating by a paste, to allow multiple
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7160
     paste."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7161
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7162
    self checkModificationsAllowed ifFalse:[^ self].
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7163
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7164
    self undoableDo:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7165
        ((self hasSelection == true) and:[typeOfSelection ~~ #paste]) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7166
            self replace:someText
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7167
        ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7168
            self paste:someText.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7169
        ]
3542
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  7170
    ] info:'Paste/Replace'.
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7171
2107
9d44232af0a0 textSelection fixes (added newLine) for MSDOS;
Claus Gittinger <cg@exept.de>
parents: 2101
diff changeset
  7172
    "Modified: / 30.1.2000 / 02:33:00 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7173
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7174
5387
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7175
pasteOrReplaceByKeyPress
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7176
    "paste a previous item from the copybuffer history.
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7177
     (i.e. repaste some previously deleted or copied text)"
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7178
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7179
    |text|
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7180
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7181
    self checkModificationsAllowed ifFalse:[
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7182
        self flashReadOnly.
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7183
        ^ self
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7184
    ].
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7185
    text := self getClipboardText:#clipboard.
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7186
    text notNil ifTrue:[
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7187
        self pasteOrReplace:text
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7188
    ]
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7189
!
b94d35da3ad6 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 5371
diff changeset
  7190
3474
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7191
pasteOrReplaceFromHistory
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7192
    "paste a previous item from the copybuffer history.
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7193
     (i.e. repaste some previously deleted or copied text)"
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7194
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7195
    |text|
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7196
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7197
    self checkModificationsAllowed ifFalse:[
4988
9f6f620a1f06 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  7198
        self flashReadOnly.
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7199
        ^ self
3474
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7200
    ].
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7201
    text := self getTextSelectionFromHistory.
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7202
    text notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7203
        self pasteOrReplace:text
3474
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7204
    ]
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7205
!
357e16440725 slight popupmenu reorganization
Claus Gittinger <cg@exept.de>
parents: 3473
diff changeset
  7206
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7207
replace
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7208
    "replace the selection by the contents of the copybuffer"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7209
3269
03d04670a5d2 replace is a no op, if there is no selection
Claus Gittinger <cg@exept.de>
parents: 3268
diff changeset
  7210
    self hasSelection ifFalse:[^ self].
03d04670a5d2 replace is a no op, if there is no selection
Claus Gittinger <cg@exept.de>
parents: 3268
diff changeset
  7211
    self checkModificationsAllowed ifFalse:[^ self].
03d04670a5d2 replace is a no op, if there is no selection
Claus Gittinger <cg@exept.de>
parents: 3268
diff changeset
  7212
03d04670a5d2 replace is a no op, if there is no selection
Claus Gittinger <cg@exept.de>
parents: 3268
diff changeset
  7213
    self withSelfAndTextForPasteDo:[:me :text |
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  7214
        me undoableDo:[ me replace:text ]
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  7215
        info:'Replace'
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  7216
    ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7217
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7218
121
claus
parents: 118
diff changeset
  7219
replace:someText
1289
e2dcc5fe612c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1287
diff changeset
  7220
    "replace the selection by someText"
121
claus
parents: 118
diff changeset
  7221
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  7222
    |selected selectedString
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  7223
     selStartLine selStartCol selEndLine selEndCol|
121
claus
parents: 118
diff changeset
  7224
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7225
    self checkModificationsAllowed ifFalse:[^ self].
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7226
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  7227
    self undoableDo:[
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7228
        selected := self selection.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7229
        selected isNil ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7230
            ^ self paste:someText
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7231
        ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7232
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7233
        self deleteSelection.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7234
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7235
        "take care, if we replace a selection without space by a word selected
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7236
         with one - in this case we usually do not want the space.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7237
         But, if we replace a word-selected selection by something without a
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7238
         space, we DO want the space added."
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7239
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7240
        selected size == 1 ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7241
            selectedString := selected at:1.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7242
        ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7243
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7244
        someText size == 1 ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7245
            |cutOffSpace addSpace replacement replacementString|
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7246
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7247
            cutOffSpace := false.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7248
            addSpace := false.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7249
            replacement := someText copyFrom:1.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7250
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7251
            selectedString notNil ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7252
                ((selectedString startsWith:' ') or:[selectedString endsWith:' ']) ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7253
                   "selection has no space"
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7254
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7255
                    ((selectStyle == #wordleft) or:[selectStyle == #wordRight]) ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7256
                        cutOffSpace := true
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7257
                    ]
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7258
                ] ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7259
                    addSpace := true
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7260
                ]
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7261
            ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7262
            replacementString := replacement at:1.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7263
            cutOffSpace ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7264
                (replacementString startsWith:' ') ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7265
                    replacementString := replacementString withoutSpaces
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7266
                ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7267
            ] ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7268
                selectStyle == #wordLeft ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7269
                    "want a space at left"
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7270
                    (replacementString startsWith:' ') ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7271
                        replacementString := replacementString withoutSpaces.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7272
                        replacementString := ' ' , replacementString
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7273
                    ]
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7274
                ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7275
                selectStyle == #wordRight ifTrue:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7276
                    "want a space at right"
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7277
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7278
                    (replacementString endsWith:' ') ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7279
                        replacementString := replacementString withoutSpaces.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7280
                        replacementString := replacementString , ' '
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7281
                    ]
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7282
                ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7283
            ].
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7284
            replacement at:1 put: replacementString.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7285
            self paste:replacement.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7286
        ] ifFalse:[
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7287
            self paste:someText
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7288
        ].
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7289
        self setLastStringToReplace: selectedString.
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7290
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  7291
        lastReplacementInfo lastReplacement: someText.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7292
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7293
        selStartLine := selectionStartLine.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7294
        selStartCol := self selectionStartCol.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7295
        selEndLine := selectionEndLine.
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  7296
        selEndCol := self selectionEndCol.
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  7297
    ]
3542
30ed44ed0178 +joinLines (CTRL-j);
Claus Gittinger <cg@exept.de>
parents: 3517
diff changeset
  7298
    info:'Replace'
362
3993ba6c31a0 Expand tabs before pasting a string.
Stefan Vogel <sv@exept.de>
parents: 331
diff changeset
  7299
1480
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7300
    "Modified: / 14.2.1996 / 10:37:02 / stefan"
eabb1848e2fa fixed insert at character position.
Claus Gittinger <cg@exept.de>
parents: 1476
diff changeset
  7301
    "Modified: / 5.4.1998 / 16:55:28 / cg"
121
claus
parents: 118
diff changeset
  7302
!
claus
parents: 118
diff changeset
  7303
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7304
searchReplace
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7305
    "search for a string - show a box to enter searchpattern
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7306
     replace for the found searchpattern or replace all searchpattern found to a new pattern - show  a box to enter replacepattern
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7307
     - currently no regular expressions are handled."
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7308
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7309
    |searchBox patternHolder replacePatternHolder caseHolder flag ign initialString bindings bldr search modal replace action|
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7310
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7311
    modal := false "(UserPreferences current searchDialogIsModal)".
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7312
    lastSearchDirection := #forward.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7313
    ign := lastSearchIgnoredCase ? LastSearchIgnoredCase ? true.
5251
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  7314
    caseHolder := ValueHolder with:ign.
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  7315
    patternHolder := ValueHolder with:''.
259d72b38bd7 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5244
diff changeset
  7316
    replacePatternHolder := ValueHolder with:''.
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7317
    lastSearchPattern notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7318
        initialString := lastSearchPattern
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7319
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7320
    self hasSelectionWithinSingleLine ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7321
        initialString := self selectionAsString
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7322
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7323
    initialString isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7324
        LastSearchPatterns size > 0 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7325
            initialString := LastSearchPatterns first
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7326
        ]
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7327
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7328
    initialString notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7329
        patternHolder value:initialString.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7330
        replacePatternHolder value:initialString.
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7331
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7332
    flag := true.
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7333
    search := [:fwd |
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7334
            self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7335
                search:patternHolder value
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7336
                ignoreCase:caseHolder value
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7337
                forward:fwd.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7338
        ].
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7339
    replace := [:all |
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7340
            self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7341
                replace:patternHolder value
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7342
                by:replacePatternHolder value
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7343
                all:all
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7344
                ignoreCase:caseHolder value
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7345
        ].
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7346
    bindings := IdentityDictionary new.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7347
    bindings at:#searchPattern put:patternHolder.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7348
    bindings at:#replacePattern put:replacePatternHolder.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7349
    modal ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7350
        bindings at:#nextAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7351
            put:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7352
                flag := true.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7353
                action := search.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7354
                searchBox doAccept.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7355
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7356
        bindings at:#prevAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7357
            put:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7358
                flag := false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7359
                action := search.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7360
                searchBox doAccept.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7361
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7362
        bindings at:#replaceAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7363
            put:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7364
                flag := false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7365
                action := replace.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7366
                searchBox doAccept.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7367
            ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7368
        bindings at:#replaceAllAction
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7369
            put:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7370
                flag := true.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7371
                action := replace.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7372
                searchBox doAccept.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7373
            ].
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7374
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7375
        bindings at:#nextAction put:[ search value:true. ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7376
        bindings at:#prevAction put:[ search value:false. ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7377
        bindings at:#replaceAction put:[ replace value:false. ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7378
        bindings at:#replaceAllAction put:[ replace value:true. ].
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7379
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7380
    bindings at:#ignoreCase put:caseHolder.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7381
    bindings at:#patternList put:LastSearchPatterns.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7382
    modal ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7383
        searchBox := SimpleDialog new.
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7384
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7385
        searchBox := ApplicationModel new.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7386
        searchBox createBuilder.
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7387
    ].
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7388
    searchBox resources:(self resources).
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7389
    bldr := searchBox builder.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7390
    bldr addBindings:bindings.
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7391
    searchBox allButOpenFrom:(self class searchReplaceDialogSpec).
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7392
    (bldr componentAt:#nextButton) cursor:(Cursor thumbsUp).
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7393
    (bldr componentAt:#prevButton) cursor:(Cursor thumbsUp).
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7394
    (bldr componentAt:#cancelButton) cursor:(Cursor thumbsDown).
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7395
    modal ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7396
        searchBox openDialog.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7397
        searchBox accepted ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7398
            action value:flag
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7399
        ].
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7400
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7401
        (bldr componentAt:#nextButton) isReturnButton:false.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7402
        (bldr componentAt:#cancelButton)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7403
            label:(resources string:'Close');
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7404
            action:[ searchBox closeRequest ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7405
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7406
        "/ searchBox masterApplication:self application.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7407
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7408
        self topView beMaster.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7409
        (searchBox window)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7410
            beSlave;
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7411
            openInGroup:(self windowGroup).
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7412
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7413
        "/ searchBox window open.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7414
5283
9c75aed7c274 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5260
diff changeset
  7415
        searchBox window assignKeyboardFocusToFirstKeyboardConsumer.
3430
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7416
    ]
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7417
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7418
    "Modified: / 11-07-2006 / 11:20:06 / fm"
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7419
!
1b0bc1af37e4 searchReplace
fm
parents: 3422
diff changeset
  7420
121
claus
parents: 118
diff changeset
  7421
showDeleted
claus
parents: 118
diff changeset
  7422
    "open a readonly editor on all deleted text"
claus
parents: 118
diff changeset
  7423
claus
parents: 118
diff changeset
  7424
    |v|
claus
parents: 118
diff changeset
  7425
claus
parents: 118
diff changeset
  7426
    v := EditTextView openWith:(Smalltalk at:#DeleteHistory).
1733
c5139b7402f0 use self isReadonly; readOnly may now be a valueHolder.
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
  7427
    v readOnly:true.
121
claus
parents: 118
diff changeset
  7428
    v topView label:'deleted text'.
2624
22d352e56c27 preps for special characters
Claus Gittinger <cg@exept.de>
parents: 2617
diff changeset
  7429
!
22d352e56c27 preps for special characters
Claus Gittinger <cg@exept.de>
parents: 2617
diff changeset
  7430
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7431
sort:how ignoreCase:ignoreCase fromLine:start toLine:end
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7432
    "sort/reorder the selected lines.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7433
     how:
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7434
        #lines
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7435
        #linesByFirstWord
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7436
        #linesByNthWord
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7437
        #linesByNthNumber
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7438
        #linesByNthHexNumber
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7439
        #words
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7440
        #linesByLength
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7441
        #reverse
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7442
    "
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7443
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7444
    |lines extractor innerExtractor fetcher operation lineWise nStr n s words|
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7445
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7446
    lineWise := true.
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7447
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7448
    how == #reverse ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7449
        operation := [:lines | lines reverse].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7450
    ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7451
        operation := [:linesOrWords |
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7452
                        linesOrWords sort:[:item1 :item2 | (fetcher value:item1) < (fetcher value:item2)]
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7453
                     ].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7454
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7455
        how == #linesByLength ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7456
            fetcher := [:l | l size].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7457
        ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7458
            how == #lines ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7459
                extractor := [:l | l withoutLeadingSeparators].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7460
            ] ifFalse:[ 
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7461
                how == #linesByFirstWord ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7462
                    extractor := [:l | ((l asCollectionOfWords select:[:w | w isEmpty or:[w first isLetterOrDigit]]) at:1 ifAbsent:'')].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7463
                ] ifFalse:[ 
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7464
                    ((how == #linesByNthWord) or:[ how == #linesByNthNumber  or:[ how == #linesByNthHexNumber]]) ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7465
                        nStr := Dialog request:'Word/Column (1..)' initialAnswer:(LastColumnNumberForSort ? 2).
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7466
                        nStr isEmptyOrNil ifTrue:[^ self].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7467
                        n := Integer readFrom:nStr onError:[^ self].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7468
                        LastColumnNumberForSort := n.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7469
                        extractor := [:l | ((l string asCollectionOfWords) at:n ifAbsent:'')].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7470
                        how == #linesByNthNumber ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7471
                            innerExtractor := extractor.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7472
                            extractor := [:l | Integer readFrom:(innerExtractor value:l) onError:0]
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7473
                        ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7474
                            how == #linesByNthHexNumber ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7475
                                innerExtractor := extractor.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7476
                                extractor := [:l | 
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7477
                                    |s|                                 
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7478
                                    s := innerExtractor value:l.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7479
                                    (s startsWith:'16r') ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7480
                                        (Integer readSmalltalkSyntaxFrom:s) ? 0
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7481
                                    ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7482
                                        Integer readFrom:s radix:16 onError:[ 0 ]
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7483
                                    ]
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7484
                                ]
4753
4e4aeb12d41f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  7485
                            ]
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7486
                        ].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7487
                    ] ifFalse:[ 
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7488
                        how == #words ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7489
                            lineWise := false.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7490
                            extractor := [:w | w].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7491
                        ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7492
                            self error:'unknown sort criteria: ', how printString.
4753
4e4aeb12d41f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  7493
                        ]
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7494
                    ]
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7495
                ]
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7496
            ].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7497
            ignoreCase ifTrue:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7498
                fetcher := [:l | (extractor value:l) asLowercase].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7499
            ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7500
                fetcher := extractor.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7501
            ].
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7502
        ].
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7503
    ].
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7504
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7505
    lineWise ifTrue:[
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7506
        "process the lines of the selection (aka a collection of lines)"
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7507
        start == end ifTrue:[^ self ].
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7508
        lines := (start to:end) collect:[:lineNr | (self listAt:lineNr) ? ''].
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7509
        lines := operation value:lines.
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7510
        (start to:end) with:lines do:[:lineNr :line | self replaceLine:lineNr with:line].
4763
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7511
    ] ifFalse:[
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7512
        "process the whole selection as a string"
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7513
        s := self selectionAsString.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7514
        words := s asCollectionOfWords.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7515
        words := operation value:words.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7516
        s := words asStringCollection asStringWith:Character space.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7517
        self replace:s.
89bf20c2e8f5 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4753
diff changeset
  7518
    ].
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7519
    self textChanged.
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7520
4414
308d40ee857b changed: #sort:ignoreCase:fromLine:toLine:
Claus Gittinger <cg@exept.de>
parents: 4396
diff changeset
  7521
    "Modified: / 31-03-2012 / 10:59:28 / cg"
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7522
!
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7523
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7524
sortSelection:how ignoreCase:ignoreCase
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7525
    "sort the selected lines"
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7526
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7527
    |start end|
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7528
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7529
    selectionStartLine isNil ifTrue:[^ self].
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7530
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7531
    start := selectionStartLine.
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7532
    end := selectionEndLine.
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7533
    (selectionEndCol == 0) ifTrue:[
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  7534
        end := end - 1
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7535
    ].
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7536
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7537
    self
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7538
        undoableDo:[ 
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7539
            self sort:how ignoreCase:ignoreCase fromLine:start toLine:end 
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7540
        ]
3786
11145773de65 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3782
diff changeset
  7541
        info:'Sort'
4373
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7542
22fb03e6d08a class definition
Claus Gittinger <cg@exept.de>
parents: 4371
diff changeset
  7543
    "Modified (format): / 15-02-2012 / 16:52:53 / cg"
3221
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7544
!
12028ba1582d sort functions
Claus Gittinger <cg@exept.de>
parents: 3190
diff changeset
  7545
2624
22d352e56c27 preps for special characters
Claus Gittinger <cg@exept.de>
parents: 2617
diff changeset
  7546
specialCharacters
2915
8db67a5d1ccb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  7547
    CharacterSetView
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7548
        openAsInputFor:self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7549
        label:'Special Character Input'
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7550
        clickLabel:'Click to Insert Character'.
2866
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  7551
!
9dd71df46f73 specialCharacters menu item
Claus Gittinger <cg@exept.de>
parents: 2857
diff changeset
  7552
5370
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7553
splitLinesAtCharacterOrString
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7554
    "ask user for the character and split after it"
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7555
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7556
    |sel in out separator record|
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7557
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7558
    selectionStartLine isNil ifTrue:[^ self].
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7559
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7560
    separator := Dialog request:(resources string:'Split selected lines after which separator character or string:').
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7561
    separator isEmptyOrNil ifTrue:[^ self].
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7562
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7563
    sel := self selectionAsString.
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7564
    in := sel readStream.
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7565
    out := CharacterWriteStream on:(String new).
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7566
    [in atEnd] whileFalse:[
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7567
        record := in throughAll:separator.
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7568
        out nextPutLine:record.
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7569
    ].
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7570
    self
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7571
        undoableDo:[ 
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7572
            self replaceSelectionBy:(out contents).
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7573
        ]
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7574
        info:'Split Selection'
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7575
!
9b04537dc868 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5367
diff changeset
  7576
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7577
undoablePaste:someText
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7578
    self undoablePaste:someText info:nil.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7579
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7580
    "Modified: / 28-07-2007 / 13:25:46 / cg"
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7581
!
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7582
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7583
undoablePaste:someText info:infoOrNil
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7584
    self
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7585
        undoableDo:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7586
            self paste:someText.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7587
        ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7588
        info:infoOrNil
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7589
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7590
    "Created: / 28-07-2007 / 13:25:30 / cg"
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7591
!
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7592
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7593
undoablePasteOrReplace:someText info:infoOrNil
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  7594
    self
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7595
        undoableDo:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7596
            self pasteOrReplace:someText.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7597
        ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7598
        info:infoOrNil
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7599
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  7600
    "Created: / 28-07-2007 / 13:26:16 / cg"
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7601
!
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  7602
4114
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7603
undoablePasteReplacingAll:someText info:infoOrNil
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7604
    self
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7605
        undoableDo:[
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7606
            self selectAll.
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7607
            self pasteOrReplace:someText.
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7608
        ]
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7609
        info:infoOrNil
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7610
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7611
    "Created: / 28-07-2007 / 13:25:30 / cg"
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7612
!
321416257cc5 added: #undoablePasteReplacingAll:info:
Claus Gittinger <cg@exept.de>
parents: 4110
diff changeset
  7613
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7614
withSelfAndTextForPasteDo:aBlock
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7615
    "common code for paste/replace of the copybuffer"
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7616
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7617
    |sel|
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7618
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7619
    self checkModificationsAllowed ifFalse:[
4988
9f6f620a1f06 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4967
diff changeset
  7620
        self flashReadOnly.
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7621
        ^ self
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7622
    ].
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7623
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7624
    sel := self getTextSelectionOrTextSelectionFromHistory.
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7625
    sel notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7626
        aBlock value:self value:sel.
2724
23f4e16dc4f4 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2720
diff changeset
  7627
    ]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  7628
! !
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  7629
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7630
!EditTextView methodsFor:'private'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7631
3880
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7632
beep
5244
261cf00fc93b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5239
diff changeset
  7633
    "output an audible beep or bell on my screen device"
261cf00fc93b class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5239
diff changeset
  7634
3880
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7635
    UserPreferences current beepInEditor ifTrue:[                
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7636
        super beep
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7637
    ]
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7638
!
d8882158de6b beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 3868
diff changeset
  7639
331
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  7640
checkModificationsAllowed
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7641
    "check if the text can be modified (i.e. is not readOnly).
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7642
     evaluate the exceptionBlock if not.
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7643
     This block should be provided by the application or user of the textView,
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7644
     and may show a warnBox or whatever."
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7645
1733
c5139b7402f0 use self isReadonly; readOnly may now be a valueHolder.
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
  7646
    self isReadOnly ifTrue: [
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7647
        exceptionBlock isNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7648
            ^ false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7649
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7650
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7651
        (exceptionBlock value:'Text may not be modified') ~~ true ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7652
            ^ false
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7653
        ]
331
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  7654
    ].
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  7655
    ^ true
1300
be8b356b2e59 first attempt in providing an ST80 (or vi)
Claus Gittinger <cg@exept.de>
parents: 1296
diff changeset
  7656
1577
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  7657
    "Modified: / 17.6.1998 / 15:51:10 / cg"
331
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  7658
!
c58f0c52d2d7 made modifiedFlag a channels value (allows change notifications to be sent);
Claus Gittinger <cg@exept.de>
parents: 324
diff changeset
  7659
2596
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7660
currentSelectionBgColor
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7661
    typeOfSelection == #paste ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7662
        ^ DefaultAlternativeSelectionBackgroundColor ? selectionBgColor
2596
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7663
    ].
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7664
    "/ hasKeyboardFocus ifFalse:[^ Color lightGrey]. 
2596
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7665
    ^ super currentSelectionBgColor
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7666
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7667
    "
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7668
     DefaultAlternativeSelectionBackgroundColor := Color yellow blendWith:Color green
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7669
    "
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7670
!
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7671
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7672
currentSelectionFgColor
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7673
    typeOfSelection == #paste ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7674
        ^ DefaultAlternativeSelectionForegroundColor ? selectionFgColor
2596
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7675
    ].
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7676
    ^ super currentSelectionFgColor
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7677
!
933689d5bd9c alternative selection color
Claus Gittinger <cg@exept.de>
parents: 2589
diff changeset
  7678
3996
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7679
resetVariablesBeforeNewSearch
4451
71e8b21c63ce comment in: #resetVariablesBeforeNewSearch
Claus Gittinger <cg@exept.de>
parents: 4449
diff changeset
  7680
    "clear the autosearch action, when the first pattern is searched for"
3996
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7681
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7682
    super resetVariablesBeforeNewSearch.
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7683
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7684
    "/ new search invalidates remembered string
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  7685
    lastStringFromReplaceForNextSearch := nil.
4451
71e8b21c63ce comment in: #resetVariablesBeforeNewSearch
Claus Gittinger <cg@exept.de>
parents: 4449
diff changeset
  7686
71e8b21c63ce comment in: #resetVariablesBeforeNewSearch
Claus Gittinger <cg@exept.de>
parents: 4449
diff changeset
  7687
    "Modified (comment): / 07-03-2012 / 23:21:06 / cg"
3996
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7688
!
d0b0d69334ed added: #resetVariablesBeforeNewSearch
fm
parents: 3982
diff changeset
  7689
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7690
setLastStringToReplace: aString
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7691
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7692
    "This method will set the information coming from the last replace into the replacementInfo"
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7693
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7694
    |lastReplaceIgnoredCase|
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7695
4064
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7696
    "/ The searchAction is mantained until a cut/replace or a search with a user selection is done
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7697
    self clearSearchAction.
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7698
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7699
    lastReplacementInfo lastStringToReplace: aString.
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7700
    lastStringFromReplaceForNextSearch := aString.
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7701
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7702
    "If the replace came after a search, the next replace will have the ignored case from that search action"
4107
3881490b98f0 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
  7703
    lastReplaceIgnoredCase := (typeOfSelection == #search) 
3881490b98f0 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
  7704
                                ifTrue: [lastSearchIgnoredCase] 
3881490b98f0 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
  7705
                                ifFalse: [nil].
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7706
    lastReplacementInfo lastReplaceIgnoredCase: lastReplaceIgnoredCase.
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7707
!
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  7708
2647
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
  7709
st80EditMode
5255
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  7710
    "If on, the cursor wraps at the line end (like in vi or st80);
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  7711
     if off, we have the Rand-editor behavior (random access)"
c24842bec834 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5251
diff changeset
  7712
2647
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
  7713
    ^ st80Mode ? (UserPreferences current st80EditMode)
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
  7714
!
23dca8f032c3 changed st80Mode from classVar to userPreferences value
Claus Gittinger <cg@exept.de>
parents: 2627
diff changeset
  7715
2225
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7716
suppressEmphasisInSelection
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7717
    "selection is shown without emphasis"
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7718
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7719
    ^ true
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7720
!
65ac7cbffc60 added suppressEmphasisInSelection handling
Claus Gittinger <cg@exept.de>
parents: 2213
diff changeset
  7721
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7722
textChanged
522
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  7723
    "my text was modified (internally).
aa9458e4643e indent/undent did not trigger a modify
ca
parents: 503
diff changeset
  7724
     Sent whenever text has been edited (not to confuse with
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7725
     contentsChanged, which is triggered when the size has changed, and
4635
6218b92cce91 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  7726
     is used to notify scrollers, other views etc.).
6218b92cce91 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  7727
6218b92cce91 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  7728
     As some authors of this code have been very sloppy in tha past 
6218b92cce91 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  7729
     (not sending contentsChanged, but textChanged),
6218b92cce91 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  7730
     we do it here despite what is written above, to ensure that scrollers update correctly."
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7731
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  7732
    self contentsChanged.
1015
caf7265128b9 clear modified on accept.
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
  7733
    self modified:true.
5774
3a1531b4c933 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5773
diff changeset
  7734
    dependents notNil ifTrue:[ self changed:#textChanged ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7735
    contentsWasSaved := false
641
a8bd4e31c060 minor cleanups
Claus Gittinger <cg@exept.de>
parents: 632
diff changeset
  7736
1015
caf7265128b9 clear modified on accept.
Claus Gittinger <cg@exept.de>
parents: 1013
diff changeset
  7737
    "Modified: 14.2.1997 / 16:58:38 / cg"
2207
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7738
!
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7739
2617
a9b1af787406 typo on method name
Claus Gittinger <cg@exept.de>
parents: 2606
diff changeset
  7740
textChangedButNoSizeChange
2207
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7741
    "my text was modified (internally).
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7742
     Sent whenever text has been edited (not to confuse with
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7743
     contentsChanged, which is triggered when the size has changed, and
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7744
     is used to notify scrollers, other views etc.)"
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7745
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7746
    self modified:true.
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7747
    contentsWasSaved := false
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7748
80ca02ca0111 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2205
diff changeset
  7749
    "Modified: 14.2.1997 / 16:58:38 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7750
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7751
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7752
!EditTextView methodsFor:'queries'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7753
5216
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7754
canAccept
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7755
    "true if text can be accepts.
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7756
     Used to disable the menu if there is nothing selector or the text is readonly"
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7757
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7758
    ^ acceptEnabled ~~ false
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7759
!
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7760
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7761
canCut
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7762
    "true if there is a selection possibly to be cut.
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7763
     Used to disable the menu if there is nothing selector or the text is readonly"
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7764
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7765
    self isReadOnly ifTrue:[ ^ false ].
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7766
    ^ self hasSelection
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7767
!
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7768
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7769
canDoAgain
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7770
    "true if there is a possible repeat last edit operation.
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7771
     Used to disable the menu if there is nothing"
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7772
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7773
    |lastStringToReplace|
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7774
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7775
    self isReadOnly ifTrue:[ ^ false ].
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7776
    lastStringToReplace := lastReplacementInfo lastStringToReplace.
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7777
    ^ lastStringToReplace notNil
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7778
!
8d6eef5d09c3 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5194
diff changeset
  7779
1526
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7780
currentLine
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7781
    "the current line (for relative gotos)"
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7782
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7783
    ^ cursorLine
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7784
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7785
    "Created: / 17.5.1998 / 20:07:52 / cg"
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7786
!
7676f301bb8f added #currentLine (req'd for relative gotos)
Claus Gittinger <cg@exept.de>
parents: 1515
diff changeset
  7787
4064
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7788
hasSearchActionSelection
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7789
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7790
    ^ typeOfSelection == #searchAction
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7791
!
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  7792
1878
d93809bda6c8 added #isKeyboardConsumer
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  7793
isKeyboardConsumer
d93809bda6c8 added #isKeyboardConsumer
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  7794
    "return true, if the receiver is a keyboard consumer;
5283
9c75aed7c274 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5260
diff changeset
  7795
     Return true here if not readOnly, redefined from SimpleView."
1878
d93809bda6c8 added #isKeyboardConsumer
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  7796
3476
41dde91ae706 isKeyboardConsumer: returns false if readOnly
ca
parents: 3474
diff changeset
  7797
    ^ self isReadOnly not
1878
d93809bda6c8 added #isKeyboardConsumer
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  7798
!
d93809bda6c8 added #isKeyboardConsumer
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  7799
997
615a5a19c5bf specClass
ca
parents: 991
diff changeset
  7800
specClass
1390
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  7801
    "redefined, since the name of my specClass is nonStandard (i.e. not EditTextSpec)"
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  7802
997
615a5a19c5bf specClass
ca
parents: 991
diff changeset
  7803
    self class == EditTextView ifTrue:[^ TextEditorSpec].
1049
24360c8891d6 specClass query
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  7804
    ^ super specClass
24360c8891d6 specClass query
Claus Gittinger <cg@exept.de>
parents: 1037
diff changeset
  7805
1390
99674e1d9c85 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1355
diff changeset
  7806
    "Modified: / 31.10.1997 / 19:48:19 / cg"
997
615a5a19c5bf specClass
ca
parents: 991
diff changeset
  7807
!
615a5a19c5bf specClass
ca
parents: 991
diff changeset
  7808
324
9eec6d69e155 better Tab key handling
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
  7809
tabMeansNextField
323
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  7810
    "return true, if a Tab character should shift focus."
58102e6bc087 added tabMeansNextField instVar & method (ST-80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 313
diff changeset
  7811
313
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  7812
    "if not readOnly, I want my tab keys ..."
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  7813
1733
c5139b7402f0 use self isReadonly; readOnly may now be a valueHolder.
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
  7814
    ^ self isReadOnly or:[tabMeansNextField]
324
9eec6d69e155 better Tab key handling
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
  7815
9eec6d69e155 better Tab key handling
Claus Gittinger <cg@exept.de>
parents: 323
diff changeset
  7816
    "Created: 7.2.1996 / 19:15:31 / cg"
313
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  7817
!
7c799cd68343 only replace selection by return, if it was not created by a paste
Claus Gittinger <cg@exept.de>
parents: 309
diff changeset
  7818
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7819
widthOfContents
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7820
    "return the width of the contents in pixels
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7821
     Redefined to add the size of a space (for the cursor).
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7822
     this enables us to scroll one position further than the longest
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7823
     line (and possibly see the cursor behind the line)"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7824
697
0f258f02e8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
  7825
    |w dev|
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7826
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7827
    w := super widthOfContents.
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  7828
    (dev := device ) isNil ifTrue:[
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  7829
        "/ really don't know ...
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7830
        dev := Screen current
606
682579fa3b62 fixed #widthOfContents if no device is known
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  7831
    ].
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  7832
    ^ w + (gc font widthOn:dev)
697
0f258f02e8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
  7833
0f258f02e8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 693
diff changeset
  7834
    "Modified: 28.5.1996 / 19:32:25 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7835
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7836
1588
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7837
!EditTextView methodsFor:'realization'!
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7838
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7839
realize
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7840
    "make the view visible - scroll to make the cursor visible."
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7841
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7842
    super realize.
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7843
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7844
    self makeCursorVisible.
5643
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  7845
    cursorFgColor := cursorFgColor onDevice:device.
921578f80870 device access
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  7846
    cursorBgColor := cursorBgColor onDevice:device.
1588
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7847
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7848
    "Modified: 20.12.1996 / 14:16:05 / cg"
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7849
    "Created: 24.7.1997 / 18:24:12 / cg"
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7850
! !
e2e4ceeed3da category change
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
  7851
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7852
!EditTextView methodsFor:'redrawing'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7853
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7854
redrawCursorIfBetweenVisibleLine:startVisLine and:endVisLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7855
    "redraw the cursor, if it sits in a line range"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7856
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7857
    cursorShown ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7858
        cursorVisibleLine notNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7859
            (cursorVisibleLine between:startVisLine and:endVisLine) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7860
                self drawCursorCharacter
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7861
            ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7862
        ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7863
    ]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  7864
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  7865
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7866
redrawCursorIfInVisibleLine:visLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7867
    "redraw the cursor, if it sits in visible line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7868
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7869
    cursorShown ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7870
        (visLine == cursorVisibleLine) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7871
            self drawCursorCharacter
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7872
        ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7873
    ]
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7874
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7875
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7876
redrawFromVisibleLine:startVisLine to:endVisLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7877
    "redraw a visible line range"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7878
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7879
    super redrawFromVisibleLine:startVisLine to:endVisLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7880
    self redrawCursorIfBetweenVisibleLine:startVisLine and:endVisLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7881
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7882
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7883
redrawVisibleLine:visLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7884
    "redraw a visible line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7885
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7886
    super redrawVisibleLine:visLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7887
    self redrawCursorIfInVisibleLine:visLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7888
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7889
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7890
redrawVisibleLine:visLine col:colNr
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7891
    "redraw the single character in visibleline at colNr"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7892
3510
4bd0b20bd05d cursor-only redrawing, with vertical-insertion cursor
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
  7893
    super redrawVisibleLine:visLine col:colNr.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7894
    cursorShown ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7895
        (visLine == cursorVisibleLine) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7896
            (colNr == cursorCol) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7897
                self drawCursorCharacter.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7898
                ^ self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7899
            ]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7900
        ]
3510
4bd0b20bd05d cursor-only redrawing, with vertical-insertion cursor
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
  7901
    ].
4bd0b20bd05d cursor-only redrawing, with vertical-insertion cursor
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
  7902
4bd0b20bd05d cursor-only redrawing, with vertical-insertion cursor
Claus Gittinger <cg@exept.de>
parents: 3495
diff changeset
  7903
    "Modified: / 05-11-2007 / 17:35:53 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7904
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7905
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7906
redrawVisibleLine:visLine from:startCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7907
    "redraw a visible line from startCol to the end of line"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7908
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7909
    super redrawVisibleLine:visLine from:startCol.
4494
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  7910
    cursorShown ifTrue:[
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  7911
        self redrawCursorIfInVisibleLine:visLine
dfe81ebdd5d6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4492
diff changeset
  7912
    ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7913
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7914
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7915
redrawVisibleLine:visLine from:startCol to:endCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7916
    "redraw a visible line from startCol to endCol"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7917
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7918
    super redrawVisibleLine:visLine from:startCol to:endCol.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7919
    self redrawCursorIfInVisibleLine:visLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7920
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7921
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7922
!EditTextView methodsFor:'scrolling'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7923
2331
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7924
additionalMarginForHorizontalScroll
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7925
    "return the number of pixels by which we may scroll more than the actual
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7926
     width of the document would allow.
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7927
     This is redefined by editable textViews, to allo for the cursor
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7928
     to be visible if it is positioned right behind the longest line of text.
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7929
     The default returned here is 10 pixels, which should be ok for most cursors"
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7930
4889
3ee5b37416a1 class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4884
diff changeset
  7931
    ^ 10 max:gc font width
2331
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7932
!
218a017dc1f3 additional scroll-margin can be redefined
Claus Gittinger <cg@exept.de>
parents: 2323
diff changeset
  7933
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7934
halfPageDown
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7935
    "half a page down - to keep cursor on same visible line, it has to be moved
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7936
     within the real text  "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7937
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7938
    |prevCursorLine|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7939
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7940
    prevCursorLine := cursorVisibleLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7941
    super halfPageDown.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7942
    self cursorVisibleLine:prevCursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7943
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7944
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7945
halfPageUp
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7946
    "half a page up - to keep cursor on same visible line, it has to be moved
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7947
     within the real text  "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7948
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7949
    |prevCursorLine|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7950
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7951
    prevCursorLine := cursorVisibleLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7952
    super halfPageUp.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7953
    self cursorVisibleLine:prevCursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7954
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7955
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7956
originChanged:delta
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7957
    "sent after scrolling - have to show the cursor if it was on before"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7958
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7959
    super originChanged:delta.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7960
    "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7961
     should we move the cursor with the scroll - or leave it ?
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7962
    "
2422
aaef7f02402c added cursorLine/Col holders;
Claus Gittinger <cg@exept.de>
parents: 2417
diff changeset
  7963
    self updateCursorVisibleLine.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7964
    prevCursorState ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7965
        self showCursor
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7966
    ]
1577
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  7967
4e487247ad33 dont care for cursor when scrolling
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  7968
    "Modified: / 17.6.1998 / 16:13:24 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7969
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7970
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7971
originWillChange
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7972
    "sent before scrolling - have to hide the cursor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7973
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7974
    prevCursorState := cursorShown.
1601
57dde4dfee7e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1599
diff changeset
  7975
    "/ cursorShown := false.
1591
d84c117e71cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1590
diff changeset
  7976
    cursorShown ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  7977
        self hideCursor
1591
d84c117e71cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1590
diff changeset
  7978
    ]
d84c117e71cc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1590
diff changeset
  7979
1601
57dde4dfee7e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1599
diff changeset
  7980
    "Modified: / 6.7.1998 / 13:07:23 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7981
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7982
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7983
pageDown
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7984
    "page down - to keep cursor on same visible line, it has to be moved
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7985
     within the real text  "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7986
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7987
    |prevCursorLine|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7988
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7989
    prevCursorLine := cursorVisibleLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7990
    super pageDown.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7991
    self cursorVisibleLine:prevCursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7992
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7993
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7994
pageUp
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7995
    "page up - to keep cursor on same visible line, it has to be moved
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7996
     within the real text  "
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7997
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7998
    |prevCursorLine|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  7999
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8000
    prevCursorLine := cursorVisibleLine.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8001
    super pageUp.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8002
    self cursorVisibleLine:prevCursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8003
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8004
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8005
!EditTextView methodsFor:'searching'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8006
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8007
searchBwd:pattern ifAbsent:aBlock
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8008
    "do a backward search"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8009
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8010
    self searchBwd:pattern ignoreCase:false ifAbsent:aBlock
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8011
!
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8012
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8013
searchBwd:pattern ignoreCase:ign ifAbsent:aBlock
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8014
    "do a backward search"
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8015
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8016
    cursorLine isNil ifTrue:[^ self].
4464
bbdc850e9d93 search protocol changed to pass down a searchSpec instead
Claus Gittinger <cg@exept.de>
parents: 4458
diff changeset
  8017
    super searchBwd:pattern ignoreCase:ign ifAbsent:aBlock
3580
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8018
!
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8019
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8020
searchBwd:pattern ignoreCase:ign startingAtLine:startLine col:startCol ifAbsent:aBlock
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8021
    "do a backward search"
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8022
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8023
    cursorLine isNil ifTrue:[^ self].
c9d10df2b8bc StringSearchTool
fm
parents: 3578
diff changeset
  8024
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8025
    self
4119
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8026
        searchBackwardFor:pattern
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8027
        ignoreCase:ign
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8028
        startingAtLine:startLine col:startCol
5717
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8029
        ifFound:[:line :col :endColOrNil |
4119
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8030
            self cursorMovementAllowed ifTrue:[
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8031
                self cursorLine:line col:col.
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8032
            ].
5717
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8033
            self showMatch:pattern isMatch:false atLine:line col:col endCol:endColOrNil.
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8034
"/            self makeLineVisible:cursorLine
4119
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8035
            typeOfSelection := #search]
90acc0c0d5f4 comment/format in: #again
fm
parents: 4117
diff changeset
  8036
        ifAbsent:aBlock
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8037
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8038
    "Modified: 9.10.1997 / 13:02:13 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8039
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8040
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8041
searchForAndSelectMatchingParenthesis
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8042
    "select characters enclosed by matching parenthesis if one is under cusor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8043
2554
ec6aca20825f refactored
Claus Gittinger <cg@exept.de>
parents: 2544
diff changeset
  8044
    self searchForAndSelectMatchingParenthesisFromLine:cursorLine col:cursorCol
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8045
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8046
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8047
searchForMatchingParenthesis
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8048
    "search for a matching parenthesis starting at cursor position.
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8049
     Search for the corresponding character is done forward if its an opening,
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8050
     backwards if its a closing parenthesis.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8051
     Positions the cursor if found, peeps if not"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8052
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8053
    self cursorMovementAllowed ifFalse:[^ self].
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8054
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8055
    self
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8056
        searchForMatchingParenthesisFromLine:cursorLine col:cursorCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8057
        ifFound:[:line :col | self cursorLine:line col:col]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8058
        ifNotFound:[self showNotFound]
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8059
        onError:[self beep]
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8060
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8061
    "Modified: 9.10.1997 / 12:56:30 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8062
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8063
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8064
searchFwd:pattern ignoreCase:ign match: match startingAtLine:startLine col:startCol ifAbsent:aBlock
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8065
    "do a forward search"
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8066
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8067
    cursorLine isNil ifTrue:[^ self].
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8068
    self 
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8069
        searchForwardFor:pattern 
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8070
        ignoreCase:ign
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8071
        match: match
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8072
        startingAtLine:startLine col:startCol
5717
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8073
        ifFound:[:line :col :endColOrNil|
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8074
            self cursorMovementAllowed ifTrue:[
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8075
                self cursorLine:line col:col.
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8076
            ].
5717
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8077
            self showMatch:pattern isMatch:match atLine:line col:col endCol:endColOrNil.
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8078
"/            self makeLineVisible:cursorLine
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8079
            typeOfSelection := #search
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8080
        ]
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8081
        ifAbsent:aBlock
1339
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8082
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8083
    "Modified: 9.10.1997 / 12:57:47 / cg"
41b5e743d78a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1334
diff changeset
  8084
    "Created: 9.10.1997 / 13:01:12 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8085
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8086
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8087
searchFwd:pattern ignoreCase:ign startingAtLine:startLine col:startCol ifAbsent:aBlock
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8088
    "do a forward search"
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8089
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8090
    self searchFwd:pattern ignoreCase:ign match: false startingAtLine:startLine col:startCol ifAbsent:aBlock
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8091
!
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8092
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8093
searchFwd:pattern startingAtLine:startLine col:startCol ifAbsent:aBlock
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8094
    "do a forward search"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8095
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8096
    self searchFwd:pattern ignoreCase:false startingAtLine:startLine col:startCol ifAbsent:aBlock
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8097
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8098
3982
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8099
searchPatternForSearchBar
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8100
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8101
    "Returns the next searchPattern from the user selection or from the autoSearch"
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8102
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8103
    |searchPattern|
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8104
4138
fm
parents: 4136
diff changeset
  8105
    searchPattern := self searchPatternFromUserSelectionOrReplace.
3982
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8106
    searchPattern isNil 
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8107
        ifTrue: [searchPattern := lastSearchPattern]
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8108
        ifFalse: [lastSearchPattern := searchPattern].
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8109
    ^ searchPattern
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8110
!
79e6af2d27b1 fixes in searchBar
fm
parents: 3976
diff changeset
  8111
3578
9d43beca1e85 searchForward with match argument
fm
parents: 3572
diff changeset
  8112
setSearchPatternWithMatchEscapes: match
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8113
    "set the searchpattern from the selection if there is one, and position
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8114
     cursor to start of pattern"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8115
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8116
    |sel|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8117
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8118
    "/
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8119
    "/ if the last operation was a replace, set pattern to last
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8120
    "/ original string (for search after again)
4121
9232089c04c2 comment/format in: #setSearchPatternWithMatchEscapes:
fm
parents: 4119
diff changeset
  8121
    "/ for cut or delete actions allow lastReplacement with nil
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8122
    "/
4249
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8123
"/    (lastStringFromReplaceForNextSearch notNil
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8124
"/     and:[typeOfSelection ~~ #search]) ifTrue:[
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8125
"/        lastStringFromReplaceForNextSearch isString ifTrue:[
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8126
"/            lastSearchPattern := lastStringFromReplaceForNextSearch.
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8127
"/        ] ifFalse:[
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8128
"/            lastSearchPattern := lastStringFromReplaceForNextSearch asStringWithoutFinalCR.
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8129
"/        ].
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8130
"/        ^ self
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8131
"/    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8132
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8133
    "/
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8134
    "/ if there is a selection:
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8135
    "/    if there was no previous search, take it as search pattern.
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8136
    "/    if there was a previous search, only take the selection if
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8137
    "/    it did not result from a paste or from the last search itself.
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8138
    "/    (to allow search-paste to be repeated)
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8139
    "/
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8140
    sel := self selection.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8141
    sel notNil ifTrue:[
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8142
        (lastSearchPattern isNil
4484
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8143
        or:[typeOfSelection ~~ #paste and:[typeOfSelection ~~ #search]]
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8144
        ) ifTrue:[
3967
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8145
            self cursorLine:selectionStartLine col:selectionStartCol.
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8146
            lastSearchPattern := sel asStringWithoutFinalCR.
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8147
            match ifTrue:[lastSearchPattern := lastSearchPattern withMatchEscapes].
64bc48cd8e8b do not take search string from selection
fm
parents: 3963
diff changeset
  8148
        ]
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8149
    ]
559
3ff87e9447c6 keep searchPattern after a paste
Claus Gittinger <cg@exept.de>
parents: 522
diff changeset
  8150
4249
44daffb1b034 comment/format in: #deleteCopyToClipboard:
Claus Gittinger <cg@exept.de>
parents: 4248
diff changeset
  8151
    "Modified: / 07-05-2011 / 17:25:59 / cg"
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8152
!
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8153
5717
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8154
showMatch:pattern isMatch:isMatch atLine:line col:col endCol:encColOrNil
94a8cc3be8ec #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5710
diff changeset
  8155
    super showMatch:pattern isMatch:isMatch atLine:line col:col endCol:encColOrNil.
4484
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8156
    typeOfSelection := #search.
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8157
!
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8158
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8159
startPositionForSearchBackward
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8160
    ^ self startPositionForSearchBackwardBasedOnCursorOrSelection
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8161
!
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8162
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8163
startPositionForSearchBackwardBasedOnCursorOrSelection
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8164
    |startLine startCol|
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8165
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8166
    selectionStartLine notNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8167
        startLine := selectionStartLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8168
        startCol := selectionStartCol
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8169
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8170
        cursorLine isNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8171
            startLine := list size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8172
            startCol := self listAt:startLine size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8173
        ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8174
            startLine := cursorLine min:list size.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8175
            startCol := cursorCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8176
        ]
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8177
    ].
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8178
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8179
    ^ startCol @ cursorLine
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8180
!
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8181
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8182
startPositionForSearchForward
2822
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8183
    ^ self startPositionForSearchForwardBasedOnCursorOrSelection
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8184
!
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8185
08ceab3fc237 search refactored;
Claus Gittinger <cg@exept.de>
parents: 2819
diff changeset
  8186
startPositionForSearchForwardBasedOnCursorOrSelection
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8187
    |startCol|
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8188
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8189
    "/ if there is no selection and the cursor is at the origin,
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8190
    "/ assume its the first search and do not skip the very first match
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8191
    startCol := cursorCol.
4424
b38e9e3b483b changed: #startPositionForSearchForwardBasedOnCursorOrSelection
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  8192
    self hasSelection ifTrue:[
b38e9e3b483b changed: #startPositionForSearchForwardBasedOnCursorOrSelection
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  8193
        ^ selectionEndCol @ selectionEndLine.
b38e9e3b483b changed: #startPositionForSearchForwardBasedOnCursorOrSelection
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  8194
    ] ifFalse:[
4064
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  8195
        (cursorLine == 1 and:[cursorCol == 1]) ifTrue:[
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  8196
            startCol := 0
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  8197
        ].
140eda842f20 added: #hasSearchActionSelection
fm
parents: 4053
diff changeset
  8198
        startCol := startCol min:(self at:cursorLine) size
2756
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8199
    ].
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8200
2bdd7ceaf05c initial searchPosition extracted into separate method
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
  8201
    ^ startCol @ cursorLine
4424
b38e9e3b483b changed: #startPositionForSearchForwardBasedOnCursorOrSelection
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  8202
b38e9e3b483b changed: #startPositionForSearchForwardBasedOnCursorOrSelection
Claus Gittinger <cg@exept.de>
parents: 4421
diff changeset
  8203
    "Modified (format): / 24-05-2012 / 13:58:37 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8204
! !
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8205
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8206
!EditTextView methodsFor:'selections'!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8207
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8208
addToSelectionAfter:aBlock 
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8209
    "Extends the selection accroding to cursor position
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8210
     after evaluation of `aBlock`. Used to implement
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8211
     Shift-Up/Down/Left/Right, Shift-Home & Shift-End."
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8212
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8213
    "/ Following comment is in czech and thus now very useful.
4970
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8214
    "/ However I (JV) kept it here as this is one of the very
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8215
    "/ first fix/hack we made to Smalltalk/X ages ago, if not
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8216
    "/ the very first one. Actually, this method and comment was 
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8217
    "/ written by Martin Dvorak. Yeah, being bit nostalgic...
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8218
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8219
    "Pokud existuje selekce, upravi ji
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8220
     podle aktualni pozice kurzoru a pozice
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8221
     po provedeni blocku.
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8222
     Urceno k implementaci Shift-Home a Shift-End
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8223
     Nejak nevim, jak to presneji popsat :-)"
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8224
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8225
    | startLine startCol endLine endCol curLine curCol cursorAtTheBeginning cursorAtTheEnd cursorWasShown flip extModeStandard |
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8226
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8227
    curLine := cursorLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8228
    curCol := cursorCol.
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8229
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8230
    self hasSelection ifTrue: [
4970
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8231
        startLine := selectionStartLine.
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8232
        startCol := selectionStartCol.
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8233
        endLine := selectionEndLine.
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8234
        endCol := selectionEndCol.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8235
    ] ifFalse:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8236
        startLine := endLine := curLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8237
        startCol := curCol.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8238
        endCol := curCol - 1.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8239
    ].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8240
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8241
    cursorAtTheBeginning := (startLine == curLine) and:[startCol == curCol].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8242
    cursorAtTheEnd := (endLine == curLine) and:[endCol == (curCol - 1)]. 
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8243
    self assert: cursorAtTheBeginning | cursorAtTheEnd.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8244
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8245
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8246
    cursorWasShown := self hideCursor.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8247
    aBlock value.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8248
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8249
    cursorAtTheBeginning ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8250
        (cursorCol == (endCol + 1) and:[cursorLine == endLine]) ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8251
                self unselect; showCursor.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8252
                ^self
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8253
        ].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8254
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8255
        flip := cursorLine == endLine and:[cursorCol > endCol].
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8256
        flip ifTrue:[ 
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8257
            extModeStandard := UserPreferences current selectionExtensionMode == #standard.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8258
        ].
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8259
        (cursorLine > endLine or:[flip]) ifTrue:[
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8260
            (flip and:[ extModeStandard ]) ifTrue:[
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8261
                startLine := endLine.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8262
                startCol := endCol + 1.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8263
            ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8264
            endLine := cursorLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8265
            endCol := cursorCol - 1
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8266
        ] ifFalse:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8267
            startLine := cursorLine.
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8268
            startCol := cursorCol.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8269
        ]
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8270
    ] ifFalse:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8271
        cursorAtTheEnd ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8272
            (cursorCol == startCol and:[cursorLine == startLine]) ifTrue:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8273
                self unselect; showCursor.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8274
                ^self
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8275
            ].
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8276
            flip := cursorLine == startLine and:[cursorCol < startCol].
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8277
            flip ifTrue:[ 
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8278
                extModeStandard := UserPreferences current selectionExtensionMode == #standard.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8279
            ].  
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8280
            (cursorLine < startLine or:[flip]) ifTrue:[
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8281
                (flip and:[ extModeStandard ]) ifTrue:[
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8282
                    endLine := startLine.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8283
                    endCol := startCol - 1.
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8284
                ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8285
                startLine := cursorLine.
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8286
                startCol := cursorCol
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8287
            ] ifFalse:[
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8288
                endLine := cursorLine.
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8289
                endCol := cursorCol - 1.
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8290
            ]
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8291
        ].
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8292
    ].
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8293
    self selectFromLine:startLine col:startCol toLine: endLine col:endCol .
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8294
    cursorWasShown ifTrue:[self showCursor].
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8295
4973
e78f1243d4ef Implemented #traditional and #standard selection extension modes.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4970
diff changeset
  8296
    "Modified: / 27-03-2014 / 10:05:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4970
36ec8c9fde52 Fix for issue #36.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4969
diff changeset
  8297
    "Modified (comment): / 25-03-2014 / 17:18:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3023
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8298
!
9a6809da7351 shift BOL/shift EOL now selects;
Claus Gittinger <cg@exept.de>
parents: 3020
diff changeset
  8299
1850
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8300
autoMoveCursorToEndOfSelection
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8301
    "return true, if the cursor should be automatically moved to the
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8302
     end of a selection.
3963
c315f087d655 comment in: #autoMoveCursorToEndOfSelection
Claus Gittinger <cg@exept.de>
parents: 3945
diff changeset
  8303
     Redefined to return false in terminalViews, where the cursor should
1850
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8304
     not be affected by selecting"
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8305
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8306
    ^ true
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8307
!
82516928e791 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
  8308
2606
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8309
changeTypeOfSelectionTo:newType
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8310
    typeOfSelection ~~ newType ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8311
        typeOfSelection := newType.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8312
        selectionStartLine notNil ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8313
            self
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8314
                redrawFromLine:selectionStartLine col:selectionStartCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8315
                toLine:selectionEndLine col:selectionEndCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8316
        ].
2606
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8317
    ].
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8318
!
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8319
4707
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8320
findNextWordAfterSelectionAndAddToSelection
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8321
    |selStartCol selStartLine selEndCol selEndLine|
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8322
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8323
    selectionStartCol isNil ifTrue:[
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8324
        self selectWordUnderCursor.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8325
        ^ self
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8326
    ].
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8327
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8328
    selStartCol := selectionStartCol.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8329
    selEndCol := selectionEndCol.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8330
    selStartLine := selectionStartLine.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8331
    selEndLine := selectionEndLine.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8332
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8333
    self cursorToNextWord.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8334
    self selectWordUnderCursor.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8335
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8336
    self selectFromLine:selStartLine col:selStartCol toLine:selectionEndLine col:selectionEndCol.
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8337
!
f6ac835a1cf6 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4701
diff changeset
  8338
4138
fm
parents: 4136
diff changeset
  8339
searchPatternFromUserSelectionOrReplace
fm
parents: 4136
diff changeset
  8340
fm
parents: 4136
diff changeset
  8341
    |sel searchPattern|
fm
parents: 4136
diff changeset
  8342
fm
parents: 4136
diff changeset
  8343
    "/
fm
parents: 4136
diff changeset
  8344
    "/ if the last operation was a replace, set pattern to last
fm
parents: 4136
diff changeset
  8345
    "/ original string (for search after again)
fm
parents: 4136
diff changeset
  8346
    "/
fm
parents: 4136
diff changeset
  8347
    (lastStringFromReplaceForNextSearch notNil
fm
parents: 4136
diff changeset
  8348
     and:[typeOfSelection ~~ #search]) ifTrue:[
fm
parents: 4136
diff changeset
  8349
        lastStringFromReplaceForNextSearch isString ifTrue:[
fm
parents: 4136
diff changeset
  8350
            searchPattern := lastStringFromReplaceForNextSearch.
fm
parents: 4136
diff changeset
  8351
        ] ifFalse:[
fm
parents: 4136
diff changeset
  8352
            searchPattern := lastStringFromReplaceForNextSearch asStringWithoutFinalCR.
fm
parents: 4136
diff changeset
  8353
        ].
fm
parents: 4136
diff changeset
  8354
        ^ searchPattern
fm
parents: 4136
diff changeset
  8355
    ].
fm
parents: 4136
diff changeset
  8356
fm
parents: 4136
diff changeset
  8357
    "/
fm
parents: 4136
diff changeset
  8358
    "/ if there is a selection:
fm
parents: 4136
diff changeset
  8359
    "/    if there was no previous search, take it as search pattern.
fm
parents: 4136
diff changeset
  8360
    "/    if there was a previous search, only take the selection if
fm
parents: 4136
diff changeset
  8361
    "/    it did not result from a paste.
fm
parents: 4136
diff changeset
  8362
    "/    (to allow search-paste to be repeated)
fm
parents: 4136
diff changeset
  8363
    "/
fm
parents: 4136
diff changeset
  8364
    sel := self selection.
fm
parents: 4136
diff changeset
  8365
    sel notNil ifTrue:[
fm
parents: 4136
diff changeset
  8366
        typeOfSelection ~~ #search ifTrue:[
fm
parents: 4136
diff changeset
  8367
            typeOfSelection ~~ #paste ifTrue:[
fm
parents: 4136
diff changeset
  8368
                self cursorLine:selectionStartLine col:selectionStartCol.
fm
parents: 4136
diff changeset
  8369
                searchPattern := sel asStringWithoutFinalCR.
fm
parents: 4136
diff changeset
  8370
            ]
fm
parents: 4136
diff changeset
  8371
        ].
fm
parents: 4136
diff changeset
  8372
    ].
fm
parents: 4136
diff changeset
  8373
fm
parents: 4136
diff changeset
  8374
    ^ searchPattern
fm
parents: 4136
diff changeset
  8375
!
fm
parents: 4136
diff changeset
  8376
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8377
selectAll
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8378
    "select the whole text.
5593
ad41e448d7a8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 5581
diff changeset
  8379
     redefined to send super selectFrom... since we don't want the
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8380
     cursor to be moved in this case."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8381
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8382
    list isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8383
        self unselect
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8384
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8385
        super selectFromLine:1 col:1 toLine:(list size + 1) col:0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8386
        typeOfSelection := nil
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8387
    ]
1082
ccc3aa4268c1 better #selectAll
Claus Gittinger <cg@exept.de>
parents: 1054
diff changeset
  8388
ccc3aa4268c1 better #selectAll
Claus Gittinger <cg@exept.de>
parents: 1054
diff changeset
  8389
    "Modified: 28.2.1997 / 19:14:54 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8390
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8391
4117
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8392
selectAllInitially
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8393
    "select the whole text. This is called only once during the initialization
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8394
     for editFields which are shown in a table or tree.
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8395
     The selectAll is called via this method to allow for easier redefinition and
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8396
     to distinguish auto-select from user-initiated selects."
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8397
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8398
    self selectAll
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8399
!
470a3086aaa9 added: #selectAllInitially
sr
parents: 4114
diff changeset
  8400
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8401
selectCursorLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8402
    "select cursorline"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8403
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8404
    self selectFromLine:cursorLine col:1 toLine:cursorLine+1 col:0
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8405
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8406
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8407
selectCursorLineFromBeginning
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8408
    "select cursorline up to cursor position"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8409
823
fc61564f7832 escape selects up to previous character
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  8410
    cursorCol > 1 ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8411
        self selectFromLine:cursorLine col:1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8412
                     toLine:cursorLine col:(cursorCol-1)
823
fc61564f7832 escape selects up to previous character
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  8413
    ]
fc61564f7832 escape selects up to previous character
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  8414
fc61564f7832 escape selects up to previous character
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
  8415
    "Modified: 16.8.1996 / 19:14:14 / cg"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8416
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8417
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8418
selectExpandCursorLine
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8419
    "expand selection by one line or select cursorline"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8420
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8421
    selectionStartLine isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8422
        self selectCursorLine
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8423
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8424
        self selectFromLine:selectionStartLine col:selectionStartCol
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8425
                     toLine:cursorLine+1 col:0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8426
        self makeLineVisible:selectionEndLine
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8427
    ]
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8428
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8429
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8430
selectFromBeginOfLine
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8431
    "select the text from the beginning of the current line to the current cursor position."
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8432
4430
61c074a935cf fixed: #selectFromBeginOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4424
diff changeset
  8433
    | newCursorCol ln |
4271
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8434
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8435
    list isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8436
        self unselect
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8437
    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8438
        cursorCol > 1 ifTrue:[
4430
61c074a935cf fixed: #selectFromBeginOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4424
diff changeset
  8439
            ln := list at: cursorLine.
61c074a935cf fixed: #selectFromBeginOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4424
diff changeset
  8440
            newCursorCol := ln notEmptyOrNil ifTrue:[ln indexOfNonSeparator] ifFalse:[1].
4271
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8441
            self selectFromLine:cursorLine col:newCursorCol toLine:cursorLine col:cursorCol-1.
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8442
            cursorCol := newCursorCol.
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8443
            typeOfSelection := nil
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8444
        ]
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8445
    ]
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8446
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8447
    "Created: / 28-06-2011 / 22:47:04 / cg"
4430
61c074a935cf fixed: #selectFromBeginOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4424
diff changeset
  8448
    "Modified: / 18-07-2012 / 17:00:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8449
!
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8450
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8451
selectFromBeginning
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8452
    "select the text from the beginning to the current cursor position."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8453
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8454
    |col|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8455
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8456
    list isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8457
        self unselect
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8458
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8459
        cursorCol == 0 ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8460
            col := 0
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8461
        ] ifFalse:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8462
            col := cursorCol - 1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8463
        ].
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8464
        super selectFromLine:1 col:1 toLine:cursorLine col:col.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8465
        typeOfSelection := nil
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8466
    ]
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8467
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8468
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8469
selectFromLine:startLine col:startCol toLine:endLine col:endCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8470
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8471
    super selectFromLine:startLine col:startCol toLine:endLine col:endCol.
5293
bb7a5aa59ddb Merged 5251ecf0c9bb and 9d85f8e1e20c (branch default)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5220 5226
diff changeset
  8472
    "JV: That's actually rubbish as then you loose the original positon
4976
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8473
     and if user wants to extend/shring the selection further, you don't know
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8474
     from which end to do it!!"
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8475
"/    (selectionEndLine notNil and:[self autoMoveCursorToEndOfSelection]) ifTrue:[
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8476
"/        self cursorLine:selectionEndLine col:(selectionEndCol + 1).
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8477
"/    ].
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8478
    typeOfSelection := nil
4841
4fca96a61d42 Selection refactoring (part 1).
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4674
diff changeset
  8479
4976
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8480
    "Modified: / 27-08-2013 / 13:28:12 / Jan Vrany <jan.vrany@fit.cvut.cz>"
83f3df06495f Added documentation of what was changed (meant to change)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4975
diff changeset
  8481
    "Modified (comment): / 27-08-2013 / 15:58:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8482
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8483
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8484
selectToEndOfLine
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8485
    "select the text from the current cursor position to the end of the current line"
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8486
4271
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8487
    | newCursorCol line |
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8488
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8489
    list isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8490
        self unselect
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8491
    ] ifFalse:[
4275
16c80f32c06c bug fix in #selectToEndOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4271
diff changeset
  8492
        cursorCol >= 1 ifTrue:[
4271
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8493
            line := list at: cursorLine.
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8494
            newCursorCol := line size.
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8495
            [ newCursorCol > 1 and:[(line at:newCursorCol) isSeparator] ]      
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8496
                whileTrue:[newCursorCol := newCursorCol - 1].
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8497
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8498
            self selectFromLine:cursorLine col:cursorCol toLine:cursorLine col: newCursorCol.
3ce604308987 changed:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4258
diff changeset
  8499
            cursorCol := newCursorCol.
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8500
            typeOfSelection := nil
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8501
        ]
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8502
    ]
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8503
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8504
    "Created: / 28-06-2011 / 23:07:07 / cg"
4275
16c80f32c06c bug fix in #selectToEndOfLine
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4271
diff changeset
  8505
    "Modified: / 30-06-2011 / 19:51:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4257
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8506
!
Claus Gittinger <cg@exept.de>
parents: 4256
diff changeset
  8507
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8508
selectUpToEnd
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8509
    "select the text from the current cursor position to the end."
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8510
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8511
    list isNil ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8512
        self unselect
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8513
    ] ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8514
        super selectFromLine:cursorLine col:cursorCol toLine:(list size + 1) col:0.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8515
        typeOfSelection := nil
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8516
    ]
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8517
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8518
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8519
selectWordUnderCursor
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8520
    "select the word under the cursor"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8521
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8522
    self selectWordAtLine:cursorLine col:cursorCol
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8523
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8524
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8525
unselect
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8526
    "forget and unhilight selection - must take care of cursor here"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8527
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8528
    |wasOn|
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8529
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8530
    wasOn := self hideCursor.
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8531
    super unselect.
2606
6a3ab90d339f redraw selectionm, when its seelctionType changes
Claus Gittinger <cg@exept.de>
parents: 2599
diff changeset
  8532
    typeOfSelection := nil.
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8533
    wasOn ifTrue:[self showCursor]
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8534
! !
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8535
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8536
!EditTextView methodsFor:'undo & again'!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8537
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8538
addUndo:action
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8539
    ^ undoSupport addUndo:action.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8540
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8541
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8542
again
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8543
    "repeat the last action (which was a cut or replace).
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8544
     If current selection is not last string, search forward to
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8545
     next occurrence of it before repeating the last operation."
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8546
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8547
    |s l c sel savedSelectStyle startColForSearch 
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8548
     lastStringToReplace lastReplaceIgnoredCase lastReplaceWasMatch|
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8549
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8550
    lastStringToReplace := lastReplacementInfo lastStringToReplace.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  8551
    lastStringToReplace isNil ifTrue:[
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8552
        ^ false
2579
74d3798f4200 do not remove separators from replacement string
Claus Gittinger <cg@exept.de>
parents: 2574
diff changeset
  8553
    ].
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8554
    lastReplaceIgnoredCase := lastReplacementInfo lastReplaceIgnoredCase.
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8555
    lastReplaceWasMatch := lastReplacementInfo lastReplaceWasMatch.
2579
74d3798f4200 do not remove separators from replacement string
Claus Gittinger <cg@exept.de>
parents: 2574
diff changeset
  8556
3127
29767bf8a215 better info of replace action (compound-undo-action has info, too)
Claus Gittinger <cg@exept.de>
parents: 3115
diff changeset
  8557
    self undoableDo:[
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  8558
        s := lastStringToReplace asString.
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8559
        "remove final cr"
4566
21922c626af2 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 4555
diff changeset
  8560
        (s endsWith:Character cr) ifTrue:[s := s copyButLast:1].
3127
29767bf8a215 better info of replace action (compound-undo-action has info, too)
Claus Gittinger <cg@exept.de>
parents: 3115
diff changeset
  8561
    "/        s := s withoutSpaces.        "XXX - replacing text with spaces ..."
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  8562
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  8563
        "set lastStringToReplace as the next search string 
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  8564
         and set lastReplaceIgnoredCase as the next search ignored case flag"
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8565
        lastStringFromReplaceForNextSearch := s.
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  8566
        lastSearchIgnoredCase := lastReplaceIgnoredCase.
4010
9c22bd531240 lastStringToReplace to use in again
fm
parents: 3996
diff changeset
  8567
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8568
        savedSelectStyle := selectStyle.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8569
        selectStyle := nil.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8570
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8571
        sel := self selection.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8572
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8573
        "if we are already there (after a find), ommit search"
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8574
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8575
        (sel notNil and:[sel asString withoutSeparators = s]) ifTrue:[
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8576
            l := selectionStartLine "cursorLine".
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8577
            c := selectionStartCol "cursorCol".
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8578
            self deleteSelection.
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8579
            lastReplacementInfo lastReplacement notNil ifTrue:[
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8580
                self insertLines:lastReplacementInfo lastReplacement asStringCollection withCR:false.
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8581
                self selectFromLine:l col:c toLine:cursorLine col:(cursorCol - 1).
4484
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8582
                typeOfSelection := #paste
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8583
            ].
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8584
            selectStyle := savedSelectStyle.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8585
            ^ true
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8586
        ].
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8587
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8588
        sel isEmptyOrNil ifTrue:[
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8589
            startColForSearch := cursorCol - 1
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8590
        ] ifFalse:[
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8591
            startColForSearch := selectionEndCol ? (cursorCol - 1)
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8592
        ].
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8593
        self 
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8594
            searchForwardFor:s
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8595
            ignoreCase: lastReplaceIgnoredCase 
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8596
            match: lastReplaceWasMatch 
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8597
            startingAtLine:cursorLine col:startColForSearch
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8598
            ifFound:
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8599
                [
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8600
                    :line :col |
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8601
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8602
                    |repl|
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8603
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8604
                    self selectFromLine:line col:col
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8605
                                 toLine:line col:(col + s size - 1).
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8606
                    self makeLineVisible:line.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8607
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8608
                    self deleteSelection.
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8609
                    lastReplacementInfo lastReplacement notNil ifTrue:[
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8610
                        lastReplacementInfo lastReplacement isString ifFalse:[
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8611
                            repl := lastReplacementInfo lastReplacement asString "withoutSpaces"
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8612
                        ] ifTrue:[
4051
4fdd00fbdc60 changed:
fm
parents: 4048
diff changeset
  8613
                            repl := lastReplacementInfo lastReplacement "withoutSpaces".
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8614
                        ].
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8615
                        self insertLines:repl asStringCollection withCR:false.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8616
                        self selectFromLine:line col:col toLine:cursorLine col:(cursorCol - 1).
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8617
                        undoSupport actionInfo:'replace'.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8618
                    ].
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8619
                    selectStyle := savedSelectStyle.
4484
38f88010834c class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4483
diff changeset
  8620
                    typeOfSelection := #paste.
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8621
                    ^ true
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8622
                ]
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8623
            ifAbsent:
3816
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8624
                [
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8625
                    self sensor compressKeyPressEventsWithKey:#Again.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8626
                    self showNotFound.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8627
                    selectStyle := savedSelectStyle.
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8628
                    ^ false
3915f7b67262 again, when the next replacement start immediately after the selection fixed
Claus Gittinger <cg@exept.de>
parents: 3813
diff changeset
  8629
                ].
3127
29767bf8a215 better info of replace action (compound-undo-action has info, too)
Claus Gittinger <cg@exept.de>
parents: 3115
diff changeset
  8630
    ].
2730
61a2f1981ac6 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2725
diff changeset
  8631
61a2f1981ac6 Use SynchronousWindoeSensor if no windowGroup
Stefan Vogel <sv@exept.de>
parents: 2725
diff changeset
  8632
    ^ true.
501
13fc7b9ce5cb fixed (?) again-replace
Claus Gittinger <cg@exept.de>
parents: 499
diff changeset
  8633
840
b0071cea13fd fixed Again when spaces are replaced
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  8634
    "Modified: 9.10.1996 / 16:14:11 / cg"
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8635
!
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  8636
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8637
hasRedoAction
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8638
    ^ undoSupport hasRedoAction.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8639
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8640
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8641
hasUndoAction
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8642
    ^ undoSupport hasUndoAction.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8643
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8644
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8645
multipleAgain
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8646
    "repeat the last action (which was a cut or replace) until search fails"
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8647
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8648
    [self again] whileTrue:[]
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8649
!
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  8650
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8651
nonUndoableDo:aBlock
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8652
    undoSupport nonUndoableDo:aBlock.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8653
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8654
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8655
redo
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8656
    "undo the last undo"
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8657
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8658
    undoSupport hasRedoAction ifFalse:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8659
        self beep
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8660
    ] ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8661
        undoSupport redo.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8662
    ]
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8663
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8664
121
claus
parents: 118
diff changeset
  8665
undo
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8666
    "undo the last edit operation"
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8667
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8668
    undoSupport hasUndoAction ifFalse:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8669
        self beep
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  8670
    ] ifTrue:[
3780
628343522da5 redo key
Claus Gittinger <cg@exept.de>
parents: 3732
diff changeset
  8671
        undoSupport undo.
121
claus
parents: 118
diff changeset
  8672
    ]
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8673
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8674
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8675
undoableDo:aBlock
3495
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  8676
    self undoableDo:aBlock info:nil.
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  8677
4ff7edbd5942 changed #dropFileObject:
Claus Gittinger <cg@exept.de>
parents: 3483
diff changeset
  8678
    "Modified: / 28-07-2007 / 13:20:14 / cg"
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8679
!
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8680
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8681
undoableDo:aBlock info:aString
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8682
    |selectionRestore|
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8683
3154
42bf7ebd54c8 refadctored intention revealing code:
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  8684
    self checkModificationsAllowed ifFalse:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8685
        "/ will trigger an error-dialog there (no need for undo-carekeeping)
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8686
        aBlock value.
3154
42bf7ebd54c8 refadctored intention revealing code:
Claus Gittinger <cg@exept.de>
parents: 3150
diff changeset
  8687
    ] ifTrue:[
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8688
        undoSupport isInTransaction ifFalse:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8689
            selectionRestore := RestoreSelectionAndCursor new 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8690
                                    cursorLine:cursorLine cursorCol:cursorCol
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8691
                                    selectionStartLine:selectionStartLine selectionStartCol:selectionStartCol
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8692
                                    selectionEndLine:selectionEndLine selectionEndCol:selectionEndCol
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8693
                                    info:nil.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8694
        ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8695
        undoSupport 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8696
            undoableDo:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8697
                aBlock value.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8698
                selectionRestore notNil ifTrue:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8699
                    undoSupport transactionNotEmpty ifTrue:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8700
                        undoSupport addUndoFirst:selectionRestore 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8701
                    ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8702
                ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8703
            ]
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8704
            info:aString.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8705
    ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8706
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  8707
    "Modified: / 30-04-2016 / 21:08:30 / cg"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8708
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8709
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8710
!EditTextView::EditAction class methodsFor:'instance creation'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8711
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8712
line1:arg1 col1:arg2 line2:arg3 col2:arg4
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8713
    ^ self new line1:arg1 col1:arg2 line2:arg3 col2:arg4
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8714
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8715
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8716
line1:arg1 col1:arg2 line2:arg3 col2:arg4 info:info
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8717
    ^ (self new line1:arg1 col1:arg2 line2:arg3 col2:arg4) info:info
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8718
!
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8719
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8720
line:arg1 col:arg2 character:arg3
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8721
    ^ self new line:arg1 col:arg2 character:arg3
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8722
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8723
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8724
line:arg1 col:arg2 character:arg3 info:info
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8725
    ^ (self new line:arg1 col:arg2 character:arg3) info:info
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8726
!
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8727
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8728
line:arg1 col:arg2 characters:arg3 info:info
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8729
    ^ (self new line:arg1 col:arg2 characters:arg3) info:info
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8730
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8731
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8732
line:arg1 col:arg2 info:arg3
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8733
    ^ self new line:arg1 col:arg2 info:arg3
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8734
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8735
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8736
line:arg1 col:arg2 string:arg3
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8737
    ^ self new line:arg1 col:arg2 string:arg3
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8738
!
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8739
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8740
line:arg1 col:arg2 string:arg3 info:info
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8741
    ^ (self new line:arg1 col:arg2 string:arg3) info:info
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8742
!
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8743
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8744
line:arg1 string:arg3 info:info
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  8745
    ^ (self new line:arg1 string:arg3) info:info
3131
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  8746
!
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  8747
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  8748
text:arg info:info
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  8749
    ^ (self new text:arg) info:info
3115
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8750
! !
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8751
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8752
!EditTextView::EditAction methodsFor:'accessing'!
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8753
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8754
info
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8755
    ^ userFriendlyInfo
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8756
!
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8757
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8758
info:aString
b75128334006 info string in undo
Claus Gittinger <cg@exept.de>
parents: 3114
diff changeset
  8759
    userFriendlyInfo := aString
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8760
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8761
3400
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8762
!EditTextView::EditAction methodsFor:'combining'!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8763
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8764
canCombineWithPreviousPasteStringAction: aPasteStringAction
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8765
    ^ false.
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8766
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8767
    "Created: / 25-09-2006 / 12:16:25 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8768
! !
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  8769
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8770
!EditTextView::EditAction methodsFor:'queries'!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8771
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8772
canCombineWithNext:nextAction
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8773
    ^ false
5710
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  8774
!
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  8775
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  8776
isRestoreSelectionAndCursor
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  8777
    ^ false
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8778
! !
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8779
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8780
!EditTextView::DeleteRange methodsFor:'accessing'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8781
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8782
line1:line1Arg col1:col1Arg line2:line2Arg col2:col2Arg
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8783
    "set instance variables (automatically generated)"
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8784
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8785
    self assert:(line1Arg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8786
    self assert:(col1Arg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8787
    self assert:(line2Arg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8788
    self assert:(col2Arg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8789
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8790
    line1 := line1Arg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8791
    col1 := col1Arg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8792
    line2 := line2Arg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8793
    col2 := col2Arg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8794
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8795
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8796
!EditTextView::DeleteRange methodsFor:'execution'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8797
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8798
executeIn:editor
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8799
    editor unselect.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8800
    editor
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8801
        deleteFromLine:line1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8802
        col:col1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8803
        toLine:line2
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8804
        col:col2.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8805
    editor cursorLine:line1 col:col1.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8806
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  8807
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8808
!EditTextView::DeleteCharacters methodsFor:'accessing'!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8809
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8810
col1
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8811
    ^ col1
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8812
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8813
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8814
col2
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8815
    ^ col2
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8816
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8817
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8818
line
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8819
    ^ line
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8820
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8821
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8822
line:lineArg col1:col1Arg col2:col2Arg
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8823
    "set instance variables (automatically generated)"
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8824
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8825
    self assert:(lineArg notNil).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8826
    self assert:(col1Arg notNil).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8827
    self assert:(col2Arg notNil).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8828
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8829
    line := lineArg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8830
    col1 := col1Arg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8831
    col2 := col2Arg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8832
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8833
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8834
line:lineArg col:colArg info:infoArg
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8835
    self assert:(lineArg notNil).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8836
    self assert:(colArg notNil).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8837
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8838
    line := lineArg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8839
    col1 := col2 := colArg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8840
    self info:infoArg.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8841
! !
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8842
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8843
!EditTextView::DeleteCharacters methodsFor:'combining'!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8844
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8845
canCombineWithNext:anotherAction
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8846
    ^ anotherAction perform:#canCombineWithPreviousDeleteCharactersAction: with:self ifNotUnderstood:false
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8847
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8848
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8849
canCombineWithPreviousDeleteCharactersAction:previousDeleteAction
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8850
    "I will combine only if we both are single character deletes,
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8851
     and my col-to-delete is the next after anotherDeleteActions col-to-delete.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8852
     (i.e. single-character typing)"
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8853
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8854
    previousDeleteAction line == line ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8855
        previousDeleteAction col2 == (col1-1) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8856
            ^ true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8857
        ].
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8858
    ].
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8859
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8860
    ^ false
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8861
!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8862
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8863
combineWithNext:nextDeleteAction
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8864
    self assert:(line == nextDeleteAction line).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8865
    self assert:(col2 == (nextDeleteAction col1 - 1)).
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8866
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8867
    col2 := nextDeleteAction col2.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8868
    userFriendlyInfo := 'insert ' , (col2 - col1 + 1) printString
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8869
! !
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8870
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8871
!EditTextView::DeleteCharacters methodsFor:'execution'!
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8872
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8873
executeIn:editor
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8874
    editor unselect.
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  8875
    editor
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8876
        deleteFromLine:line
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8877
        col:col1
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8878
        toLine:line
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  8879
        col:col2.
3156
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8880
    editor cursorLine:line col:col1.
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8881
! !
25ef39958fd8 undo - combine multiple-single keystrokes
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  8882
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8883
!EditTextView::EditMode class methodsFor:'constants'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8884
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8885
insertAndSelectMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8886
    ^ InsertAndSelectMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8887
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8888
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8889
insertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8890
    ^ InsertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8891
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8892
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8893
overwriteMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8894
    ^ OverwriteMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8895
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8896
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8897
!EditTextView::EditMode class methodsFor:'queries'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8898
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8899
isInsertAndSelectMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8900
    ^ false
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8901
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8902
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8903
isInsertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8904
    ^ false
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8905
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8906
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8907
symbolicName
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8908
    self subclassResponsibility
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8909
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8910
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8911
!EditTextView::EditMode::InsertAndSelectMode class methodsFor:'info'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8912
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8913
infoPrintString
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8914
    ^ 'IS'
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8915
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8916
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8917
!EditTextView::EditMode::InsertAndSelectMode class methodsFor:'queries'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8918
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8919
isInsertAndSelectMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8920
    ^ true
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8921
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8922
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8923
isInsertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8924
    ^ true
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8925
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8926
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8927
!EditTextView::EditMode::InsertMode class methodsFor:'info'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8928
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8929
infoPrintString
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8930
    ^ 'I'
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8931
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8932
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8933
!EditTextView::EditMode::InsertMode class methodsFor:'queries'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8934
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8935
isInsertMode
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8936
    ^ true
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8937
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8938
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8939
!EditTextView::EditMode::OverwriteMode class methodsFor:'info'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8940
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8941
infoPrintString
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8942
    ^ 'O'
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8943
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  8944
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8945
!EditTextView::LastReplacementInfo methodsFor:'accessing'!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8946
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8947
lastReplaceIgnoredCase
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8948
    ^ lastReplaceIgnoredCase ? false
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8949
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8950
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8951
lastReplaceIgnoredCase:something
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8952
    lastReplaceIgnoredCase := something.
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8953
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8954
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8955
lastReplaceWasMatch
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8956
    ^ lastReplaceWasMatch ? false
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8957
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8958
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8959
lastReplaceWasMatch:something
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8960
    lastReplaceWasMatch := something.
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8961
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8962
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8963
lastReplacement
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8964
    ^ lastReplacement
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8965
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8966
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8967
lastReplacement:something
4053
31117d801975 added: #setLastStringToReplace:
fm
parents: 4051
diff changeset
  8968
"/Transcript showCR: 'lastReplacement:', something printString.
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8969
    lastReplacement := something.
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8970
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8971
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8972
lastStringToReplace
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8973
    ^ lastStringToReplace
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8974
!
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8975
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8976
lastStringToReplace:something
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  8977
    lastStringToReplace := something.
4818
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8978
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8979
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8980
previousReplacements
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8981
    ^ previousReplacements ? #()
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8982
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8983
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8984
stillCollectingInput
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8985
    ^ stillCollectingInput
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8986
!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8987
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8988
stillCollectingInput:aBoolean
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8989
    stillCollectingInput := aBoolean.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8990
! !
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8991
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8992
!EditTextView::LastReplacementInfo methodsFor:'history'!
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8993
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8994
rememberReplacement
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8995
    "remember the previous replacement (called when a new one appears).
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8996
     Mostly for the benefit of the code completion..."
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8997
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8998
    |oldString newString|
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  8999
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9000
    oldString := lastStringToReplace.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9001
    newString := lastReplacement.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9002
    (oldString notEmptyOrNil and:[newString notEmptyOrNil]) ifTrue:[
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9003
        previousReplacements isNil ifTrue:[
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9004
            previousReplacements := OrderedCollection new.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9005
        ].
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9006
        previousReplacements := previousReplacements reject:[:entry | entry key = oldString].
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9007
        previousReplacements addFirst:(oldString -> newString).
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9008
        previousReplacements size > 20 ifTrue:[
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9009
            previousReplacements removeLast.
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9010
        ]
22857701ea2f class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  9011
    ].
4048
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  9012
! !
a2ec0cedffc2 LastReplacementInfo
fm
parents: 4042
diff changeset
  9013
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9014
!EditTextView::PasteString methodsFor:'accessing'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9015
3400
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9016
col
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9017
    ^ col
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9018
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9019
    "Created: / 25-09-2006 / 12:19:59 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9020
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9021
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9022
col2
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9023
    ^ col + string size - 1
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9024
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9025
    "Created: / 25-09-2006 / 12:20:18 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9026
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9027
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9028
line
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9029
    ^ line
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9030
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9031
    "Created: / 25-09-2006 / 12:21:08 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9032
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9033
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9034
line:lineArg col:colArg string:stringArg
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9035
    self assert:(lineArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9036
    self assert:(colArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9037
    self assert:(stringArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9038
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9039
    line := lineArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9040
    col := colArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9041
    string := stringArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9042
!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9043
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9044
line:lineArg col:colArg string:stringArg selected:selectedArg
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9045
    self assert:(lineArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9046
    self assert:(colArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9047
    self assert:(stringArg notNil).
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9048
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9049
    line := lineArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9050
    col := colArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9051
    string := stringArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9052
    selected := selectedArg.
3400
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9053
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9054
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9055
string
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9056
    ^ string
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9057
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9058
    "Created: / 25-09-2006 / 12:25:59 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9059
! !
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9060
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9061
!EditTextView::PasteString methodsFor:'combining'!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9062
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9063
canCombineWithNext:anotherAction
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9064
    ^ anotherAction canCombineWithPreviousPasteStringAction:self
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9065
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9066
    "Created: / 25-09-2006 / 12:15:59 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9067
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9068
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9069
canCombineWithPreviousPasteStringAction: previousPasteAction
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9070
    "I will combine only if we both are single character inserts,
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9071
     and my col-to-insert is the next after anotherInsertActions end-col.
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9072
     (i.e. single-character deletes)"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9073
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9074
    previousPasteAction line == line ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9075
        previousPasteAction col == (self col2+1) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9076
            ^ true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9077
        ].
3400
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9078
    ].
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9079
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9080
    ^ false
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9081
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9082
    "Modified: / 25-09-2006 / 12:22:21 / cg"
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9083
!
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9084
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9085
combineWithNext:nextPasteAction
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9086
    |s1 s2|
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9087
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9088
    self assert:(line == nextPasteAction line).
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9089
    self assert:((col - 1) == (nextPasteAction col2)).
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9090
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9091
    s1 := nextPasteAction string.
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9092
    s1 isString ifFalse:[s1 := s1 asStringWith:nil].
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9093
    s2 := string.
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9094
    s2 isString ifFalse:[s2 := s2 asStringWith:nil].
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9095
3683
5891af82a177 middleButtonMenu and keyCommands no longer held in instvars but in moreAttributes.
Claus Gittinger <cg@exept.de>
parents: 3650
diff changeset
  9096
    string := s1, s2.
3400
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9097
    col := nextPasteAction col.
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9098
    userFriendlyInfo := 'delete ' , string size printString
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9099
c3fd4330f9ea undo: join multiple delete-characters into a single undo
Claus Gittinger <cg@exept.de>
parents: 3326
diff changeset
  9100
    "Created: / 25-09-2006 / 12:24:10 / cg"
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9101
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9102
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9103
!EditTextView::PasteString methodsFor:'execution'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9104
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9105
executeIn:editor
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9106
    editor cursorLine:line col:col.
2989
5dcc2912bcb6 undo/redo extracted to separate component for better reuse
Claus Gittinger <cg@exept.de>
parents: 2984
diff changeset
  9107
    editor paste:string.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9108
    selected ~~ true ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9109
        editor unselect
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9110
    ].
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9111
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9112
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9113
!EditTextView::ReplaceCharacter methodsFor:'accessing'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9114
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9115
col
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9116
    ^ col
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9117
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9118
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9119
col1
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9120
    ^ col
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9121
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9122
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9123
col2
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9124
    ^ col
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9125
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9126
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9127
line
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9128
    ^ line
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9129
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9130
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9131
line:lineArg col:colArg character:characterArg
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9132
    line := lineArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9133
    col := colArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9134
    character := characterArg.
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9135
! !
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9136
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9137
!EditTextView::ReplaceCharacter methodsFor:'execution'!
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9138
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9139
executeIn:editor
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9140
    editor
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9141
        replace:character
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9142
        atLine:line
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9143
        col:col.
2952
08d18f507e05 first attempt for undo
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  9144
    editor cursorLine:line col:col.
105
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  9145
! !
3d064ba4a0cc *** empty log message ***
claus
parents: 97
diff changeset
  9146
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9147
!EditTextView::ReplaceCharacters methodsFor:'accessing'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9148
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9149
characters
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9150
    ^ characters
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9151
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9152
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9153
col1
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9154
    ^ col1
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9155
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9156
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9157
col2
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9158
    ^ col2
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9159
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9160
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9161
line
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9162
    ^ line
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9163
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9164
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9165
line:lineArg col:colArg character:characterArg
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9166
    line := lineArg.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9167
    col1 := col2 := colArg.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9168
    characters := characterArg asString.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9169
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9170
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9171
line:lineArg col:colArg characters:charactersArg
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9172
    line := lineArg.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9173
    col1 := colArg.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9174
    characters := charactersArg asString.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9175
    col2 := col1 + charactersArg size - 1
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9176
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9177
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9178
!EditTextView::ReplaceCharacters methodsFor:'combining'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9179
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9180
canCombineWithNext:anotherAction
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9181
    ^ anotherAction perform:#canCombineWithPreviousReplaceCharactersAction: with:self ifNotUnderstood:false
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9182
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9183
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9184
canCombineWithPreviousReplaceCharactersAction:previousReplaceAction
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9185
    "I will combine only if we both are single character deletes,
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9186
     and my col-to-delete is the next after anotherDeleteActions col-to-delete.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9187
     (i.e. single-character typing)"
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9188
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9189
    previousReplaceAction line == line ifTrue:[
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9190
        previousReplaceAction col2 == (col1-1) ifTrue:[
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9191
            ^ true
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9192
        ].
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9193
    ].
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9194
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9195
    ^ false
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9196
!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9197
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9198
combineWithNext:nextReplaceAction
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9199
    self assert:(line == nextReplaceAction line).
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9200
    self assert:(self col2 == (nextReplaceAction col1 - 1)).
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9201
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9202
    col2 := nextReplaceAction col2.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9203
    userFriendlyInfo := 'replace ' , (col2 - col1 + 1) printString.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9204
    characters := characters , nextReplaceAction characters.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9205
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9206
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9207
!EditTextView::ReplaceCharacters methodsFor:'execution'!
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9208
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9209
executeIn:editor
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9210
    editor
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9211
        replaceString:characters
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9212
        atLine:line
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9213
        col:col1.
3235
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9214
    editor cursorLine:line col:col1.
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9215
! !
422c2db64114 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3232
diff changeset
  9216
3131
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9217
!EditTextView::ReplaceContents methodsFor:'accessing'!
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9218
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9219
text:something
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9220
    text := something.
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9221
! !
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9222
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9223
!EditTextView::ReplaceContents methodsFor:'execution'!
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9224
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9225
executeIn:editor
3131
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9226
    editor contents:text
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9227
! !
8f21dba07d24 undoable format
Claus Gittinger <cg@exept.de>
parents: 3130
diff changeset
  9228
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9229
!EditTextView::ReplaceLine methodsFor:'accessing'!
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9230
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9231
line:lineArg string:stringArg
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9232
    line := lineArg.
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9233
    text := stringArg.
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9234
! !
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9235
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9236
!EditTextView::ReplaceLine methodsFor:'execution'!
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9237
3160
77096deedd53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
  9238
executeIn:editor
3130
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9239
    editor list at:line put:text.
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9240
    editor invalidateLine:line
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9241
! !
c0f39f9f28d6 undoable keyboard macros
Claus Gittinger <cg@exept.de>
parents: 3127
diff changeset
  9242
3402
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9243
!EditTextView::ReplaceLines methodsFor:'accessing'!
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9244
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9245
line:lineArg lines:lineCollectionArg
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9246
    line := lineArg.
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9247
    text := lineCollectionArg.
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9248
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9249
    "Created: / 09-10-2006 / 10:35:22 / cg"
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9250
! !
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9251
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9252
!EditTextView::ReplaceLines methodsFor:'execution'!
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9253
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9254
executeIn:editor
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9255
    |lnr|
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9256
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9257
    lnr := line.
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9258
    text do:[:eachLine |
4823
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9259
        editor list at:lnr put:eachLine.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9260
        editor invalidateLine:lnr.
0d685a9c7f5a class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 4821
diff changeset
  9261
        lnr := lnr + 1.
3402
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9262
    ].
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9263
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9264
    "Modified: / 09-10-2006 / 10:39:16 / cg"
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9265
! !
d6545009a22b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3400
diff changeset
  9266
5689
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9267
!EditTextView::RestoreSelectionAndCursor methodsFor:'accessing'!
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9268
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9269
cursorLine:cursorLineArg cursorCol:cursorColArg selectionStartLine:selectionStartLineArg selectionStartCol:selectionStartColArg selectionEndLine:selectionEndLineArg selectionEndCol:selectionEndColArg 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9270
    cursorLine := cursorLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9271
    cursorCol := cursorColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9272
    selectionStartLine := selectionStartLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9273
    selectionStartCol := selectionStartColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9274
    selectionEndLine := selectionEndLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9275
    selectionEndCol := selectionEndColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9276
!
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9277
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9278
cursorLine:cursorLineArg cursorCol:cursorColArg 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9279
        selectionStartLine:selectionStartLineArg selectionStartCol:selectionStartColArg 
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9280
        selectionEndLine:selectionEndLineArg selectionEndCol:selectionEndColArg
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9281
        info:info
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9282
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9283
    cursorLine := cursorLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9284
    cursorCol := cursorColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9285
    selectionStartLine := selectionStartLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9286
    selectionStartCol := selectionStartColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9287
    selectionEndLine := selectionEndLineArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9288
    selectionEndCol := selectionEndColArg.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9289
    userFriendlyInfo := info.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9290
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9291
    "Created: / 30-04-2016 / 20:21:18 / cg"
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9292
! !
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9293
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9294
!EditTextView::RestoreSelectionAndCursor methodsFor:'execution'!
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9295
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9296
executeIn:editor
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9297
    (selectionStartLine notNil and:[selectionEndLine notNil
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9298
    and:[selectionStartCol notNil and:[selectionEndCol notNil]]]) ifTrue:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9299
        editor setCursorLine:cursorLine col:cursorCol.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9300
        editor selectFromLine:selectionStartLine col:selectionStartCol toLine:selectionEndLine col:selectionEndCol
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9301
    ] ifFalse:[
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9302
        editor cursorLine:cursorLine col:cursorCol.
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9303
    ].
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9304
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9305
    "Created: / 30-04-2016 / 20:14:55 / cg"
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9306
! !
05b065914682 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5643
diff changeset
  9307
5710
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9308
!EditTextView::RestoreSelectionAndCursor methodsFor:'queries'!
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9309
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9310
isRestoreSelectionAndCursor
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9311
    ^ true
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9312
! !
7757eb8d4d3e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5689
diff changeset
  9313
865
d42c7c99e67d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
  9314
!EditTextView class methodsFor:'documentation'!
259
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  9315
837ccdc138ea use non-blocking millisecondDelay
Claus Gittinger <cg@exept.de>
parents: 214
diff changeset
  9316
version
5361
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  9317
    ^ '$Header$'
3945
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  9318
!
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  9319
295e4733f3a5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  9320
version_CVS
5361
d39070e004c1 class: EditTextView
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  9321
    ^ '$Header$'
4843
7cd827899263 Selection refactoring, part 2: update cursor position when selecting by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4841
diff changeset
  9322
!
7cd827899263 Selection refactoring, part 2: update cursor position when selecting by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4841
diff changeset
  9323
7cd827899263 Selection refactoring, part 2: update cursor position when selecting by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4841
diff changeset
  9324
version_HG
7cd827899263 Selection refactoring, part 2: update cursor position when selecting by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4841
diff changeset
  9325
7cd827899263 Selection refactoring, part 2: update cursor position when selecting by mouse.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4841
diff changeset
  9326
    ^ '$Changeset: <not expanded> $'
0
e6a541c1c0eb Initial revision
claus
parents:
diff changeset
  9327
! !
4481
76c592c0ae9c class: EditTextView
Stefan Vogel <sv@exept.de>
parents: 4475
diff changeset
  9328