home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / imagedit / ids.h < prev    next >
Text File  |  1996-06-12  |  4KB  |  107 lines

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