KeyboardForwarder.st
changeset 598 1a2339e902d4
parent 490 1d2ed059a063
child 612 8758d0c9933e
--- a/KeyboardForwarder.st	Tue Apr 23 21:41:54 1996 +0200
+++ b/KeyboardForwarder.st	Tue Apr 23 21:57:07 1996 +0200
@@ -64,33 +64,36 @@
     while general destinations get a #keyXXX:x:y:view: message, with the original
     view (the one in which the event occurred) as additional argument.
 
-    Instance Variables:
+    [Instance Variables:]
 
-	destinationView         <View>          the view which shall receive
-						the forwarded keyboard events.
+        destinationView         <View>          the view which shall receive
+                                                the forwarded keyboard events.
 
-	destination             <Object>        the object which shall receive
-						the forwarded keyboard events.
+        destination             <Object>        the object which shall receive
+                                                the forwarded keyboard events.
 
-	sourceView              <ViewOrNil>     if non-nil, only events from this
-						view are forwarded.
-						(currently nowhere used)
+        sourceView              <ViewOrNil>     if non-nil, only events from this
+                                                view are forwarded.
+                                                (currently nowhere used)
 
-	condition               <Symbol>        an additional condition for forwarding
-						currently only #noFocus is implemented.
-						The #noFocus condition will only forward
-						events if no explicit focus has been
-						set in the windowGroup.
+        condition               <Symbol>        an additional condition for forwarding
+                                                currently only #noFocus is implemented.
+                                                The #noFocus condition will only forward
+                                                events if no explicit focus has been
+                                                set in the windowGroup.
 
-				<Block>         condition block - event is forwarded,
-						if it evaluates to true.
-						The block gets 3 arguments:
-						    eventType   #keyPress or #keyRelease
-						    key         the key
-						    view        the originating view
+                                <Block>         condition block - event is forwarded,
+                                                if it evaluates to true.
+                                                The block gets 3 arguments:
+                                                    eventType   #keyPress or #keyRelease
+                                                    key         the key
+                                                    view        the originating view
 
     For more info on event handling/forwarding, see the documentation in
     WindowSensor, WindowGroup and especially in WindowEvent.
+
+    [see also:]
+        WindowEvent WindowSensor WindowGroup
 "
 !
 
@@ -422,5 +425,5 @@
 !KeyboardForwarder class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/KeyboardForwarder.st,v 1.12 1996-03-04 22:31:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/KeyboardForwarder.st,v 1.13 1996-04-23 19:56:57 cg Exp $'
 ! !