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

  1. #ifndef _IEDITHDR_
  2. #define _IEDITHDR_
  3. /*******************************************************************************
  4. * FILE NAME: iedithdr.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IEditHandler                                                             *
  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.  
  24. class IEditHandler : public IHandler {
  25. typedef IHandler
  26.   Inherited;
  27. public:
  28. /*------------------------------- Constructors -------------------------------*/
  29. virtual
  30.  ~IEditHandler ( );
  31.  
  32. protected:
  33. /*------------------------------- Constructors -------------------------------*/
  34.   IEditHandler ( );
  35.  
  36. /*---------------------------- Event Dispatching -----------------------------*/
  37. virtual Boolean
  38.   dispatchHandlerEvent ( IEvent& event );
  39.  
  40. /*----------------------------- Event Processing -----------------------------*/
  41. virtual Boolean
  42.   edit ( IControlEvent& event ) = 0;
  43. }; // IEditHandler
  44.  
  45. #pragma pack()
  46.  
  47. #endif /* _IEDITHDR_ */
  48.