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

Windows编程

开发平台:

Visual C++

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*                 Copyright (C) 1987-1996 Microsoft Corp.                */
  4. /*                           All Rights Reserved                            */
  5. /*                                                                          */
  6. /****************************************************************************/
  7. /****************************** Module Header *******************************
  8. * Module Name: ids.h
  9. *
  10. * Contains id values for the image editor.
  11. *
  12. * History:
  13. *
  14. ****************************************************************************/
  15. /*
  16.  * Menu id's. --------------------------------------------------------------
  17.  */
  18. #define MENU_FILE_NEW               1000
  19. #define MENU_FILE_OPEN              1001
  20. #define MENU_FILE_SAVE              1002
  21. #define MENU_FILE_SAVEAS            1003
  22. #define MENU_FILE_LOADCOLORS        1004
  23. #define MENU_FILE_SAVECOLORS        1005
  24. #define MENU_FILE_DEFAULTCOLORS     1006
  25. #define MENU_FILE_EXIT              1007
  26. #define MENU_EDIT_UNDO              1010
  27. #define MENU_EDIT_RESTORE           1011
  28. #define MENU_EDIT_COPY              1012
  29. #define MENU_EDIT_PASTE             1013
  30. #define MENU_EDIT_CLEAR             1014
  31. #define MENU_EDIT_NEWIMAGE          1015
  32. #define MENU_EDIT_SELECTIMAGE       1016
  33. #define MENU_EDIT_DELETEIMAGE       1017
  34. #define MENU_OPTIONS_GRID           1020
  35. #define MENU_OPTIONS_BRUSH2         1021
  36. #define MENU_OPTIONS_BRUSH3         1022
  37. #define MENU_OPTIONS_BRUSH4         1023
  38. #define MENU_OPTIONS_BRUSH5         1024
  39. #define MENU_OPTIONS_SHOWCOLOR      1025
  40. #define MENU_OPTIONS_SHOWVIEW       1026
  41. #define MENU_OPTIONS_SHOWTOOLBOX    1027
  42. #define MENU_HELP_CONTENTS          1030
  43. #define MENU_HELP_SEARCH            1031
  44. #define MENU_HELP_ABOUT             1032
  45. /*
  46.  * Hidden menu commands (accessed by accelerators).
  47.  */
  48. #define MENU_HIDDEN_TOCOLORPAL      1040
  49. #define MENU_HIDDEN_TOVIEW          1041
  50. #define MENU_HIDDEN_TOTOOLBOX       1042
  51. #define MENU_HIDDEN_TOPROPBAR       1043
  52. /*
  53.  * Various resource id's. --------------------------------------------------
  54.  */
  55. /*
  56.  * ID's for the icons.
  57.  */
  58. #define IDICON_IMAGEDIT         7000
  59. /*
  60.  * ID's for the cursors.
  61.  */
  62. #define IDCUR_HOTSPOT           7010
  63. #define IDCUR_FLOOD             7011
  64. #define IDCUR_CROSS             7012
  65. #define IDCUR_PENCIL            7013
  66. #define IDCUR_BRUSH             7014
  67. /*
  68.  * Toolbox button bitmaps.  The IDBM_TU* id's are for the "up"
  69.  * (not depressed) bitmaps and the IDBM_TD* id's are for the "down"
  70.  * (depressed) bitmaps.
  71.  */
  72. #define IDBM_TUPENCIL           8000
  73. #define IDBM_TUBRUSH            8001
  74. #define IDBM_TUSELECT           8002
  75. #define IDBM_TULINE             8003
  76. #define IDBM_TURECT             8004
  77. #define IDBM_TUSRECT            8005
  78. #define IDBM_TUCIRCLE           8006
  79. #define IDBM_TUSCIRCL           8007
  80. #define IDBM_TUFLOOD            8008
  81. #define IDBM_TUHOTSPT           8009
  82. #define IDBM_TDPENCIL           8020
  83. #define IDBM_TDBRUSH            8021
  84. #define IDBM_TDSELECT           8022
  85. #define IDBM_TDLINE             8023
  86. #define IDBM_TDRECT             8024
  87. #define IDBM_TDSRECT            8025
  88. #define IDBM_TDCIRCLE           8026
  89. #define IDBM_TDSCIRCL           8027
  90. #define IDBM_TDFLOOD            8028
  91. #define IDBM_TDHOTSPT           8029