RESOURCE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * RESOURCE.H
  3.  * Cosmo Chapter 7
  4.  *
  5.  * Definitions specifically pertaining to resources.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #ifndef _RESOURCE_H_
  14. #define _RESOURCE_H_
  15. //Note that we augment classlib.h which we include before this.
  16. //Position of Window menu.
  17. #undef  WINDOW_MENU
  18. #define WINDOW_MENU             4
  19. //Total number of menus
  20. #undef  CMENUS
  21. #ifdef MDI
  22. #define CMENUS                  6
  23. #else
  24. #define CMENUS                  5
  25. #endif
  26. //Menu command identifiers.
  27. #define IDM_FILEIMPORT          (IDM_CUSTOMFILEMIN)
  28. #define IDM_COLORBACKGROUND     (IDM_CUSTOMMIN)
  29. #define IDM_COLORLINE           (IDM_CUSTOMMIN+1)
  30. #define IDM_LINEMIN             (IDM_CUSTOMMIN+100)
  31. #define IDM_LINESOLID           (IDM_LINEMIN+0)         //PS_SOLID       0
  32. #define IDM_LINEDASH            (IDM_LINEMIN+1)         //PS_DASH        1
  33. #define IDM_LINEDOT             (IDM_LINEMIN+2)         //PS_DOT         2
  34. #define IDM_LINEDASHDOT         (IDM_LINEMIN+3)         //PS_DASHDOT     3
  35. #define IDM_LINEDASHDOTDOT      (IDM_LINEMIN+4)         //PS_DASHDOTDOT  4
  36. #define IDM_LINEMAX             IDM_LINEDASHDOTDOT
  37. /*
  38.  * IDs for StatStrip handling of popup menus:  must be in order of menu
  39.  * CLASSRES.H already defines ID_MENUFILE and ID_MENUEDIT for us.
  40.  */
  41. #undef  ID_MENUWINDOW
  42. #undef  ID_MENUHELP
  43. #define ID_MENUCOLOR            (ID_MENUCUSTOMMIN+0)
  44. #define ID_MENULINE             (ID_MENUCUSTOMMIN+1)
  45. #define ID_MENUWINDOW           (ID_MENUCUSTOMMIN+2)
  46. #define ID_MENUHELP             (ID_MENUCUSTOMMIN+3)
  47. //Stringtable IDs.  Keep sequential for each group.
  48. #define IDS_FRAMEMIN            IDS_STANDARDFRAMEMIN
  49. #define IDS_FILEIMPORT          (IDS_CUSTOMFRAMEMIN+0)
  50. #define IDS_FRAMEMAX            (IDS_CUSTOMFRAMEMIN+0)
  51. #define IDS_DOCUMENTMIN         IDS_STANDARDDOCMIN
  52. #define IDS_VERSIONCHANGE       (IDS_CUSTOMDOCMIN+0)
  53. #define IDS_DOCUMENTMAX         (IDS_CUSTOMDOCMIN+0)
  54. //These are specifically for the StatStrip
  55. #define IDS_STATMESSAGEMIN                  IDS_STANDARDSTATMESSAGEMIN
  56. #define IDS_ITEMMESSAGEFILEIMPORT           (IDS_CUSTOMSTATMESSAGEMIN+0)
  57. #define IDS_MENUMESSAGECOLOR                (IDS_CUSTOMSTATMESSAGEMIN+1)
  58. #define IDS_ITEMMESSAGECOLORBACKGROUND      (IDS_CUSTOMSTATMESSAGEMIN+2)
  59. #define IDS_ITEMMESSAGECOLORLINE            (IDS_CUSTOMSTATMESSAGEMIN+3)
  60. #define IDS_MENUMESSAGELINE                 (IDS_CUSTOMSTATMESSAGEMIN+4)
  61. #define IDS_ITEMMESSAGELINESOLID            (IDS_CUSTOMSTATMESSAGEMIN+5)
  62. #define IDS_ITEMMESSAGELINEDASH             (IDS_CUSTOMSTATMESSAGEMIN+6)
  63. #define IDS_ITEMMESSAGELINEDOT              (IDS_CUSTOMSTATMESSAGEMIN+7)
  64. #define IDS_ITEMMESSAGELINEDASHDOT          (IDS_CUSTOMSTATMESSAGEMIN+8)
  65. #define IDS_ITEMMESSAGELINEDASHDOTDOT       (IDS_CUSTOMSTATMESSAGEMIN+9)
  66. #define IDS_STATMESSAGEMAX                  (IDS_CUSTOMSTATMESSAGEMIN+9)
  67. #endif //_RESOURCE_H_