lazarus-ccr/components/mbColorLib/RColorPicker.pas

210 lines
4.3 KiB
ObjectPascal

unit RColorPicker;
{$MODE DELPHI}
interface
uses
LCLIntf, LCLType, SysUtils, Classes, Controls, Graphics, Forms,
HTMLColors, mbTrackBarPicker;
type
{ TRColorPicker }
TRColorPicker = class(TmbTrackBarPicker)
private
FRed, FGreen, FBlue: integer;
function ArrowPosFromRed(r: integer): integer;
function RedFromArrowPos(p: integer): integer;
procedure SetBlue(b: integer);
procedure SetGreen(g: integer);
procedure SetRed(r: integer);
protected
procedure Execute(tbaAction: integer); override;
function GetArrowPos: integer; override;
function GetGradientColor(AValue: Integer): TColor; override;
function GetSelectedColor: TColor; override;
function GetSelectedValue: integer; override;
procedure SetSelectedColor(c: TColor); override;
public
constructor Create(AOwner: TComponent); override;
published
property Red: integer read FRed write SetRed default 255;
property Green: integer read FGreen write SetGreen default 128;
property Blue: integer read FBlue write SetBlue default 128;
property SelectedColor default clRed;
property Layout default lyVertical;
property HintFormat;
end;
implementation
uses
mbUtils;
{TRColorPicker}
constructor TRColorPicker.Create(AOwner: TComponent);
begin
inherited;
FGradientWidth := 256;
FGradientHeight := 1;
FGreen := 128;
FBlue := 128;
SetRed(255);
Layout := lyVertical;
HintFormat := 'Red: %value (selected)';
end;
function TRColorPicker.ArrowPosFromRed(r: integer): integer;
var
a: integer;
begin
if Layout = lyHorizontal then
begin
a := Round((Width - 12) * r / 255);
if a > Width - FLimit then a := Width - FLimit;
end
else
begin
a := Round((Height - 12) * (255 - r) / 255);
if a > Height - FLimit then a := Height - FLimit;
end;
if a < 0 then a := 0;
Result := a;
end;
procedure TRColorPicker.Execute(tbaAction: integer);
begin
case tbaAction of
TBA_Resize:
SetRed(FRed);
TBA_MouseMove:
SetRed(RedFromArrowPos(FArrowPos));
TBA_MouseDown:
SetRed(RedFromArrowPos(FArrowPos));
TBA_MouseUp:
SetRed(RedFromArrowPos(FArrowPos));
TBA_WheelUp:
SetRed(FRed + Increment);
TBA_WheelDown:
SetRed(FRed - Increment);
TBA_VKRight:
SetRed(FRed + Increment);
TBA_VKCtrlRight:
SetRed(255);
TBA_VKLeft:
SetRed(FRed - Increment);
TBA_VKCtrlLeft:
SetRed(0);
TBA_VKUp:
SetRed(FRed + Increment);
TBA_VKCtrlUp:
SetRed(255);
TBA_VKDown:
SetRed(FRed - Increment);
TBA_VKCtrlDown:
SetRed(0);
else
inherited;
end;
end;
function TRColorPicker.GetArrowPos: integer;
begin
Result := ArrowPosFromRed(FRed);
end;
// Note: AValue is restricted to the range 0..255 by the size of the trackbar.
function TRColorPicker.GetGradientColor(AValue: Integer): TColor;
begin
Result := RGB(AValue, FGreen, FBlue);
end;
function TRColorPicker.GetSelectedColor: TColor;
begin
Result := RGB(FRed, FGreen, FBlue);
if WebSafe then
Result := GetWebSafe(Result);
end;
function TRColorPicker.GetSelectedValue: integer;
begin
Result := FRed;
end;
function TRColorPicker.RedFromArrowPos(p: integer): integer;
var
r: integer;
begin
case Layout of
lyHorizontal : r := Round(p * 255 / (Width - 12));
lyVertical : r := Round(255 - p * 255 / (Height - 12));
end;
Clamp(r, 0, 255);
Result := r;
end;
procedure TRColorPicker.SetBlue(b: integer);
begin
Clamp(b, 0, 255);
if FBlue <> b then
begin
FBlue := b;
CreateGradient;
Invalidate;
DoChange;
end;
end;
procedure TRColorPicker.SetGreen(g: integer);
begin
Clamp(g, 0, 255);
if FGreen <> g then
begin
FGreen := g;
CreateGradient;
Invalidate;
DoChange;
end;
end;
procedure TRColorPicker.SetRed(r: integer);
begin
Clamp(r, 0, 255);
if FRed <> r then
begin
FRed := r;
FArrowPos := ArrowPosFromRed(r);
Invalidate;
DoChange;
end;
end;
procedure TRColorPicker.SetSelectedColor(c: TColor);
var
r, g, b: Integer;
newGradient: Boolean;
begin
if WebSafe then
c := GetWebSafe(c);
if c = GetSelectedColor then
exit;
r := GetRValue(c);
g := GetGValue(c);
b := GetBValue(c);
newGradient := (g <> FGreen) or (b <> FBlue);
FGreen := g;
FBlue := b;
FRed := r;
if newGradient then
CreateGradient;
Invalidate;
DoChange;
end;
end.