home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / pm / dragdrop / draghelp.rc < prev    next >
Text File  |  1999-05-11  |  3KB  |  80 lines

  1. /**************************************************************************
  2.  *  File name  :  draghelp.rc
  3.  *
  4.  *  Description:  The DRAGHELP resource file defines resources
  5.  *                used in help tables
  6.  *
  7.  *  Concepts   :  IPF
  8.  *
  9.  *  API's      :  [none]
  10.  *
  11.  *  Required
  12.  *    Files    :  OS2.H, DRAGDROP.H, DRAGHELP.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 "dragdrop.h"
  28. #include "draghelp.h"
  29.  
  30. /*
  31.  *  Help table definition
  32.  */
  33. HELPTABLE   DRAGDROP_HELP_TABLE
  34. {
  35.     HELPITEM    ID_RESOURCE,    SUBTABLE_MAIN,         PANEL_MAIN
  36.     HELPITEM    IDD_OPEN,       SUBTABLE_OPENDLG,      PANEL_OPENDLG
  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_FILEOPEN,               PANEL_FILEOPEN
  49.     HELPSUBITEM     IDM_WINDOW,                 PANEL_WINDOW
  50.     HELPSUBITEM     IDM_WINDOWREFRESH,          PANEL_WINDOWREFRESH
  51.     HELPSUBITEM     IDM_WINDOWSELECTALL,        PANEL_WINDOWSELECTALL
  52.     HELPSUBITEM     IDM_WINDOWDESELECTALL,      PANEL_WINDOWDESELECTALL
  53.  
  54.     HELPSUBITEM     IDM_HELP,                   PANEL_HELP
  55.     HELPSUBITEM     IDM_HELPINDEX,              PANEL_HELPINDEX
  56.     HELPSUBITEM     IDM_HELPGENERAL,            PANEL_HELPGENERAL
  57.     HELPSUBITEM     IDM_HELPUSINGHELP,          PANEL_HELPUSINGHELP
  58.     HELPSUBITEM     IDM_HELPPRODUCTINFO,        PANEL_HELPPRODUCTINFO
  59. }
  60.  
  61. /*
  62.  *  Select subdirectory dialog help subtable
  63.  */
  64. HELPSUBTABLE SUBTABLE_OPENDLG
  65. SUBITEMSIZE     2
  66. {
  67.     HELPSUBITEM     IDC_OK,             PANEL_OPENDLG_OK
  68.     HELPSUBITEM     IDC_HELP,           PANEL_OPENDLG_HELP
  69. }
  70.  
  71. /*
  72.  *  Product information help subtable
  73.  */
  74. HELPSUBTABLE SUBTABLE_PRODUCTINFODLG
  75. SUBITEMSIZE     2
  76. {
  77.     HELPSUBITEM     IDC_OK,             PANEL_PRODUCTINFO_OK
  78. }
  79. /***************************  End of draghelp.rc *************************/
  80.