00001 /** 00002 * \file winresid.h <mi32/winresid.h> 00003 * \brief MicroImages resource ID usage ranges for MFC 00004 * 00005 * \if NODOC 00006 * $Id: winresid.h_v 1.2 2003/09/15 13:49:56 fileserver!dwilliss Exp $ 00007 * 00008 * $Log: winresid.h_v $ 00009 * Revision 1.2 2003/09/15 13:49:56 fileserver!dwilliss 00010 * Doxygen 00011 * 00012 * Revision 1.1 2002/08/13 21:01:56 mju 00013 * Initial revision 00014 * 00015 * 00016 * 3 10/22/01 12:11p Mju 00017 * 00018 * 2 10/09/01 4:30p Mju 00019 * Add ID_INDICATOR_GRE_VIEW_SCALE 00020 * 00021 * 1 3/27/01 10:32a Mju 00022 * \endif 00023 **/ 00024 00025 #ifndef INC_MI32_WINRESID_H 00026 #define INC_MI32_WINRESID_H 00027 00028 //! Timer IDs 00029 #define ID_TIMER_REDRAW 101 //!< Redraw a window 00030 #define ID_TIMER_AUTOLOADMRU 102 //!< Automatically open most recent document in history list 00031 00032 //! Control IDs 00033 //! Microsoft DevStudio AppWizard begins assigning control IDs starting with 1001. 00034 00035 //! Control IDs allocated by MGUI_LAYOUT_PANE_MAIN. 00036 #define ID_CONTROL_FIRST 8192 //!< First dynamically allocated control ID (0x2000) 00037 #define ID_CONTROL_LAST 28672 //!< Last available control ID (0x6FFF) 00038 00039 //! Command IDs. 00040 //! Microsoft DevStudio AppWizard begins assigning command IDs starting with 32769. 00041 00042 //! Command IDs allocated by MGUI_COMMAND_ROUTER. 00043 #define ID_COMMAND_FIRST 40960 //!< First dynamically assigned command ID (0xA000) 00044 #define ID_COMMAND_LAST 57340 //!< Last available command ID (0xDFFE) - See below 00045 00046 //! StatusBar Indicator IDs. 00047 //! Indicators are handled by the Windows command routing mechanism and updated through UPDATE_COMMAND_UI. 00048 //! When adding a new indicator ID use the ID_COMMAND_LAST value above as the new ID and then decrement 00049 //! that value above. 00050 00051 #define ID_INDICATOR_GRE_VIEW_STATUS 57341 00052 #define ID_INDICATOR_GRE_VIEW_SCALE 57342 00053 #define ID_INDICATOR_GRE_VIEW_XY 57343 00054 00055 //! MFC uses command IDs in range of 0xE000-0xEFFF internally. 00056 //! Windows uses IDs in range of 0xF000-0xFFFF internally. 00057 00058 #endif //!< INC_MI32_WINRESID_H
1.3.4-20031026