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

  1. #ifndef _IMPHDR_
  2.   #define _IMPHDR_
  3. /*******************************************************************************
  4. * FILE NAME: imphdr.hpp                                                        *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IMousePointerHandler                                                     *
  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 <imoushdr.hpp>
  19. #include <imousevt.hpp>
  20.  
  21.  
  22. #pragma pack(4)
  23.  
  24. class IMousePointerHandler : public IMouseHandler {
  25. typedef IMouseHandler
  26.   Inherited;
  27.  
  28. public:
  29. /*------------------------------- Constructors -------------------------------*/
  30.   IMousePointerHandler       ( );
  31.  
  32. virtual
  33.  ~IMousePointerHandler       ( );
  34.  
  35. /*-------------------------------- Accessors ---------------------------------*/
  36. static IMousePointerHandler
  37.  *defaultHandler ( );
  38.  
  39. protected:
  40. /*----------------------------- Event Processing -----------------------------*/
  41. virtual Boolean
  42.   dispatchHandlerEvent ( IEvent&             event );
  43.  
  44. virtual Boolean
  45.   mousePointerChange   ( IMousePointerEvent& event );
  46.  
  47. }; // IMousePointerHandler
  48.  
  49. #pragma pack()
  50.  
  51. #endif // _IMPHDR_
  52.