home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / help / helptbl / helptbl.h < prev    next >
Text File  |  1996-10-29  |  2KB  |  46 lines

  1. /************************************************************
  2. / Using Help - Help Tables
  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_LISTBOX                   1001
  22. #define ID_PRIMARY2                  2000
  23. #define ID_SECONDARY_MODELESS        3000
  24. #define ID_SECONDARY_MODAL           4000
  25.  
  26. // Generic window identifiers.
  27. #define ID_CLIENT                    IC_FRAME_CLIENT_ID
  28. #define ID_DUMMY                     1
  29. #define ID_ENTRY1                    500
  30. #define ID_ENTRY2                    501
  31. #define ID_HELP_BUTTON               502
  32.  
  33. // Menu bar identifiers.
  34. #define ID_MENUBAR                   100
  35. #define ID_FILE                      101
  36. #define ID_CHOICE1                   102
  37. #define ID_CHOICE2                   103
  38. #define ID_CLOSE                     IC_ID_CLOSE
  39.  
  40. // Help table and subtable identifiers.
  41. #define ID_HELPTABLE                 1000
  42. #define SUBTABLE_PRIMARY             1
  43. #define SUBTABLE_PRIMARY2            2
  44. #define SUBTABLE_SEC_MODELESS        3
  45. #define SUBTABLE_SEC_MODAL           4
  46.