home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / template.zip / HELP.RC < prev    next >
Text File  |  1998-04-20  |  3KB  |  76 lines

  1. /**************************************************************************
  2.  *  File name  :  help.rc
  3.  *
  4.  *  Description:  This resource file contains the Help table and subtable
  5.  *                resources used by the help manager.
  6.  *
  7.  *  Concepts   :  resource script
  8.  *
  9.  *  API's      :  [none]
  10.  *
  11.  *  Required
  12.  *    Files    :  OS2.H, MAIN.H, HELP.H, DLG.H
  13.  *
  14.  *  Copyright (C) 1991 IBM Corporation
  15.  *
  16.  *      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  17.  *      sample code created by IBM Corporation. This sample code is not
  18.  *      part of any standard or IBM product and is provided to you solely
  19.  *      for  the purpose of assisting you in the development of your
  20.  *      applications.  The code is provided "AS IS", without
  21.  *      warranty of any kind.  IBM shall not be liable for any damages
  22.  *      arising out of your use of the sample code, even if they have been
  23.  *      advised of the possibility of such damages.                                                    *
  24.  *************************************************************************/
  25.  
  26. #include <os2.h>
  27. #include "main.h"
  28. #include "help.h"
  29. #include "dlg.h"
  30.  
  31. /*
  32.  *  Help table definition
  33.  */
  34. HELPTABLE   TEMPLATE_HELP_TABLE
  35. {
  36.     HELPITEM    IDR_MAIN,       SUBTABLE_MAIN,         PANEL_MAIN
  37.     HELPITEM    IDD_PRODUCTINFO, SUBTABLE_PRODUCTINFODLG, PANEL_PRODUCTINFODLG
  38. }
  39.  
  40.  
  41. /*
  42.  *  Main window subtable, includes menu item help
  43.  */
  44. HELPSUBTABLE SUBTABLE_MAIN
  45. SUBITEMSIZE     2
  46. {
  47.     HELPSUBITEM     IDM_FILE,                   PANEL_FILE
  48.     HELPSUBITEM     IDM_FILENEW,                PANEL_FILENEW
  49.     HELPSUBITEM     IDM_FILEOPEN,               PANEL_FILEOPEN
  50.     HELPSUBITEM     IDM_FILESAVE,               PANEL_FILESAVE
  51.     HELPSUBITEM     IDM_FILESAVEAS,             PANEL_FILESAVEAS
  52.     HELPSUBITEM     IDM_EDIT,                   PANEL_EDIT
  53.     HELPSUBITEM     IDM_EDITUNDO,               PANEL_EDITUNDO
  54.     HELPSUBITEM     IDM_EDITCUT,                PANEL_EDITCUT
  55.     HELPSUBITEM     IDM_EDITCOPY,               PANEL_EDITCOPY
  56.     HELPSUBITEM     IDM_EDITPASTE,              PANEL_EDITPASTE
  57.     HELPSUBITEM     IDM_EDITCLEAR,              PANEL_EDITCLEAR
  58.  
  59.     HELPSUBITEM     IDM_HELP,                   PANEL_HELP
  60.     HELPSUBITEM     IDM_HELPINDEX,              PANEL_HELPINDEX
  61.     HELPSUBITEM     IDM_HELPGENERAL,            PANEL_HELPGENERAL
  62.     HELPSUBITEM     IDM_HELPUSINGHELP,          PANEL_HELPUSINGHELP
  63.     HELPSUBITEM     IDM_HELPTUTORIAL,           PANEL_HELPTUTORIAL
  64.     HELPSUBITEM     IDM_HELPPRODUCTINFO,        PANEL_HELPPRODUCTINFO
  65. }
  66.  
  67. /*
  68.  *  Enter text dialog help subtable
  69.  */
  70. HELPSUBTABLE SUBTABLE_PRODUCTINFODLG
  71. SUBITEMSIZE     2
  72. {
  73.     HELPSUBITEM     IDC_OK,             PANEL_PRODUCTINFO_OK
  74. }
  75. /***************************  End of help.rc ****************************/
  76.