CharacterArray.st
changeset 11632 b82e9f3cabd1
parent 11630 6db5956f188f
child 11754 5132248cfd6e
--- a/CharacterArray.st	Mon Mar 16 14:32:36 2009 +0100
+++ b/CharacterArray.st	Mon Mar 16 16:16:39 2009 +0100
@@ -3228,6 +3228,12 @@
 
 !CharacterArray methodsFor:'emphasis'!
 
+actionForAll:aBlock
+    "change the action block of all characters"
+
+    ^ self asText actionForAll:aBlock
+!
+
 allBold
     "return a test object representing the receiver, but all boldified"
 
@@ -3317,6 +3323,12 @@
     "Created: 11.5.1996 / 14:13:27 / cg"
 !
 
+emphasisAtPoint:aPoint on:aGC
+    "return the emphasis at a given point, or nil if there is none"
+
+    ^ nil
+!
+
 emphasisCollection
     "return the emphasis.
      Since characterArrays do not hold any emphasis information,
@@ -5733,7 +5745,7 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.393 2009-03-16 09:14:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.394 2009-03-16 15:16:39 stefan Exp $'
 ! !
 
 CharacterArray initialize!