home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / MULTIPAD / MENU.H$ / menu
Encoding:
Text File  |  1992-03-12  |  1.8 KB  |  59 lines

  1. /* menu.h : Defines the menu ID's for the MultiPad application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. // This file has only "#define IDM_name constant" lines in it, so
  14. // that these constants may be used to identify strings, help
  15. // contexts and menu constants for each item.
  16. */
  17.  
  18. #define IDM_FILENEW     1001
  19. #define IDM_FILEOPEN    1002
  20. #define IDM_FILESAVE    1003
  21. #define IDM_FILESAVEAS  1004
  22. #define IDM_FILEPRINT   1005
  23. #define IDM_FILEEXIT    1006
  24. #define IDM_FILEABOUT   1007
  25. #define IDM_FILESETUP   1008
  26. #define IDM_FILEMENU    1009
  27. #define IDM_FILEMRU     1010 /* IDM_FILEMRU thru IDM_FILEn are contiguous */
  28. #define IDM_FILE1       1011
  29. #define IDM_FILE2       1012
  30. #define IDM_FILE3       1013
  31. #define IDM_FILE4       1014
  32.  
  33. #define IDM_EDITUNDO    2001
  34. #define IDM_EDITCUT     2002
  35. #define IDM_EDITCOPY    2003
  36. #define IDM_EDITPASTE   2004
  37. #define IDM_EDITCLEAR   2005
  38. #define IDM_EDITSELECT  2006
  39. #define IDM_EDITTIME    2007
  40. #define IDM_EDITWRAP    2008
  41. #define IDM_EDITSETFONT 2009
  42.  
  43. #define IDM_SEARCHFIND  3001
  44. #define IDM_SEARCHNEXT  3002
  45. #define IDM_SEARCHPREV  3003
  46.  
  47. #define IDM_WINDOWTILE  8001
  48. #define IDM_WINDOWCASCADE 8002
  49. #define IDM_WINDOWCLOSEALL 8003
  50. #define IDM_WINDOWICONS 8004
  51. #define IDM_WINDOWCHILD 8100
  52.  
  53. #define IDM_HELPCONTENTS    9001
  54. #define IDM_HELPSEARCH  9002
  55. #define IDM_HELPHELP    9003
  56. #define IDM_HELPABOUT   9004
  57. #define IDM_HELPSPOT    9005
  58.  
  59.