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

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