home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / FOCI.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  57 lines

  1. /********************************************************************/
  2. /*  Licensed Materials - Property of IBM                            */
  3. /*                                                                  */
  4. /*                                                                  */
  5. /* Copyright (C) International Business Machines Corp., 1994.       */
  6. /* Copyright (C) Apple Computer, Inc., 1994                         */
  7. /*                                                                  */
  8. /*  US Government Users Restricted Rights -                         */
  9. /*  Use, duplication, or disclosure restricted                      */
  10. /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  11. /*                                                                  */
  12. /*                                                                  */
  13. /********************************************************************/
  14.  
  15.  
  16. #ifndef _FOCI_
  17. #define _FOCI_
  18.  
  19. #ifndef _ODTYPESB_
  20. #include "ODTypesB.idl"
  21. #endif
  22.  
  23. #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
  24. #pragma somemittypes on
  25. #endif
  26.  
  27. const ODTypeToken kODNullFocus = 0;  // Returned by iterators. Ignored
  28. const ODFocusType kODKeyFocus = "Key";
  29. const ODFocusType kODMenuFocus = "Menu";
  30. const ODFocusType kODSelectionFocus = "Selection";
  31. const ODFocusType kODModalFocus = "Modal";
  32. const ODFocusType kODScrollingFocus = "Scrolling";
  33. const ODFocusType kODClipboardFocus = "Clipboard";
  34. #ifdef _PLATFORM_OS2_
  35. const ODFocusType kODMouseFocus = "Mouse";
  36. const ODFocusType kODStatusLineFocus = "Statusline";// garrett
  37.  
  38. const ODFocusType kODDeskTopToolFocus = "TSDeskTop";   //toolspace foci
  39. const ODFocusType kODDocumentToolFocus = "TSDocument";
  40. const ODFocusType kODRootToolFocus = "TSRootFrame";
  41. const ODFocusType kODPartFrameToolFocus = "TSPartFrame";
  42. const ODFocusType kODStatusToolFocus = "TSStatus";
  43. const ODFocusType kODStatusTextFocus = "TSStatusText";
  44.  
  45. #endif // _PLATFORM_OS2_
  46.  
  47. #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
  48. #pragma somemittypes off
  49. #endif
  50.  
  51. module OpenDoc_Foci
  52. {
  53.   const string OpenDoc_Foci_Version = "1.0.";
  54. };
  55.  
  56. #endif // _FOCI_
  57.