summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/amunits/src/coreunits/gradientslider.pas
blob: dc9a295be5a239c60727cd044eeacff9a552934e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
    This file is part of the Free Pascal run time library.

    A file in Amiga system run time library.
    Copyright (c) 1998 by Nils Sjoholm
    member of the Amiga RTL development team.

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 **********************************************************************}

unit gradientslider;

INTERFACE

uses utility;


Const
    GRAD_Dummy       = (TAG_USER+$05000000);
    GRAD_MaxVal      = (GRAD_Dummy+1);     {  max value of slider         }
    GRAD_CurVal      = (GRAD_Dummy+2);     {  current value of slider     }
    GRAD_SkipVal     = (GRAD_Dummy+3);     {  "body click" move amount    }
    GRAD_KnobPixels  = (GRAD_Dummy+4);     {  size of knob in pixels      }
    GRAD_PenArray    = (GRAD_Dummy+5);     {  pen colors                  }


IMPLEMENTATION

end.