home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / palettes / KeyDownBrowser.README < prev    next >
Encoding:
Text File  |  1993-12-28  |  2.1 KB  |  28 lines

  1.  
  2. Jim Million    uunet!wiltel!jmillion    November 1992                                  
  3.  
  4. KeyDownBrowser.palette (v1.0)
  5.  
  6. KeyDownBrowser.palette is a 3.0  InterfaceBuilder View palette for the NXBrowser subclass KeyDownBrowser. KeyDownBrowser extends NXBrowser to provide Workspace Manager-like response to keyboard entry. Arrow keys may be used for manuevering.  Other keystrokes are interpreted as search criteria within the appropriate column. Selection within the browser by arrow keys or by keystroke matching is equivalent to a single mouse click and sends the action to the target. Pressing the Return key is equivalent to a double-click and sends the double action to the target.  KeyDownBrowser overrides NXBrowser's default arrow key behavior, instead providing the more intuitive behavior found in the Workspace Manager browser.  Rules for keystroke search were modeled after WM as well. (see Notes... below).
  7.  
  8.  
  9. Important Files...
  10.  KeyDownBrowser.[hm] is the class represented by the palette.
  11.  KeyDownMatrix.[hm] is the Matrix class for an instance of KeyDownBrowser. It 
  12.    overrides Matrix' mouseDown: method to make its containing browser First Responder.
  13.  KeyDownBrowserInspector.[hm] manages IB Attributes inspection of an instance of 
  14.    KeyDownBrowser.
  15.  
  16. Notes...
  17.   If you prefer NXBrowser's default arrow key handling, modify the keyDown: method to
  18.      call [super keyDown: theEvent] for any arrow key hits.
  19.   I've modified WM's arrow key handling in two cases. In WM, it is possible to arrow left
  20.      or right without bringing the newly selected cell into view. KeyDownBrowser will always
  21.      scroll a newly selected cell to visible. If you would prefer WM behavior, modify the 
  22.      leftArrow: and rightArrow: methods and remove the scrollCellToVisible:: methods. Any
  23.      cell selection sends the action. This will be modified to only send action on appropriate
  24.      keyup events as soon as I figure out why I'm not receiving keyup events.
  25.  You will need to include KeyDownBrowser.[hm] and KeyDownMatrix.[hm] in any project 
  26.      that uses this palette (or just include the interface file and link against the object files). 
  27.      (OTHER_OFILES in a Makefile.preamble).
  28.