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

  1. /**********************************************************
  2. / Using Help - Help Menu Choices
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc.
  6. / All Rights Reserved.
  7. **********************************************************/
  8. #include <icconst.h>
  9. #include "hlppanel.h"
  10.  
  11. #ifdef IC_PM
  12.   // Define special window identifiers not originally
  13.   // included in VisualAge for C++ V3.0.
  14.   #ifndef IC_ID_CLOSE
  15.     #define IC_ID_CLOSE  0x8004
  16.   #endif
  17. #endif
  18.  
  19. // Window identifiers.
  20. #define ID_PRIMARY                   1000
  21. #define ID_CLIENT                    IC_FRAME_CLIENT_ID
  22. #define ID_HEADING                   1001
  23. #define ID_SECONDARY_PB              1002
  24. #define ID_EXIT_PB                   1003
  25. #define ID_SECONDARY                 2000
  26.  
  27. // Menu bar identifiers.
  28. #define ID_MENUBAR                   ID_PRIMARY
  29. #define ID_FILE                      101
  30. #define ID_CLOSE                     IC_ID_CLOSE
  31. #define ID_HELP                      200
  32. #define ID_USINGHELP                 201
  33. #define ID_PRODUCTINFO               202
  34. #define ID_HELPCONTENTS              203
  35.  
  36. // Help table and subtable identifiers.
  37. #define ID_HELPTABLE                 3000
  38. #define SUBTABLE_PRIMARY             1
  39. #define SUBTABLE_SECONDARY           2
  40.