Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.1 KiB

  1. #include "windows.h"
  2. #include "menu.h"
  3. Backtrac MENU
  4. BEGIN
  5. POPUP "&File"
  6. {
  7. MENUITEM "E&xit\tEsc", IDM_EXIT
  8. }
  9. POPUP "&Options"
  10. {
  11. POPUP "Material"
  12. {
  13. MENUITEM "&Air\ta", IDM_AIR
  14. MENUITEM "&Ice\ts", IDM_ICE
  15. MENUITEM "&Water\td", IDM_WATER
  16. MENUITEM "&Zinc Crown Glass\tf", IDM_ZINC
  17. MENUITEM "Ligh&t Flint Glass\tg", IDM_LIGHT
  18. MENUITEM "&Heavy Flint Glass\th" IDM_HEAVY
  19. }
  20. POPUP "Draw"
  21. {
  22. MENUITEM "&Square\tw", IDM_SQUARE
  23. MENUITEM "Sha&dows\te", IDM_SHADOW
  24. MENUITEM "Re&fraction\tr", IDM_REFRACTION
  25. MENUITEM "S&phere\tt", IDM_SPHERE
  26. MENUITEM "Li&ghts\ty", IDM_LIGHTS
  27. MENUITEM "Te&xture Map\tu", IDM_TEXTURE
  28. MENUITEM SEPARATOR
  29. MENUITEM "A&ll\tq", IDM_ALL
  30. }
  31. POPUP "Subdivision"
  32. {
  33. MENUITEM "&10\t1", IDM_10
  34. MENUITEM "&20\t2", IDM_20
  35. MENUITEM "&30\t3", IDM_30
  36. MENUITEM "&40\t4", IDM_40
  37. }
  38. POPUP "Lights"
  39. {
  40. MENUITEM "&Reset\tReturn", IDM_RESETLGT
  41. MENUITEM SEPARATOR
  42. MENUITEM "Red\tR", IDM_RED
  43. MENUITEM "Green\tG", IDM_GREEN
  44. MENUITEM "BLUE\tB", IDM_BLUE
  45. }
  46. POPUP "Motion"
  47. {
  48. MENUITEM "&Quick Motion\tSpace", IDM_QUICK
  49. MENUITEM "Rotate A&uto\tp", IDM_AUTO
  50. }
  51. }
  52. END