home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 6.ddi / WINCLUDE.ZIP / COLORDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.6 KB  |  48 lines

  1. /*****************************************************************************\
  2. *                                                                             *
  3. * colordlg.h -  Common dialog color dialog's control id numbers               *
  4. *                                                                             *
  5. *               Version 1.0                                                   *
  6. *                                                                             *
  7. \*****************************************************************************/
  8.  
  9. #ifndef __COLORDLG_H    /* prevent multiple includes */
  10. #define __COLORDLG_H
  11.  
  12. #define DLG_COLOR          10
  13.  
  14. #define COLOR_HUESCROLL   700          /* color dialog */
  15. #define COLOR_SATSCROLL   701
  16. #define COLOR_LUMSCROLL   702
  17. #define COLOR_HUE         703
  18. #define COLOR_SAT         704
  19. #define COLOR_LUM         705
  20. #define COLOR_RED         706
  21. #define COLOR_GREEN       707
  22. #define COLOR_BLUE        708
  23. #define COLOR_CURRENT     709
  24. #define COLOR_RAINBOW     710
  25. #define COLOR_SAVE        711
  26. #define COLOR_ADD         712
  27. #define COLOR_SOLID       713
  28. #define COLOR_TUNE        714
  29. #define COLOR_SCHEMES     715
  30. #define COLOR_ELEMENT     716
  31. #define COLOR_SAMPLES     717
  32. #define COLOR_PALETTE     718
  33. #define COLOR_MIX         719
  34. #define COLOR_BOX1        720
  35. #define COLOR_CUSTOM1     721
  36.  
  37. #define COLOR_HUEACCEL    723
  38. #define COLOR_SATACCEL    724
  39. #define COLOR_LUMACCEL    725
  40. #define COLOR_REDACCEL    726
  41. #define COLOR_GREENACCEL  727
  42. #define COLOR_BLUEACCEL   728
  43.  
  44. #define NUM_BASIC_COLORS   48
  45. #define NUM_CUSTOM_COLORS  16
  46.  
  47. #endif  /* __COLORDLG_H */
  48.