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