home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / uicldd.zip / IDMEFPV.HPP < prev    next >
Text File  |  1993-08-19  |  3KB  |  73 lines

  1. #ifndef _IDMEFPV_
  2.   #define _IDMEFPV_
  3. /*******************************************************************************
  4. * FILE NAME: idmefpv.hpp                                                       *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the class(es):                                              *
  8. *    IDMEFItemProvider - This class creates and manages entry field drag       *
  9. *                        item providers.                                       *
  10. *                                                                              *
  11. * COPYRIGHT:                                                                   *
  12. *   Licensed Materials - Property of IBM                                       *
  13. *   (C) Copyright IBM Corporation 1992, 1993                                   *
  14. *   All Rights Reserved                                                        *
  15. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  16. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  17. *                                                                              *
  18. * $Log:   M:/ibmclass/idrag/vcs/idmefpv.hpv  $
  19. //
  20. //   Rev 1.3   19 Aug 1993 10:56:52   banzai
  21. //No changes
  22. //
  23. //   Rev 1.2   12 Aug 1993 13:52:30   banzai
  24. //Merge source and target item into one
  25. //
  26. //   Rev 1.1   10 Aug 1993 15:19:58   banzai
  27. //Make drag item provider into template
  28. //
  29. //   Rev 1.0   09 Aug 1993 16:34:20   banzai
  30. //Back to entry field
  31. //
  32. *******************************************************************************/
  33. #ifndef _IDMPROV_
  34.   #include <idmprov.hpp>
  35. #endif
  36.  
  37. #ifndef _IDMEFIT_
  38.   #include <idmefit.hpp>
  39. #endif
  40.  
  41. // Forward declarations for other classes:
  42.  
  43.  
  44. class IDMEFItemProvider : public IDMItemProviderFor < IDMEFItem >
  45. {
  46. /*******************************************************************************
  47. * The IDMEFItemProvider class provides support for creating entry field        *
  48. * source and target drag items.                                                *
  49. *                                                                              *
  50. * EXAMPLE:                                                                     *
  51. *   IDMEFItemProvider dragEFItem();                                            *
  52. *                                                                              *
  53. *******************************************************************************/
  54.  
  55. public:
  56.  
  57. /*------------------------ Constructors ----------------------------------------
  58. | Objects of this class are constructed in the following manner:               |
  59. ------------------------------------------------------------------------------*/
  60.   IDMEFItemProvider     ( );
  61.  
  62. virtual
  63.   ~IDMEFItemProvider    ( );
  64.  
  65. protected:
  66.  
  67. private:
  68. /*--------------------------------- PRIVATE ----------------------------------*/
  69.  
  70. };  // class IDMEFItemProvider
  71.  
  72. #endif  /* _IDMEFPV_ */
  73.