|
Class: BreakpointService (in Tools)
Object
|
+--Tools::CodeViewService
|
+--Tools::BreakpointService
- Package:
- stx:libtool
- Category:
- Interface-CodeView
- Version:
- rev:
1.113
date: 2024/01/30 14:10:01
- user: stefan
- file: Tools__BreakpointService.st directory: libtool
- module: stx stc-classLibrary: libtool
somewhat badly designed for non-reusability:
I should not care for recompiling methods here,
but instead delegate this task to a breakPointInstaller.
The way it is currently designed makes it hard to reuse this
component in non-smalltalk setups (i.e. groovy-, node- or C editors).
Fiddling around here breaks it almost for sure, as this is highly obfuscated code.
copyrightCOPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
All Rights Reserved
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the 'Software'), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
accessing
-
failedToSetBreakpointNotification
-
-
label
-
Answers a short label - for UI
testing
-
isUsefulFor: aCodeView
-
this filters useful services.
Redefined to return true for myself - not for subclasses
accessing
-
breakpointAtLine: line
-
return the breakpoint at line (may be disabled) or nil, if there is none
-
breakpoints
-
-
firstBreakpointAtLine: line
-
return the breakpoint at line (may be disabled) or nil, if there is none
-
removeAllBreakpoints
-
-
setBreakpointAtLine: line
-
unconditionally set a breakpoint (called via double click)
-
setOrToggleBreakpointAtLine: line
-
toggle a breakpoint (called via single click)
-
setOrToggleBreakpointAtLine: line toggle: doToggleBoolean
-
set (via double click) or toggle (via single click) a breakpoint
change & update
-
update: aspect with: param from: sender
-
ATTENTION: I thought that fetching the methodHolder once in initialize would
-
updateBreakPointsFor: aMethod
-
Transcript show:'update breakpoints for method: '; showCR:aMethod.
-
updateCurrentMethod
-
codeView methodHolder class == BlockValue ifTrue:[self breakPoint:#cg].
event handling
-
buttonMultiPress: button x: x y: y in: view
-
cg:huch - why that?
-
buttonPress: button x: x y: y in: view
-
Handles an event in given view (a subview of codeView).
If the method returns true, it has eaten the event and it will not be processed
by the view or other services.
Notice, that this is called both for events in the gutter AND for events in the text.
-
keyPress: key x: x y: y in: view
-
Handles an event in given view (a subview of codeView).
If the method returns true, it has eaten the event and it will not be processed
by the view.
-
linesDeletedFrom: start to: end
-
-
linesInsertedFrom: start to: end
-
-
setBreakpointAtX: x y: y
-
-
setOrToggleBreakpointAtX: x y: y
-
help
-
basicHelpTextAtLine: ignoredLineNr
-
-
helpTextAtLine: ignoredLineNr
-
initialization
-
fetchMethodHolder
-
redefinable in subclasses, which do not have a codeView2/methodHolder
-
initialize
-
(comment from inherited method)
just to ignore initialize to objects which do not need it
private
-
fixupBreakpointPositions
-
computes the character positions of all line breakpoints
-
moveBreakpointsAfterLine: line by: delta
-
self assert:(breakpoints anySatisfy:[:b | b line < 0]) not.
-
recompile
-
recompile the current method for changed breakpoints
-
recompileMethod: oldMethod
-
recompile oldMethod for changed breakpoints
-
setBreakpoints: aCollection
-
ensure that breakpoints is a list and that I depend on it
-
sortBreakpoints
-
breakpoints are sorted by line
(or even by position within a line, but those are currently not supported by the GUI)
queries
-
canCreateOrToggleBreakpointAtLine: lineOrNilForAnywhere
-
is it possible to place a breakpoint here and now?
-
hasBreakpoints
-
-
singleClickToToggle
-
not yet working correctly: must ignore double clicks then,
redrawing
-
drawLine: lineNo in: view atX: x y: yBaseline width: w height: hFont ascent: aFont from: startCol to: endColOrNil with: fg and: bg
-
Called by both gutterView and textView (well, not yet) to
allow services to draw custom things on text view.
Ask JV what the args means if unsure (I'm lazy to document
them, now it is just an experiment...)
registering
-
registerIn: aCodeView
-
(comment from inherited method)
Installs myself in aCodeView
testing
-
isBreakpointService
-
FailedToSetBreakpointNotification
|