home *** CD-ROM | disk | FTP | other *** search
- /* menu.h : Defines the menu ID's for the MultiPad application.
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and Microsoft
- // QuickHelp documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- //
- // This file has only "#define IDM_name constant" lines in it, so
- // that these constants may be used to identify strings, help
- // contexts and menu constants for each item.
- */
-
- #define IDM_FILENEW 1001
- #define IDM_FILEOPEN 1002
- #define IDM_FILESAVE 1003
- #define IDM_FILESAVEAS 1004
- #define IDM_FILEPRINT 1005
- #define IDM_FILEEXIT 1006
- #define IDM_FILEABOUT 1007
- #define IDM_FILESETUP 1008
- #define IDM_FILEMENU 1009
- #define IDM_FILEMRU 1010 /* IDM_FILEMRU thru IDM_FILEn are contiguous */
- #define IDM_FILE1 1011
- #define IDM_FILE2 1012
- #define IDM_FILE3 1013
- #define IDM_FILE4 1014
-
- #define IDM_EDITUNDO 2001
- #define IDM_EDITCUT 2002
- #define IDM_EDITCOPY 2003
- #define IDM_EDITPASTE 2004
- #define IDM_EDITCLEAR 2005
- #define IDM_EDITSELECT 2006
- #define IDM_EDITTIME 2007
- #define IDM_EDITWRAP 2008
- #define IDM_EDITSETFONT 2009
-
- #define IDM_SEARCHFIND 3001
- #define IDM_SEARCHNEXT 3002
- #define IDM_SEARCHPREV 3003
-
- #define IDM_WINDOWTILE 8001
- #define IDM_WINDOWCASCADE 8002
- #define IDM_WINDOWCLOSEALL 8003
- #define IDM_WINDOWICONS 8004
- #define IDM_WINDOWCHILD 8100
-
- #define IDM_HELPCONTENTS 9001
- #define IDM_HELPSEARCH 9002
- #define IDM_HELPHELP 9003
- #define IDM_HELPABOUT 9004
- #define IDM_HELPSPOT 9005
-
-