home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / ace_basic / ace / include / gadgets / gradientslider.h < prev    next >
C/C++ Source or Header  |  1977-12-31  |  993b  |  39 lines

  1. #ifndef GADGETS_GRADIENTSLIDER_H
  2. #define GADGETS_GRADIENTSLIDER_H 1
  3. /*
  4. ** gradientslider.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/03/95
  11. **
  12. **
  13. */
  14.  
  15.  
  16. /*****************************************************************************/
  17.  
  18.  
  19. #ifndef UTILITY_TAGITEM_H
  20. #include <utility/tagitem.h>
  21. #endif
  22.  
  23.  
  24. /*****************************************************************************/
  25.  
  26.  
  27. #define GRAD_Dummy   (TAG_USER+&H05000000)
  28. #define GRAD_MaxVal  (GRAD_Dummy+1)     /* max value of slider     */
  29. #define GRAD_CurVal  (GRAD_Dummy+2)     /* current value of slider     */
  30. #define GRAD_SkipVal     (GRAD_Dummy+3)     /* "body click" move amount    */
  31. #define GRAD_KnobPixels  (GRAD_Dummy+4)     /* size of knob in pixels      */
  32. #define GRAD_PenArray    (GRAD_Dummy+5)     /* pen colors          */
  33.  
  34.  
  35. /*****************************************************************************/
  36.  
  37.  
  38. #endif /* GADGETS_GRADIENTSLIDER_H */
  39.