diff -r 4e687999a17d -r cbd8fde601b7 Tools__CodeViewService.st --- a/Tools__CodeViewService.st Tue Nov 18 21:58:28 2014 +0100 +++ b/Tools__CodeViewService.st Wed Nov 19 18:43:00 2014 +0100 @@ -201,6 +201,10 @@ !CodeViewService methodsFor:'accessing'! +annotationAtLine:lineNr + ^ nil +! + application ^codeView application @@ -269,6 +273,14 @@ "Modified (comment): / 18-08-2011 / 15:57:40 / cg" ! +buttonMultiPress: 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." + + ^false +! + 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 @@ -335,6 +347,12 @@ "Created: / 23-01-2012 / 10:38:20 / Jan Vrany " ! ! +!CodeViewService methodsFor:'help'! + +flyByHelpTextAtLine:aLineNr + ^ nil +! ! + !CodeViewService methodsFor:'initialization'! initialize @@ -435,10 +453,10 @@ !CodeViewService class methodsFor:'documentation'! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.16 2014-02-05 18:57:39 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeViewService.st,v 1.17 2014-11-19 17:43:00 cg Exp $' ! version_SVN - ^ '$Id: Tools__CodeViewService.st,v 1.16 2014-02-05 18:57:39 cg Exp $' + ^ '$Id: Tools__CodeViewService.st,v 1.17 2014-11-19 17:43:00 cg Exp $' ! !