home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / idmmleit.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.2 KB  |  62 lines

  1. #ifndef _IDMMLEIT_
  2. #define _IDMMLEIT_
  3. /*******************************************************************************
  4. * FILE NAME: idmmleit.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IDMMLEItem                                                               *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM Open Class Library                                                     *
  12. *   (C) Copyright International Business Machines Corporation 1992, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *******************************************************************************/
  18. #include <idmitem.hpp>
  19.  
  20. class IDMSourceOperation;
  21. class IDMMLEItemData;
  22.  
  23. #pragma pack(4)
  24.  
  25. class IDMMLEItem : public IDMItem {
  26. typedef IDMItem
  27.   Inherited;
  28. public:
  29.  
  30. /*------------------------------- Constructors -------------------------------*/
  31.   IDMMLEItem  ( IDMSourceOperation*    sourceOperation );
  32.  
  33.   IDMMLEItem  ( const IDMItem::Handle& dragItem );
  34.  
  35. virtual
  36.   ~IDMMLEItem ( );
  37.  
  38.  
  39. /*------------------------------ Source Items --------------------------------*/
  40. static Boolean
  41.   generateSourceItems ( IDMSourceOperation* sourceOperation );
  42.  
  43. virtual void
  44.  *object              ( ) const;
  45.  
  46. /*------------------------------ Drop Processing -----------------------------*/
  47. virtual Boolean
  48.   sourceEnd  ( IDMSourceEndEvent&  event ),
  49.   targetDrop ( IDMTargetDropEvent& event );
  50.  
  51. private:
  52. /*--------------------------------- Private ----------------------------------*/
  53.  
  54. IDMMLEItemData
  55.  *fDMMLEItemData;
  56.  
  57. }; // IDMMLEItem
  58.  
  59. #pragma pack()
  60.  
  61. #endif // _IDMMLEIT_
  62.