home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / cnr / popup / popup.rc < prev   
Text File  |  1996-10-29  |  1KB  |  43 lines

  1. /************************************************************
  2. / Container Control - Pop Up Menu Example
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. / All Rights Reserved.
  7. ************************************************************/
  8. #include "popup.h"
  9.  
  10. #ifdef IC_PM  /* OS/2 Resources */
  11. #define  INCL_PM
  12. #include <os2.h>
  13.  
  14. ICON ICON_FOLDER   .\os2\folder.ico
  15.  
  16. /*****************************/
  17. /* menu                      */
  18. /*****************************/
  19. MENU POPUP_MENU
  20. BEGIN
  21.   SUBMENU  "~Edit",    EDIT_SUBMENU, MIS_TEXT
  22.     BEGIN
  23.         MENUITEM "~Copy",   COPY_OBJECT
  24.         MENUITEM "Cu~t",    CUT_OBJECT
  25.         MENUITEM "~Paste",  PASTE_OBJECT
  26.     END
  27. END
  28.  
  29. #else /* Windows Resources */
  30.  
  31. ICON_FOLDER ICON   .\win\folder.ico
  32.  
  33. POPUP_MENU  MENUEX
  34.   BEGIN
  35.     POPUP     "&Edit"                    ,  EDIT_SUBMENU
  36.       BEGIN
  37.         MENUITEM  "&Copy"                    ,  COPY_OBJECT
  38.         MENUITEM  "Cu&t"                     ,  CUT_OBJECT
  39.         MENUITEM  "&Paste"                   ,  PASTE_OBJECT
  40.       END
  41.   END
  42. #endif
  43.