Counter Strike : Global Offensive Source Code
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.

31 lines
868 B

  1. #include "windows.h"
  2. #include "cadtest.h"
  3. CadtestMenu MENU
  4. BEGIN
  5. POPUP "&File"
  6. BEGIN
  7. MENUITEM "&Open...", IDM_OPEN
  8. MENUITEM "&Save", IDM_SAVE
  9. MENUITEM "Save &As...", IDM_SAVE_AS
  10. END
  11. POPUP "&Edit"
  12. BEGIN
  13. MENUITEM "&Configure Tablet Context...", IDM_CONFIG
  14. MENUITEM "&Persistent Context", IDM_PERSIST
  15. END
  16. POPUP "&Help"
  17. BEGIN
  18. MENUITEM "&About Cadtest...", IDM_ABOUT
  19. END
  20. END
  21. AboutBox DIALOG 22, 17, 144, 75
  22. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  23. CAPTION "About Cadtest"
  24. BEGIN
  25. CTEXT "LCS/Telegraphics" -1, 0, 5, 144, 8
  26. CTEXT "Cadtest Application" -1, 0, 14, 144, 8
  27. CTEXT "Version 0.0" -1, 0, 34, 144, 8
  28. DEFPUSHBUTTON "OK" IDOK, 53, 59, 32, 14, WS_GROUP
  29. END
  30.