focus handling: focusSequence removed
authorca
Fri, 02 Mar 2007 16:05:19 +0100
changeset 2289 1532c16413bb
parent 2288 e0aae2de3794
child 2290 6827cdb5700a
focus handling: focusSequence removed
ApplicationModel.st
--- a/ApplicationModel.st	Fri Mar 02 16:00:05 2007 +0100
+++ b/ApplicationModel.st	Fri Mar 02 16:05:19 2007 +0100
@@ -807,28 +807,6 @@
     ^ self builder componentAt:name
 !
 
-focusSequence
-    "return a focusSequence for stepping through the applications views.
-     The builder usually keeps track of so-called 'tabable' views.
-     Stepping is done with the FocusNext/FocusPrevius keys, which are 
-     typically bound to Meta-CursorUp/Meta-CursorDown.
-     (unless the focus is currently attached to a textEditing view,
-      tabbing is also possible via the tab-key)
-     Subclasses which do not use the builder (but instead build their view
-     programmatically) should redefine this method to return a collection of
-     views which defines that sequence.
-     Notice, that the focuse sequence is asked for at the time of the tabbing
-     (not only during startup of the view) - so dynamically adding/removing
-     components is possible."
-
-    builder notNil ifTrue:[
-        ^ builder focusSequence
-    ].
-    ^ nil
-
-    "Modified: / 31.10.1997 / 19:11:14 / cg"
-!
-
 masterApplication
     "return the value of the instance variable 'masterApplication' (automatically generated)"
 
@@ -2966,7 +2944,7 @@
 !ApplicationModel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.232 2007-02-27 10:09:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.233 2007-03-02 15:05:19 ca Exp $'
 ! !
 
 ApplicationModel initialize!