home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / source / bento / headers / foci.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-02  |  887 b   |  38 lines

  1. /*
  2.     File:        Foci.h
  3.  
  4.     Contains:    Definition of standard Foci for the Macintosh.
  5.  
  6.     Written by:    Richard Rodseth
  7.  
  8.     Copyright:    ⌐ 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>      2/9/94    NP        Tiger Team cleanup.
  13.          <2>      2/7/94    NP        Tiger Team doings.
  14.          <1>     1/25/94    RR        first checked in
  15.  
  16.     To Do:
  17. */
  18.  
  19.  
  20. #ifndef _FOCI_
  21. #define _FOCI_
  22.  
  23. #ifndef _XMPTYPES_
  24. #include "XMPTypes.h"
  25. #endif
  26.  
  27. // Focus Types for the Arbitrator. 
  28. // These strings are tokenized using XMPSession::Tokenize()
  29.  
  30. const XMPTypeToken kXMPNullFocus = 0;    // Returned by iterators. Ignored    
  31. const XMPFocusType kXMPKeyFocus = "Key";    
  32. const XMPFocusType kXMPMenuFocus = "Menu";    
  33. const XMPFocusType kXMPSelectionFocus = "Selection";    
  34. const XMPFocusType kXMPModalFocus = "Modal";    
  35. const XMPFocusType kXMPScrollingFocus = "Scrolling";    
  36.  
  37. #endif // _FOCI_
  38.