home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / menu / menu.rc < prev    next >
Text File  |  1997-10-05  |  3KB  |  124 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993 - 1997 Microsoft Corp.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. #include "windows.h"
  14. #include "menu.h"
  15.  
  16. checkon  BITMAP checkon.bmp
  17. checkoff BITMAP checkoff.bmp
  18. menu     ICON   menu.ico
  19.  
  20. #include "menu.dlg"
  21.  
  22. MenuMenu MENU
  23. BEGIN
  24.   POPUP         "&File"
  25.     BEGIN
  26.       MENUITEM  "&Exit",           IDM_EXIT
  27.       MENUITEM  SEPARATOR
  28.       MENUITEM  "&About Menu ...", IDM_ABOUT
  29.     END
  30.  
  31.   POPUP         "&Colors"
  32.     BEGIN
  33.       MENUITEM  "&Owner Draw Colors", IDM_COLOROWNERDR
  34.       MENUITEM  SEPARATOR
  35.       MENUITEM  "&Black", IDM_BLACK
  36.       MENUITEM  "B&lue",  IDM_BLUE
  37.       MENUITEM  "&Red",   IDM_RED
  38.       MENUITEM  "&Green", IDM_GREEN
  39.     END
  40.  
  41.   POPUP         "&Weapons"
  42.     BEGIN
  43.       POPUP     "&Edged"
  44.         BEGIN
  45.           MENUITEM  "&Two-Handed Sword", 0
  46.           MENUITEM  "&Long Sword", 0
  47.           MENUITEM  "&Short Sword", 0
  48.           MENUITEM  "&Broad Sword", 0
  49.           MENUITEM  "&Scimitar", 0
  50.           MENUITEM  "&Cutlass", 0
  51.           MENUITEM  "&Dagger", 0
  52.         END
  53.  
  54.       POPUP     "&Blunt"
  55.         BEGIN
  56.           MENUITEM  "&Mace", 0
  57.           MENUITEM  "&Flail", 0
  58.           MENUITEM  "&Club", 0
  59.           MENUITEM  "&Staff", 0
  60.           MENUITEM  "&Warhammer", 0
  61.         END
  62.  
  63.       POPUP     "&Polearms"
  64.         BEGIN
  65.           MENUITEM  "&Spear", 0
  66.           MENUITEM  "&Trident", 0
  67.           MENUITEM  "&Morning Star", 0
  68.           MENUITEM  "&Glaive", 0
  69.         END
  70.         
  71.       POPUP     "&Missle"
  72.         BEGIN
  73.           POPUP     "&Bows"
  74.             BEGIN
  75.               MENUITEM "&Short Bow", 0
  76.               MENUITEM "&Long Bow", 0
  77.               MENUITEM "S&hort Composite Bow", 0
  78.               MENUITEM "L&ong Composite Bow", 0
  79.               MENUITEM "L&ight Crossbow", 0
  80.               MENUITEM "H&eavy Crossbow" ,0
  81.             END
  82.           MENUITEM  "Sling", 0
  83.           MENUITEM  "Darts", 0
  84.           MENUITEM  "Staff-Sling", 0
  85.           MENUITEM  "Spear", 0
  86.         END
  87.     END
  88. END
  89.  
  90. /* Template for the floating popup */
  91. PopupMenu MENU
  92. BEGIN
  93.   POPUP "FOO-Dummy Popup"
  94.     BEGIN
  95.       POPUP "Fonts"
  96.         BEGIN
  97.           MENUITEM "Courier", IDM_FONT
  98.           MENUITEM "Times Roman", IDM_FONT
  99.           MENUITEM "Swiss", IDM_FONT
  100.           MENUITEM "Helvetica", IDM_FONT
  101.           MENUITEM "Old English", IDM_FONT
  102.         END
  103.       POPUP "Sizes"
  104.         BEGIN
  105.           MENUITEM "7", IDM_SIZE
  106.           MENUITEM "8", IDM_SIZE
  107.           MENUITEM "9", IDM_SIZE
  108.           MENUITEM "10", IDM_SIZE
  109.           MENUITEM "11", IDM_SIZE
  110.           MENUITEM "12", IDM_SIZE
  111.           MENUITEM "14", IDM_SIZE
  112.         END
  113.       POPUP "Styles"
  114.         BEGIN
  115.           MENUITEM "Bold", IDM_STYLE
  116.           MENUITEM "Italic", IDM_STYLE
  117.           MENUITEM "Strike Out", IDM_STYLE
  118.           MENUITEM "Superscript", IDM_STYLE
  119.           MENUITEM "Subscript", IDM_STYLE
  120.         END
  121.     END
  122.  
  123. END
  124.