home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / help.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  638b  |  33 lines

  1. #ifndef _HELP_H_
  2. #define _HELP_H_
  3.  
  4. #include <pm/StdApp.h>
  5.  
  6. #define DEFAULT_HELPTABLE 1000
  7.  
  8. @interface Help : Object
  9. {
  10.   BOOL helpEnabled;
  11.   HWND helpInstance;
  12. }
  13.  
  14. - initForApp: (StdApp *) anApp helpFile: (char *) fileName;
  15. - initForApp: (StdApp *) anApp helpFile: (char *) fileName
  16.    withTitle: (char *) helpTitle;
  17. - initForApp: (StdApp *) anApp helpFile: (char *) fileName
  18.    withTitle: (char *) helpTitle helpTable: (ULONG) helpTableID;
  19.  
  20. - free;
  21.  
  22. - associateWith: aWindow;
  23.  
  24. - helpForHelp: sender;
  25. - helpExtended: sender;
  26. - helpIndex: sender;
  27. - helpFor: sender;
  28. - helpForTopic: (int) topic;
  29.  
  30. @end
  31.  
  32. #endif
  33.