home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / help / helpmenu / hkeyshdr.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  637 b   |  25 lines

  1. #ifndef _HKEYSHDR_
  2. #define _HKEYSHDR_
  3. //*********************************************************
  4. // Using Help - Help Menu Choices
  5. //
  6. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. // Copyright (c) 1997 John Wiley & Sons, Inc.
  8. // All Rights Reserved.
  9. //*********************************************************
  10. #include <ihelphdr.hpp>
  11. #include "helpmenu.h"   // For PANEL_KEYS_HELP.
  12.  
  13. class KeysHelpHandler : public IHelpHandler {
  14. protected:
  15. virtual Boolean
  16.   keysHelpId ( IEvent& event )
  17.   {
  18.     event
  19.      .setResult( PANEL_KEYS_HELP );
  20.     return true;
  21.   }
  22. }; // KeysHelpHandler
  23.  
  24. #endif // _HKEYSHDR_
  25.