home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / MDISTRM.PAK / MDISTRM.RC < prev    next >
Encoding:
Text File  |  1997-05-06  |  783 b   |  26 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1993 by Borland International
  3. //----------------------------------------------------------------------------
  4. #include <owl\mdi.rh>
  5. #include <owl/except.rc>
  6. #include "mdistrm.h"
  7.  
  8. #include <owl\owlapp.rc>         // default owl app icon
  9.  
  10. MDIMenu MENU
  11. BEGIN
  12.   POPUP "&MDI Children"
  13.     BEGIN
  14.       MENUITEM "C&reate",  CM_CREATECHILD,
  15.       MENUITEM "&Cascade", CM_CASCADECHILDREN,
  16.       MENUITEM "&Tile", CM_TILECHILDREN,
  17.       MENUITEM "Arrange &Icons", CM_ARRANGEICONS,
  18.       MENUITEM "C&lose All", CM_CLOSECHILDREN,
  19.     END
  20.   POPUP "&Desktop"
  21.     BEGIN
  22.       MENUITEM "&Save", CM_SAVESTATE
  23.       MENUITEM "&Restore", CM_RESTORESTATE
  24.     END
  25. END
  26.