home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / 3DMAZE.ZIP / HEXMAZE.RC < prev    next >
Text File  |  1992-08-22  |  1KB  |  41 lines

  1. #define INCL_PM
  2. #include <os2.h>
  3. #include "hexmaze.h"
  4.  
  5. POINTER ID_MAINMENU hexmaze.ico
  6.  
  7. MENU ID_MAINMENU
  8.   {
  9.     SUBMENU "~Options",-1
  10.       {
  11.         MENUITEM "~Solve\tAltS",IDM_SOLVE
  12.         MENUITEM "~New\tAltN",IDM_NEW
  13.         MENUITEM "~Clear\tAltC",IDM_CLEAR
  14.         MENUITEM "~Help\tAltH",IDM_HELP
  15.       }
  16.   }
  17.  
  18. ACCELTABLE ID_MAINMENU
  19.   {
  20.     "s",IDM_SOLVE,CHAR,ALT
  21.     "n",IDM_NEW,CHAR,ALT
  22.     "c",IDM_CLEAR,CHAR,ALT
  23.     "h",IDM_HELP,CHAR,ALT
  24.   }
  25.  
  26. DLGTEMPLATE IDD_HELPBOX
  27.   {
  28.     DIALOG  "",-1,5,5,224,123,WS_SAVEBITS|FS_DLGBORDER
  29.       {
  30.         LTEXT "     Resize or select New for a new maze.",-1,2,107,179,8
  31.         LTEXT "     Select Solve to outline the solution.",-1,2,93,168,8
  32.         LTEXT "     Select Clear to remove the solution.",-1,2,78,168,8
  33.         LTEXT "     Use the horizontal scroll bar to vary the rotation",-1,2,64,220,8
  34.         LTEXT "from 0 to 360 degrees.",-1,2,56,101,8
  35.         LTEXT "     Use the vertical scroll bar to vary the tilt from",-1,2,40,207,8
  36.         LTEXT "0 to 90 degrees.",-1,2,33,73,8
  37.         DEFPUSHBUTTON "Okay",DID_OK,82,10,40,14,WS_GROUP
  38.      }
  39.   }
  40. 
  41.