home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / os2sdk / os2sdk11 / petzold / chap15 / blowup.rc < prev    next >
Encoding:
Text File  |  1989-02-20  |  728 b   |  30 lines

  1. /*--------------------------------
  2.    BLOWUP.RC resource script file
  3.   --------------------------------*/
  4.  
  5. #include <os2.h>
  6. #include "blowup.h"
  7.  
  8. MENU ID_RESOURCE
  9.      {
  10.      SUBMENU "~Edit",         IDM_EDIT
  11.           {
  12.           MENUITEM "~Copy\tCtrl+Ins",    IDM_COPY
  13.           MENUITEM "~Paste\tShift+Ins",  IDM_PASTE
  14.           }
  15.  
  16.      MENUITEM "~Capture!",    IDM_CAPTURE
  17.  
  18.      SUBMENU "~Display",      IDM_DISPLAY
  19.           {
  20.           MENUITEM "~Actual size",       IDM_ACTUAL,, MIA_CHECKED
  21.           MENUITEM "~Stretch to window", IDM_STRETCH
  22.           }
  23.      }
  24.  
  25. ACCELTABLE ID_RESOURCE
  26.      {
  27.      VK_INSERT, IDM_COPY,  VIRTUALKEY, CONTROL
  28.      VK_INSERT, IDM_PASTE, VIRTUALKEY, SHIFT
  29.      }
  30.