-
Notifications
You must be signed in to change notification settings - Fork 0
/
KolorHelper.pas
74 lines (63 loc) · 1.43 KB
/
KolorHelper.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
unit KolorHelper;
interface
uses
Vcl.Graphics, System.Generics.Collections;
type
TKolorHelper = class
private
kolory : TList<TColor>;
ids : TList<Integer>;
procedure WypelnijKolory;
public
constructor Create;
destructor Free;
function KolorDlaId(id : Integer) : TColor;
end;
implementation
// private
procedure TKolorHelper.WypelnijKolory;
begin
kolory.Add(clRed);
kolory.Add(clYellow);
kolory.Add(clBlue);
kolory.Add(clGreen);
kolory.Add(clPurple);
kolory.Add(clTeal);
kolory.Add(clFuchsia);
kolory.Add(clLime);
kolory.Add(clMoneyGreen);
kolory.Add(clNavy);
kolory.Add(clSkyBlue);
kolory.Add(clOlive);
kolory.Add(clAqua);
kolory.Add(clMaroon);
kolory.Add(clWhite);
kolory.Add(clWebDeepPink);
kolory.Add(clWebDarkSlateBlue);
kolory.Add(clWebRosyBrown);
kolory.Add(clWebIndigo);
kolory.Add(clWebDarkGoldenRod);
end;
// public
constructor TKolorHelper.Create;
begin
kolory := TList<TColor>.Create;
ids := TList<Integer>.Create;
WypelnijKolory;
end;
destructor TKolorHelper.Free;
begin
kolory.Free;
ids.Free;
end;
function TKolorHelper.KolorDlaId(id: Integer) : TColor;
var
tmpId : Integer;
I : Integer;
begin
I := ids.IndexOf(id);
if I = -1 then I := ids.Add(id);
while I > kolory.Count -1 do I := I - kolory.Count;
Result := kolory.Items[I];
end;
end.