home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 19.ddi / OWLINC.PAK / EDITVIEW.RC < prev    next >
Encoding:
Text File  |  1993-12-02  |  2.2 KB  |  73 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1993 by Borland International
  3. //   include\owl\editview.rc
  4. //   Menu and accelerators for use with TEditView
  5. //----------------------------------------------------------------------------
  6.  
  7. #include <owl\editsear.rh>
  8. #define NO_IDM_EDITSEARCH
  9. #define NO_IDA_EDITSEARCH
  10. #include <owl\editsear.rc>
  11.  
  12. #define IDM_EDITVIEW   32581
  13. #define IDA_EDITVIEW   32581
  14.  
  15. #if defined(RC_INVOKED)
  16.  
  17. #if !defined(NO_IDM_EDITVIEW) && !defined(__IDM_EDITVIEW)
  18. #define __IDM_EDITVIEW
  19. IDM_EDITVIEW MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  20. BEGIN
  21.   POPUP "&Edit"
  22.   BEGIN
  23.     MenuItem  "&Undo\aAlt+BkSp",      CM_EDITUNDO
  24.     MenuItem  SEPARATOR
  25.     MenuItem  "&Cut\aShift+Del",      CM_EDITCUT
  26.     MenuItem  "C&opy\aCtrl+Ins",      CM_EDITCOPY
  27.     MenuItem  "&Paste\aShift+Ins",    CM_EDITPASTE
  28.     MenuItem  "&Delete\aDel",         CM_EDITDELETE
  29.     MenuItem  "C&lear All\aCtrl+Del", CM_EDITCLEAR
  30.   END
  31.   POPUP "&Search"
  32.   BEGIN
  33.     MenuItem  "&Find...",    CM_EDITFIND
  34.     MenuItem  "&Replace...", CM_EDITREPLACE
  35.     MenuItem  "&Next\aF3",   CM_EDITFINDNEXT
  36.   END
  37.   POPUP "&Help"
  38.   BEGIN
  39.     MenuItem  "OWL EditView", 0, INACTIVE
  40.   END
  41. END
  42. #endif
  43. #undef NO_IDM_EDITVIEW
  44.  
  45. #if !defined(NO_IDA_EDITVIEW) && !defined(__IDA_EDITVIEW)
  46. #define __IDA_EDITVIEW
  47. IDA_EDITVIEW ACCELERATORS
  48. BEGIN
  49. ; VK_BACK,   CM_EDITUNDO, VIRTKEY, ALT
  50.   VK_F3,     CM_EDITFINDNEXT, VIRTKEY
  51. END
  52. #endif
  53. #undef NO_IDA_EDITVIEW
  54.  
  55. #if !defined(NO_IDS_EDITVIEW) && !defined(__IDS_EDITVIEW)
  56. #define __IDS_EDITVIEW
  57. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  58. BEGIN
  59.   CM_EDITUNDO,  "Reverses the last operation"
  60.   CM_EDITCUT,   "Cuts the selection and puts it on the Clipboard"
  61.   CM_EDITCOPY,  "Copies the selection to the Clipboard"
  62.   CM_EDITPASTE, "Inserts the Clipboard contents at the caret"
  63.   CM_EDITDELETE,"Deletes the selection"
  64.   CM_EDITCLEAR, "Clear the document"
  65.   CM_EDITFIND,  "Finds the specified text"
  66.   CM_EDITREPLACE, "Finds the specified text and changes it"
  67.   CM_EDITFINDNEXT,"Finds the next match"
  68. END
  69. #endif
  70. #undef NO_IDS_EDITVIEW
  71.  
  72. #endif  // defined(RC_INVOKED)
  73.