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

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1992, 1993 by Borland International
  3. //   include\owl\editsear.rc
  4. //   Resources to use with TEditSearch.
  5. //----------------------------------------------------------------------------
  6.  
  7. #include <owl\editsear.rh>
  8.  
  9. #if defined(RC_INVOKED)
  10.  
  11. #if !defined(NO_IDM_EDITSEARCH) && !defined(__IDM_EDITSEARCH)
  12. #define __IDM_EDITSEARCH
  13. IDM_EDITSEARCH MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  14. BEGIN
  15.   POPUP "&Edit"
  16.   BEGIN
  17.     MenuItem  "&Undo\aAlt+BkSp", CM_EDITUNDO
  18.     MenuItem  SEPARATOR
  19.     MenuItem  "&Cut\aShift+Del", CM_EDITCUT
  20.     MenuItem  "C&opy\aCtrl+Ins", CM_EDITCOPY
  21.     MenuItem  "&Paste\aShift+Ins", CM_EDITPASTE
  22.     MenuItem  "&Delete\aDel", CM_EDITDELETE
  23.     MenuItem  "C&lear All\aCtrl+Del", CM_EDITCLEAR
  24.   END
  25.   POPUP "&Search"
  26.   BEGIN
  27.     MenuItem  "&Find...", CM_EDITFIND
  28.     MenuItem  "&Replace...", CM_EDITREPLACE
  29.     MenuItem  "&Next\aF3", CM_EDITFINDNEXT
  30.   END
  31. END
  32. #endif
  33. #undef NO_IDM_EDITSEARCH
  34.  
  35. #if !defined(NO_IDA_EDITSEARCH) && !defined(__IDA_EDITSEARCH)
  36. #define __IDA_EDITSEARCH
  37. IDA_EDITSEARCH ACCELERATORS
  38. BEGIN
  39.   VK_DELETE, CM_EDITCUT, VIRTKEY, SHIFT
  40.   VK_INSERT, CM_EDITCOPY, VIRTKEY, CONTROL
  41.   VK_INSERT, CM_EDITPASTE, VIRTKEY, SHIFT
  42.   VK_DELETE, CM_EDITCLEAR, VIRTKEY, CONTROL
  43.   VK_BACK, CM_EDITUNDO, VIRTKEY, ALT
  44.   VK_F3, CM_EDITFINDNEXT, VIRTKEY
  45. END
  46. #endif
  47. #undef NO_IDA_EDITSEARCH
  48.  
  49. #if !defined(NO_IDS_EDITSEARCH) && !defined(__IDS_EDITSEARCH)
  50. #define __IDS_EDITSEARCH
  51. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  52. BEGIN
  53.   IDS_CANNOTFIND, "Cannot find ""%s""."
  54. END
  55. #endif
  56. #undef NO_IDS_EDITSEARCH
  57.  
  58. #endif  // defined(RC_INVOKED)
  59.