-
Notifications
You must be signed in to change notification settings - Fork 39
/
ksListView.pas
755 lines (660 loc) · 20.3 KB
/
ksListView.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
unit ksListView;
interface
uses
Classes, FMX.Types, FMX.Controls, FMX.ListView, Types, FMX.TextLayout,
FMX.ListView.Types, FMX.Graphics, Generics.Collections, System.UITypes,
FMX.ImgList, System.UIConsts;
type
TksListView = class;
TKsListItemRow = class;
TksListItemRowObj = class;
TksListViewRowClickEvent = procedure(Sender: TObject; x, y: single; AItem: TListViewItem; AId: string; ARowObj: TksListItemRowObj) of object;
TksListItemRowObj = class
private
FId: string;
FRect: TRectF;
FRow: TKsListItemRow;
procedure SetRect(const Value: TRectF);
procedure SetID(const Value: string);
procedure Changed;
public
constructor Create(ARow: TksListItemRow); virtual;
procedure Render(ACanvas: TCanvas); virtual; abstract;
property Rect: TRectF read FRect write SetRect;
property ID: string read FId write SetID;
end;
TksListItemRowText = class(TksListItemRowObj)
private
FFont: TFont;
FAlignment: TTextAlign;
FTextLayout: TTextLayout;
FTextColor: TAlphaColor;
FText: string;
procedure SetFont(const Value: TFont);
public
constructor Create(ARow: TksListItemRow); override;
destructor Destroy; override;
procedure Render(ACanvas: TCanvas); override;
property Font: TFont read FFont write SetFont;
property TextAlignment: TTextAlign read FAlignment write FAlignment;
property TextColor: TAlphaColor read FTextColor write FTextColor;
property Text: string read FText write FText;
end;
TksListItemRowImage = class(TksListItemRowObj)
private
FBitmap: TBitmap;
procedure SetBitmap(const Value: TBitmap);
public
constructor Create(ARow: TksListItemRow); override;
destructor Destroy; override;
procedure Render(ACanvas: TCanvas); override;
property Bitmap: TBitmap read FBitmap write SetBitmap;
end;
TksListItemRow = class(TListItemImage)
private
FCached: Boolean;
FFont: TFont;
FTextColor: TAlphaColor;
FList: TObjectList<TksListItemRowObj>;
FId: string;
function TextHeight(AText: string): single;
function TextWidth(AText: string): single;
function RowHeight(const AScale: Boolean = True): single;
function RowWidth(const AScale: Boolean = True): single;
function GetListView: TCustomListView;
function GetRowObject(AIndex: integer): TksListItemRowObj;
function GetRowObjectCount: integer;
property ListView: TCustomListView read GetListView;
procedure DoOnListChanged(Sender: TObject; const Item: TksListItemRowObj; Action: TCollectionNotification);
function ScreenWidth: single;
public
constructor Create(const AOwner: TListItem); override;
destructor Destroy; override;
function DrawBitmap(ABmp: TBitmap; X, AWidth, AHeight: single): TksListItemRowImage overload;
function DrawBitmap(ABmpIndex: integer; X, AWidth, AHeight: single): TksListItemRowImage overload;
function DrawBitmap(ABmp: TBitmap; X, Y, AWidth, AHeight: single): TksListItemRowImage overload;
function DrawBitmapRight(ABmp: TBitmap; AWidth, AHeight, ARightPadding: single): TksListItemRowImage;
//function TextOut(AText: string; X, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText; overload;
function TextOut(AText: string; X, Y, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText; overload;
function TextOutRight(AText: string; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText; overload;
function TextOutRight(AText: string; AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText; overload;
function TextOutRight(AText: string; Y, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText; overload;
property Font: TFont read FFont;
property TextColor: TAlphaColor read FTextColor write FTextColor;
procedure CacheRow;
property RowObject[AIndex: integer]: TksListItemRowObj read GetRowObject;
property RowObjectCount: integer read GetRowObjectCount;
property ID: string read FId write FId;
property Cached: Boolean read FCached write FCached;
end;
[ComponentPlatformsAttribute(pidWin32 or pidWin64 or pidiOSDevice)]
TksListViewAppearence = class(TPersistent)
private
FListView: TksListView;
FBackground: TAlphaColor;
FItemBackground: TAlphaColor;
FAlternatingItemBackground: TAlphaColor;
procedure SetBackground(const Value: TAlphaColor);
procedure SetItemBackground(const Value: TAlphaColor);
procedure SetAlternatingItemBackground(const Value: TAlphaColor);
public
constructor Create(AListView: TksListView);
published
property Background: TAlphaColor read FBackground write SetBackground default claWhite;
property ItemBackground: TAlphaColor read FItemBackground write SetItemBackground default claWhite;
property AlternatingItemBackground: TAlphaColor read FAlternatingItemBackground write SetAlternatingItemBackground default claGainsboro;
end;
TksListView = class(TCustomListView)
private
FScreenScale: single;
FDefaultRowHeight: integer;
FAppearence: TksListViewAppearence;
FOnClick: TksListViewRowClickEvent;
FMouseDownPos: TPointF;
FItemHeight: integer;
procedure SetItemHeight(const Value: integer);
{ Private declarations }
protected
procedure SetColorStyle(AName: string; AColor: TAlphaColor);
procedure ApplyStyle; override;
procedure DoItemClick(const AItem: TListViewItem); override;
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y: Single); override;
{ Protected declarations }
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function AddRow(const ASearchIndex: string = '';
const APurpose: TListItemPurpose = TListItemPurpose.None;
const AId: string = ''): TksListItemRow;
function AddHeader(AText: string): TksListItemRow;
procedure EndUpdate; override;
{ Public declarations }
published
property Appearence: TksListViewAppearence read FAppearence write FAppearence;
property ItemHeight: integer read FItemHeight write SetItemHeight default 44;
property OnEditModeChange;
property OnEditModeChanging;
property EditMode;
property Transparent default false;
property AllowSelection;
property AlternatingColors;
property ItemIndex;
property Images;
property ScrollViewPos;
property ItemSpaces;
property SideSpace;
property OnClick: TksListViewRowClickEvent read FOnClick write FOnClick;
property Align;
property Anchors;
property CanFocus default True;
property CanParentFocus;
property ClipChildren default True;
property ClipParent default False;
property Cursor default crDefault;
property DisableFocusEffect default True;
property DragMode default TDragMode.dmManual;
property EnableDragHighlight default True;
property Enabled default True;
property Locked default False;
property Height;
property HitTest default True;
property Margins;
property Opacity;
property Padding;
property PopupMenu;
property Position;
property RotationAngle;
property RotationCenter;
property Scale;
property Size;
property TabOrder;
property TabStop;
property Visible default True;
property Width;
{events}
property OnApplyStyleLookup;
{Drag and Drop events}
property OnDragEnter;
property OnDragLeave;
property OnDragOver;
property OnDragDrop;
property OnDragEnd;
{Keyboard events}
property OnKeyDown;
property OnKeyUp;
{Mouse events}
property OnCanFocus;
property OnEnter;
property OnExit;
property OnMouseDown;
property OnMouseMove;
property OnMouseUp;
property OnMouseWheel;
property OnMouseEnter;
property OnMouseLeave;
property OnPainting;
property OnPaint;
property OnResize;
property HelpContext;
property HelpKeyword;
property HelpType;
property StyleLookup;
property TouchTargetExpansion;
property OnDblClick;
{ ListView selection events }
property CanSwipeDelete;
property OnChange;
property OnChangeRepainted;
property OnItemsChange;
property OnScrollViewChange;
property OnItemClick;
property OnButtonClick;
property OnButtonChange;
property OnDeletingItem;
property OnDeleteItem;
property OnDeleteChangeVisible;
property OnSearchChange;
property OnFilter;
property OnPullRefresh;
property DeleteButtonText;
property AutoTapScroll;
property AutoTapTreshold;
property ShowSelection;
property DisableMouseWheel;
property SearchVisible;
property SearchAlwaysOnTop;
property SelectionCrossfade;
property PullToRefresh;
property PullRefreshWait;
end;
procedure Register;
implementation
uses SysUtils, FMX.Platform, FMX.Forms;
procedure Register;
begin
RegisterComponents('kernow Software FMX', [TksListView]);
end;
function GetScreenScale: Single;
var
Service : IFMXScreenService;
begin
Service := IFMXScreenService(
TPlatformServices.Current.GetPlatformService(IFMXScreenService));
Result := Service.GetScreenScale;
{$IFDEF IOS}
if Result = 1 then
Result := 1.5;
{$ENDIF}
end;
{ TksListItemRowText }
constructor TksListItemRowText.Create(ARow: TksListItemRow);
begin
inherited Create(ARow);
FFont := TFont.Create;
FTextColor := claBlack;
end;
destructor TksListItemRowText.Destroy;
begin
FFont.Free;
inherited;
end;
procedure TksListItemRowText.Render(ACanvas: TCanvas);
begin
ACanvas.Fill.Color := FTextColor;
ACanvas.Font.Assign(FFont);
ACanvas.FillText(FRect, FText, False, 1, [], FAlignment);
end;
procedure TksListItemRowText.SetFont(const Value: TFont);
begin
FFont.Assign(Value);
end;
{ TksListItemRowImage }
constructor TksListItemRowImage.Create(ARow: TksListItemRow);
begin
inherited Create(ARow);
FBitmap := TBitmap.Create;
end;
destructor TksListItemRowImage.Destroy;
begin
FBitmap.Free;
inherited;
end;
procedure TksListItemRowImage.Render(ACanvas: TCanvas);
begin
ACanvas.DrawBitmap(FBitmap, RectF(0, 0, FBitmap.Width, FBitmap.Height), FRect, 1, True);
end;
procedure TksListItemRowImage.SetBitmap(const Value: TBitmap);
begin
FBitmap.Assign(Value);
FBitmap.BitmapScale := GetScreenScale;
end;
{ TksListItemRow }
procedure TksListItemRow.CacheRow;
var
ICount: integer;
begin
if FCached then
Exit;
BeginUpdate;
Bitmap.Clear(claNull);
Bitmap.Canvas.BeginScene;
for ICount := 0 to FList.Count-1 do
begin
FList[ICount].Render(Bitmap.Canvas);
end;
Bitmap.Canvas.EndScene;
EndUpdate;
FCached := True;
end;
constructor TksListItemRow.Create(const AOwner: TListItem);
var
ABmp: TBitmap;
begin
inherited Create(AOwner);
{$IFDEF MSWINDOWS}
ScalingMode := TImageScalingMode.Original;
{$ENDIF}
OwnsBitmap := True;
FList := TObjectList<TksListItemRowObj>.Create(True);
FList.OnNotify := DoOnListChanged;
ABmp := TBitmap.Create;
ABmp.BitmapScale := GetScreenScale;
ABmp.Width := Round(RowWidth);
ABmp.Height := Round(RowHeight);
Abmp.Clear(claNull);
Bitmap := ABmp;
FTextColor := claBlack;
FFont := TFont.Create;
FCached := True;
end;
destructor TksListItemRow.Destroy;
begin
FList.Free;
FFont.Free;
inherited;
end;
function TksListItemRow.DrawBitmap(ABmp: TBitmap; X, AWidth,
AHeight: single): TksListItemRowImage;
var
AYpos: single;
begin
AYpos := (RowHeight(False) - AHeight) / 2;
Result := DrawBitmap(ABmp, X, AYpos, AWidth, AHeight);
end;
function TksListItemRow.DrawBitmapRight(ABmp: TBitmap; AWidth, AHeight, ARightPadding: single): TksListItemRowImage;
var
AYpos: single;
AXPos: single;
begin
AYpos := (RowHeight(False) - AHeight) / 2;
AXPos := ScreenWidth - (AWidth + ARightPadding);
Result := DrawBitmap(ABmp, AXPos, AYpos, AWidth, AHeight);
end;
function TksListItemRow.DrawBitmap(ABmpIndex: integer; X, AWidth, AHeight: single): TksListItemRowImage overload;
var
ABmp: TBitmap;
il: TCustomImageList;
ASize: TSizeF;
begin
il := ListView.Images;
if il = nil then
Exit;
ASize.cx := 64;
ASize.cy := 64;
ABmp := il.Bitmap(ASize, ABmpIndex);
Result := DrawBitmap(ABmp, X, AWidth, AHeight);
end;
function TksListItemRow.RowHeight(const AScale: Boolean = True): single;
var
lv: TksListView;
begin
lv := TksListView(Owner.Parent);
Result := lv.ItemAppearance.ItemHeight;
if AScale then
Result := Result * GetScreenScale;
end;
function TksListItemRow.RowWidth(const AScale: Boolean = True): single;
var
lv: TksListView;
begin
lv := TksListView(Owner.Parent);
Result := lv.Width;
if AScale then Result := Result * GetScreenScale;
end;
function TksListItemRow.ScreenWidth: single;
begin
Result := TksListView(Owner.Parent).Width;
{$IFDEF MSWINDOWS}
Result := Result - 40;
{$ENDIF}
end;
function TksListItemRow.DrawBitmap(ABmp: TBitmap; X, Y, AWidth, AHeight: single): TksListItemRowImage;
begin
Result := TksListItemRowImage.Create(Self);
Result.FRect := RectF(X, Y, X+AWidth, Y+AHeight);
Result.Bitmap := ABmp;
FList.Add(Result);
end;
function TksListItemRow.GetListView: TCustomListView;
begin
Result := (Owner.Parent as TCustomListView);
end;
function TksListItemRow.GetRowObject(AIndex: integer): TksListItemRowObj;
begin
Result := FList[AIndex];
end;
function TksListItemRow.GetRowObjectCount: integer;
begin
Result := FList.Count;
end;
procedure TksListItemRow.DoOnListChanged(Sender: TObject; const Item: TksListItemRowObj; Action: TCollectionNotification);
begin
FCached := False;
end;
function TksListItemRow.TextHeight(AText: string): single;
begin
Bitmap.Canvas.Font.Assign(FFont);
Result := Bitmap.Canvas.TextHeight(AText);
end;
function TksListItemRow.TextWidth(AText: string): single;
begin
Bitmap.Canvas.Font.Assign(FFont);
Result := Bitmap.Canvas.TextWidth(AText);
end;
function TksListItemRow.TextOut(AText: string; X, Y, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText;
var
AHeight: single;
AYPos: single;
begin
AYPos := Y;
case AVertAlign of
TTextAlign.Center: AYPos := ((RowHeight(False) - TextHeight(AText)) / 2) + AYPos;
TTextAlign.Trailing: AYPos := (RowHeight(False) - TextHeight(AText)) + AYPos;
end;
Result := TksListItemRowText.Create(Self);
AHeight := TextHeight(AText);
Result.FRect := RectF(X, AYPos, X+AWidth, AYPos+AHeight);
Result.Font.Assign(FFont);
Result.TextAlignment := TTextAlign.Leading;
Result.TextColor := FTextColor;
Result.Text := AText;
FList.Add(Result);
end;
function TksListItemRow.TextOutRight(AText: string; const AVertAlign: TTextAlign): TksListItemRowText;
var
AWidth: single;
begin
AWidth := TextWidth(AText);
Result := TextOutRight(AText, AWidth, AVertAlign);
end;
(*function TksListItemRow.TextOut(AText: string; X, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText;
var
AHeight: single;
AYPos: single;
begin
{AHeight := TextHeight(AText);
case AVertAlign of
TTextAlign.Leading: AYPos := 4;
TTextAlign.Trailing: AYPos := (RowHeight(False) - AHeight) - 4;
TTextAlign.Center: AYPos := (RowHeight(False) - AHeight) / 2;
end;}
Result := TextOut(AText, X, AYPos, AWidth)
end; *)
function TksListItemRow.TextOutRight(AText: string; Y, AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText;
begin
Result := TextOut(AText, 0, Y, AWidth);
Result.TextAlignment := TTextAlign.Trailing;
Result.Rect.Offset(ScreenWidth - Result.Rect.Right, 0);
end;
function TksListItemRow.TextOutRight(AText: string; AWidth: single; const AVertAlign: TTextAlign = TTextAlign.Center): TksListItemRowText;
var
AHeight: single;
AYPos: single;
begin
{AHeight := TextHeight(AText);
case AVertAlign of
TTextAlign.Leading: AYPos := 4;
TTextAlign.Trailing: AYPos := (RowHeight(False) - AHeight) - 4;
TTextAlign.Center: AYPos := (RowHeight(False) - AHeight) / 2;
end; }
Result := TextOutRight(AText, AYPos, AWidth, AVertAlign);
end;
{ TksListViewAppearence }
constructor TksListViewAppearence.Create(AListView: TksListView);
begin
inherited Create;
FListView := AListView;
FBackground := claWhite;
FItemBackground := claWhite;
FAlternatingItemBackground := claGainsboro;
end;
procedure TksListViewAppearence.SetAlternatingItemBackground(
const Value: TAlphaColor);
begin
FAlternatingItemBackground := Value;
FListView.ApplyStyle;
end;
procedure TksListViewAppearence.SetBackground(const Value: TAlphaColor);
begin
FBackground := Value;
FListView.ApplyStyle;
end;
procedure TksListViewAppearence.SetItemBackground(const Value: TAlphaColor);
begin
FItemBackground := Value;
FListView.ApplyStyle;
end;
function TksListView.AddHeader(AText: string): TksListItemRow;
begin
Result := AddRow('', TListItemPurpose.Header, '');
Result.Font.Style := [];
Result.TextColor := claSilver;
Result.Font.size := 16;
Result.TextOut(AText, 0, 0, Result.TextWidth(AText), TTextAlign.Trailing);
Result.CacheRow;
end;
function TksListView.AddRow(const ASearchIndex: string = '';
const APurpose: TListItemPurpose = TListItemPurpose.None;
const AId: string = ''): TksListItemRow;
var
AItem: TListViewItem;
AIndex: string;
begin
AItem := Items.Add;
AIndex := ASearchIndex;
if AIndex = '' then
AIndex := ' ';
AItem.Text := AIndex;
AItem.Objects.Clear;
AItem.Purpose := APurpose;
Result := TksListItemRow.Create(AItem);
Result.Name := 'ksRow';
Result.ID := AId;
end;
procedure TksListView.SetColorStyle(AName: string; AColor: TAlphaColor);
var
StyleObject: TFmxObject;
begin
StyleObject := FindStyleResource(AName);
if StyleObject <> nil then
begin
(StyleObject as TColorObject).Color := AColor;
Invalidate;
end;
end;
procedure TksListView.SetItemHeight(const Value: integer);
var
ICount: integer;
ARow: TksListItemRow;
begin
BeginUpdate;
try
FItemHeight := Value;
for ICount := 0 to Items.Count-1 do
begin
ARow := Items[ICount].Objects.FindObject('ksRow') as TKsListItemRow;
if ARow <> nil then
ARow.Cached := False;
end;
finally
ItemAppearance.ItemHeight := Value;
EndUpdate;
end;
Repaint;
end;
procedure TksListView.ApplyStyle;
var
StyleObject: TFmxObject;
begin
SetColorStyle('background', FAppearence.Background);
SetColorStyle('itembackground', FAppearence.ItemBackground);
SetColorStyle('alternatingitembackground', FAppearence.AlternatingItemBackground);
inherited;
end;
constructor TksListView.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FScreenScale := GetScreenScale;
FAppearence := TksListViewAppearence.Create(Self);
FItemHeight := 44;
end;
destructor TksListView.Destroy;
begin
FAppearence.Free;
inherited;
end;
procedure TksListView.DoItemClick(const AItem: TListViewItem);
var
ARow: TksListItemRow;
AId: string;
ICount: integer;
ARowObj: TksListItemRowObj;
AObjRect: TRectF;
begin
inherited;
ARowObj := nil;
AId := '';
ARow := AItem.Objects.FindObject('ksRow') as TksListItemRow;
if ARow <> nil then
begin
AId := ARow.ID;
for ICount := 0 to ARow.RowObjectCount-1 do
begin
AObjRect := ARow.RowObject[ICount].Rect;
if (FMouseDownPos.X >= (AObjRect.Left-5)) and (FMouseDownPos.X <= (AObjRect.Right+5)) then
begin
ARowObj := ARow.RowObject[ICount];
//Break;
end;
end;
end;
if Assigned(FOnClick) then
FOnClick(Self, FMouseDownPos.X, FMouseDownPos.Y, AItem, AId, ARowObj);
end;
procedure TksListView.EndUpdate;
var
ICount: integer;
AItem: TListViewItem;
ARow: TKsListItemRow;
ARowObj: TKsListItemRow;
begin
inherited EndUpdate;
for ICount := 0 to Items.Count-1 do
begin
AItem := Items[ICount];
ARow := AItem.Objects.FindObject('ksRow') as TKsListItemRow;
if ARow <> nil then
ARow.CacheRow;
end;
end;
procedure TksListView.MouseDown(Button: TMouseButton; Shift: TShiftState; X,
Y: Single);
begin
{$IFDEF MSWINDOWS}
FMouseDownPos := PointF(X-10, Y);
{$ELSE}
FMouseDownPos := PointF(X, Y);
{$ENDIF}
inherited;
end;
{ TksListItemRowObj }
procedure TksListItemRowObj.Changed;
begin
FRow.Cached := False;
end;
constructor TksListItemRowObj.Create(ARow: TksListItemRow);
begin
inherited Create;
FRow := ARow;
end;
procedure TksListItemRowObj.SetID(const Value: string);
begin
FId := Value;
Changed;
end;
procedure TksListItemRowObj.SetRect(const Value: TRectF);
begin
FRect := Value;
Changed;
end;
end.