forked from ivanpirog/vortextracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHSL_ColorPickerDlgUnit.pas
39 lines (30 loc) · 975 Bytes
/
HSL_ColorPickerDlgUnit.pas
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
36
37
38
39
//========================================================================
// Ultimate Color Picker Dialogs - Delphi Edition
//
// Copyright 2003-2005, SimpleWebsiteNavigation.com, All Rights Reserved.
//
// Datecode: 050929
//
// This software is shareware. You may evaluate it for free, but it you
// use it you must purchase a license from:
// www.components.SimpleWebsiteNavigation.com
//========================================================================
unit HSL_ColorPickerDlgUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Hybrid_BSC_HSL_ColorPickerDlgUnit, ExtCtrls, StdCtrls;
type
THSL_ColorPickerDlg = class(THybrid_BSC_HSL_ColorPickerDlg)
public
function Execute: boolean;
end;
var
HSL_ColorPickerDlg: THSL_ColorPickerDlg;
implementation
{$R *.DFM}
function THSL_ColorPickerDlg.Execute: boolean;
begin
result := inherited Execute (HSL_Only_ColorPicker_Mode)
end;
end.