home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 10.ddi / MFILEAPP.ZIP / MFILEAPP.RC < prev   
Encoding:
Text File  |  1992-06-10  |  1.4 KB  |  49 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. #include "windows.h"
  4. #include "owlrc.h"
  5. #include "mfileapp.h"
  6.  
  7. #include "filedial.dlg"
  8. #include "fileacc.rc"
  9. #include "stdwnds.dlg"
  10.  
  11. Commands MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  12. BEGIN
  13.   POPUP "&File"
  14.     BEGIN
  15.       MENUITEM "&New",  CM_MDIFILENEW,
  16.       MENUITEM "&Open",  CM_MDIFILEOPEN,
  17.       MENUITEM "&Save",  CM_FILESAVE,
  18.       MENUITEM "Save &As...",  CM_FILESAVEAS,
  19.       MENUITEM SEPARATOR
  20.       MENUITEM "E&xit",  CM_EXIT,
  21.     END
  22.   POPUP "&Edit"
  23.     BEGIN
  24.       MENUITEM "&Undo\aAlt+BkSp", CM_EDITUNDO
  25.       MENUITEM SEPARATOR
  26.       MENUITEM "&Cut\aShift+Del", CM_EDITCUT
  27.       MENUITEM "C&opy\aCtrl+Ins",  CM_EDITCOPY
  28.       MENUITEM "&Paste\aShift+Ins", CM_EDITPASTE
  29.       MENUITEM "&Delete\aDel", CM_EDITDELETE
  30.       MENUITEM "C&lear All\aCtrl+Del", CM_EDITCLEAR
  31.     END
  32.   POPUP "&Search"
  33.     BEGIN
  34.       MENUITEM   "&Find...", CM_EDITFIND
  35.       MENUITEM   "&Replace...", CM_EDITREPLACE
  36.       MENUITEM   "&Next\aF3", CM_EDITFINDNEXT
  37.     END
  38.   POPUP "&Window"
  39.     BEGIN
  40.       MENUITEM "&Tile", CM_TILECHILDREN,
  41.       MENUITEM "&Cascade", CM_CASCADECHILDREN,
  42.       MENUITEM "Arrange &Icons", CM_ARRANGEICONS,
  43.       MENUITEM "C&lose All", CM_CLOSECHILDREN
  44.       MENUITEM SEPARATOR
  45.       MENUITEM "&Save state", CM_SAVESTATE
  46.       MENUITEM "&Restore state", CM_RESTORESTATE
  47.     END
  48. END
  49.