home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / docview.pak / DUMPVIEW.RC < prev    next >
Text File  |  1997-07-23  |  2KB  |  60 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1993 by Borland International
  3. //   Menu and accelerators for use with TDumpView
  4. //----------------------------------------------------------------------------
  5.  
  6. #define CM_DUMPUNDO         24681
  7. #define CM_DUMPCUT          24682
  8. #define CM_DUMPCOPY         24683
  9. #define CM_DUMPPASTE        24684
  10. #define CM_DUMPEDIT         24688
  11. #define IDM_DUMPVIEW        32382
  12. #define IDA_DUMPVIEW        32382
  13. #define IDS_DUMPNUM         32382
  14.  
  15. #if defined(RC_INVOKED)
  16.  
  17.  
  18. IDM_DUMPVIEW MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  19. BEGIN
  20.   POPUP "&Edit"
  21.   BEGIN
  22.     MenuItem  "&Undo\aCtrl+Z",        CM_DUMPUNDO
  23.     MenuItem  SEPARATOR
  24.     MenuItem  "&Cut\aCtrl+X",         CM_DUMPCUT
  25.     MenuItem  "C&opy\aCtrl+C",        CM_DUMPCOPY
  26.     MenuItem  "&Paste\aCtrl+V",       CM_DUMPPASTE
  27.     MenuItem  "&Edit Item\aAlt+Enter",CM_DUMPEDIT
  28.   END
  29.   POPUP "&Help"
  30.   BEGIN
  31.     MenuItem  "OWL DumpView", 0, INACTIVE
  32.   END
  33. END
  34.  
  35. IDA_DUMPVIEW ACCELERATORS
  36. BEGIN
  37.   "^z",      CM_DUMPUNDO,
  38.   "^x",      CM_DUMPCUT,
  39.   "^c",      CM_DUMPCOPY,
  40.   "^v",      CM_DUMPPASTE,
  41.   VK_DELETE, CM_DUMPCUT,   VIRTKEY, SHIFT
  42.   VK_INSERT, CM_DUMPCOPY,  VIRTKEY, CONTROL
  43.   VK_INSERT, CM_DUMPPASTE, VIRTKEY, SHIFT
  44.   VK_BACK,   CM_DUMPUNDO,  VIRTKEY, ALT
  45.   VK_RETURN, CM_DUMPEDIT,  VIRTKEY
  46. END
  47.  
  48. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  49. BEGIN
  50.   CM_DUMPUNDO,  "Reverses the last operation"
  51.   CM_DUMPCUT,   "Cuts the selection and puts it on the Clipboard"
  52.   CM_DUMPCOPY,  "Copies the selection to the Clipboard"
  53.   CM_DUMPPASTE, "Inserts the Clipboard contents at the caret"
  54.   CM_DUMPEDIT,  "Edit the current line"
  55.  
  56.   IDS_DUMPNUM,  "Address %d"
  57. END
  58.  
  59. #endif  // defined(RC_INVOKED)
  60.