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

  1. #ifndef _ICOMBONH_
  2.   #define _ICOMBONH_
  3. /*******************************************************************************
  4. * FILE NAME: icombonh.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   Declaration of the classes:                                                *
  8. *     IComboBoxNotifyHandler                                                   *
  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 <ientrynh.hpp>
  19.  
  20. class IComboBoxNotifyHandler : public IEntryFieldNotifyHandler {
  21. typedef IEntryFieldNotifyHandler
  22.   Inherited;
  23. public:
  24. /*----------------------------- Constructors ---------------------------------*/
  25.   IComboBoxNotifyHandler();
  26. virtual
  27.   ~IComboBoxNotifyHandler();
  28.  
  29. protected:
  30. /*---------------------------- Event Processing ------------------------------*/
  31. virtual Boolean
  32.   dispatchHandlerEvent (IEvent& anEvent);
  33. };
  34. #endif /* _ICOMBONH_ */
  35.