-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
bclistboxex.pas
238 lines (212 loc) · 5.29 KB
/
bclistboxex.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
unit BCListBoxEx;
{$mode delphi}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
LCLType;
type
TBCListBoxEx = class(TCustomControl)
private
mousepos: TPoint;
scrolly: integer;
fitems: TStringList;
itemselected: integer;
itemheight: integer;
lastitem: integer;
invalidatecount: integer;
scrollwidth: integer;
function GetItemRect(index: integer): TRect;
function GetItemVertically(y: integer): integer;
procedure ScrollToItemTop();
procedure ScrollToItemBottom();
procedure ScrollToItem(index: integer);
function ItemIsVisible(index: integer): boolean;
protected
procedure Click; override;
procedure KeyDown(var Key: word; Shift: TShiftState); override;
procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
function DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): boolean; override;
function DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): boolean; override;
procedure Paint; override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
published
property Align;
property Items: TStringList read Fitems;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('BGRA Controls', [TBCListBoxEx]);
end;
procedure TBCListBoxEx.Click;
var
tempitem: integer;
begin
tempitem := GetItemVertically(mousepos.Y);
if tempitem <> itemselected then
begin
itemselected := tempitem;
Invalidate;
end;
end;
constructor TBCListBoxEx.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
scrolly := 0;
itemheight := 150;
scrollwidth := 20;
lastitem := -1;
invalidatecount := 0;
itemselected := -1;
fitems := TStringList.Create;
end;
destructor TBCListBoxEx.Destroy;
begin
items.Free;
end;
procedure TBCListBoxEx.KeyDown(var Key: word; Shift: TShiftState);
var
tempitem: integer;
begin
case key of
vk_down:
begin
tempitem := itemselected + 1;
if (tempitem < items.Count) then
begin
itemselected := tempitem;
if not ItemIsVisible(itemselected) then
ScrollToItemBottom();
if not ItemIsVisible(itemselected) then
ScrollToItem(itemselected);
Invalidate;
end;
end;
vk_up:
begin
tempitem := itemselected - 1;
if (tempitem >= 0) then
begin
itemselected := tempitem;
if not ItemIsVisible(itemselected) then
ScrollToItemTop();
if not ItemIsVisible(itemselected) then
ScrollToItem(itemselected);
Invalidate;
end;
end;
end;
end;
procedure TBCListBoxEx.MouseMove(Shift: TShiftState; X, Y: integer);
var
tempitem: integer;
begin
mousepos := Point(x, y);
tempitem := GetItemVertically(mousepos.Y);
if tempitem <> lastitem then
begin
lastitem := tempitem;
Invalidate;
end;
end;
function TBCListBoxEx.DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): boolean;
var
r: TRect;
begin
result := False;
r := GetItemRect(items.Count - 1);
if (r.Bottom >= Height) then
begin
result := True;
scrolly := scrolly - itemheight;
Invalidate;
end;
end;
function TBCListBoxEx.DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): boolean;
var
lastscroll: integer;
begin
result := False;
lastscroll := scrolly;
scrolly := scrolly + itemheight;
if (scrolly > 0) then
scrolly := 0;
if scrolly <> lastscroll then
begin
result := True;
Invalidate;
end;
end;
procedure TBCListBoxEx.Paint;
var
i: integer;
r: TRect;
style: TTextStyle;
start: integer;
begin
style.Alignment := taCenter;
style.Layout := tlCenter;
start := -1;
for i := trunc(abs(scrolly) / itemheight) to items.Count - 1 do
begin
r := GetItemRect(i);
if (r.Top < Height) then
begin
if start = -1 then
start := i;
Canvas.Brush.Color := clGreen;
if (GetItemVertically(mousepos.Y) = i) then
canvas.Brush.Color := clMoneyGreen;
if (itemselected = i) then
canvas.Brush.Color := clBlue;
Canvas.Rectangle(r);
Canvas.Font.Color := clWhite;
Canvas.TextRect(r, 0, 0, items[i], style);
Caption := IntToStr(start) + '..' + IntToStr(i);
end
else
break;
end;
Canvas.Brush.Color := clGray;
Canvas.Rectangle(Width - scrollwidth, 0, Width, Height);
Canvas.Font.Color := clRed;
Canvas.TextOut(10, 10, IntToStr(invalidatecount));
Inc(invalidatecount);
end;
function TBCListBoxEx.GetItemRect(index: integer): TRect;
begin
Result := Rect(0, (index * itemheight) + scrolly, Width - scrollwidth,
(index * itemheight) + scrolly + itemheight);
end;
function TBCListBoxEx.GetItemVertically(y: integer): integer;
var
i: integer;
begin
i := trunc(abs(scrolly) / itemheight);
Result := i + trunc(y / itemheight);
if (Result > items.Count) or (Result < 0) then
Result := -1;
end;
procedure TBCListBoxEx.ScrollToItemTop();
begin
scrolly := scrolly + itemheight;
end;
procedure TBCListBoxEx.ScrollToItemBottom();
begin
scrolly := scrolly - itemheight;
end;
procedure TBCListBoxEx.ScrollToItem(index: integer);
begin
scrolly := -itemheight * index;
end;
function TBCListBoxEx.ItemIsVisible(index: integer): boolean;
var
r: TRect;
begin
r := GetItemRect(index);
Result := Rect(0, 0, Width, Height).Contains(r);
end;
end.