gradientslider.pas 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. This file is part of the Free Pascal run time library.
  3. A file in Amiga system run time library.
  4. Copyright (c) 1998 by Nils Sjoholm
  5. member of the Amiga RTL development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit gradientslider;
  13. INTERFACE
  14. uses utility;
  15. Const
  16. GRAD_Dummy = (TAG_USER+$05000000);
  17. GRAD_MaxVal = (GRAD_Dummy+1); { max value of slider }
  18. GRAD_CurVal = (GRAD_Dummy+2); { current value of slider }
  19. GRAD_SkipVal = (GRAD_Dummy+3); { "body click" move amount }
  20. GRAD_KnobPixels = (GRAD_Dummy+4); { size of knob in pixels }
  21. GRAD_PenArray = (GRAD_Dummy+5); { pen colors }
  22. IMPLEMENTATION
  23. end.