home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / FOCUSSET.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  76 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. #ifndef _FOCUSSET_
  14. #define _FOCUSSET_
  15.  
  16. #ifndef _ODOBJECT_
  17. #include "ODObject.idl"
  18. #endif
  19.  
  20. //=====================================================================================
  21. // Classes defined in this interface
  22. //=====================================================================================
  23.  
  24. interface  ODFocusSet;
  25.  
  26. //=====================================================================================
  27. // Classes used by this interface
  28. //=====================================================================================
  29.  
  30. interface  ODFocusSetIterator;
  31.  
  32.  
  33. //=====================================================================================
  34. // ODFocusSet
  35. //=====================================================================================
  36.  
  37. interface ODFocusSet : ODObject
  38. {
  39.  
  40.   void Add(in ODTypeToken focus);
  41.  
  42.   void Remove(in ODTypeToken focus);
  43.  
  44.   ODBoolean Contains(in ODTypeToken focus);
  45.  
  46.   ODFocusSetIterator  CreateIterator();
  47.  
  48.  
  49. #ifdef __SOMIDL__
  50.   implementation
  51.   {
  52.       functionprefix = ODFocusSet;
  53.  
  54.   override:
  55.     somInit,
  56.     somUninit;
  57.  
  58.     releaseorder:
  59.         Add,
  60.         Remove,
  61.         Contains,
  62.         CreateIterator,
  63.     reserved1,
  64.     reserved2,
  65.     reserved3,
  66.     reserved4,
  67.     reserved5,
  68.     reserved6;
  69.  
  70.  
  71.   };
  72. #endif
  73. };
  74.  
  75. #endif // _FOCUSSET_
  76.