File: cocoawslistview.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (633 lines) | stat: -rw-r--r-- 23,507 bytes parent folder | download
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
unit CocoaWSListView;

{$mode delphi}
{$modeswitch objectivec2}
{$include cocoadefines.inc}

interface

uses
  Classes, SysUtils, LCLType,
  Controls, ComCtrls, Types, StdCtrls, LCLProc, Graphics, ImgList, Forms,
  WSComCtrls,
  CocoaAll, CocoaPrivate, CocoaWSCommon,
  CocoaListControl, CocoaListView, CocoaTables, CocoaCollectionView;

type
  { TCocoaWSCustomListView }

  TCocoaWSCustomListView = class(TWSCustomListView)
  private
    class var _settingLCLDirectly: Boolean;
  private
    class function getWSHandler( const lclListView: TCustomListView ):
      TCocoaWSListViewHandler;
    class function getCallback( const lclListView: TCustomListView ):
      TLCLListViewCallback;
  published
    class function  CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLHandle; override;
    class procedure SetBorderStyle(const AWinControl: TWinControl; const ABorderStyle: TBorderStyle); override;
    // Column
    class procedure ColumnDelete(const ALV: TCustomListView; const AIndex: Integer); override;
    class function  ColumnGetWidth(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn): Integer; override;
    class procedure ColumnInsert(const ALV: TCustomListView; const AIndex: Integer; const AColumn: TListColumn); override;
    class procedure ColumnMove(const ALV: TCustomListView; const AOldIndex, ANewIndex: Integer; const AColumn: TListColumn); override;
    class procedure ColumnSetAlignment(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AAlignment: TAlignment); override;
    class procedure ColumnSetAutoSize(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AAutoSize: Boolean); override;
    class procedure ColumnSetCaption(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const ACaption: String); override;
    class procedure ColumnSetMaxWidth(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AMaxWidth: Integer); override;
    class procedure ColumnSetMinWidth(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AMinWidth: integer); override;
    class procedure ColumnSetWidth(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AWidth: Integer); override;
    class procedure ColumnSetVisible(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AColumn: TListColumn; const AVisible: Boolean); override;
    class procedure ColumnSetSortIndicator(const ALV: TCustomListView; const AIndex: Integer; const AColumn: TListColumn; const ASortIndicator: TSortIndicator); override;

    // Item
    class procedure ItemDelete(const ALV: TCustomListView; const AIndex: Integer); override;
    class function  ItemDisplayRect(const ALV: TCustomListView; const AIndex, ASubItem: Integer; ACode: TDisplayCode): TRect; override;
    class procedure ItemExchange(const ALV: TCustomListView; AItem: TListItem; const AIndex1, AIndex2: Integer); override;
    class function  ItemGetChecked(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem): Boolean; override;
    class function  ItemGetPosition(const ALV: TCustomListView; const AIndex: Integer): TPoint; override;
    class function  ItemGetState(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const AState: TListItemState; out AIsSet: Boolean): Boolean; override; // returns True if supported
    class procedure ItemInsert(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem); override;
    class procedure ItemSetChecked(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const AChecked: Boolean); override;
    class procedure ItemSetImage(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const {%H-}ASubIndex, {%H-}AImageIndex: Integer); override;
    //carbon//class function ItemSetPosition(const ALV: TCustomListView; const AIndex: Integer; const ANewPosition: TPoint): Boolean; override;*)
    class procedure ItemSetState(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const AState: TListItemState; const AIsSet: Boolean); override;
    class procedure ItemSetText(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const {%H-}ASubIndex: Integer; const {%H-}AText: String); override;
    class procedure ItemShow(const ALV: TCustomListView; const AIndex: Integer; const {%H-}AItem: TListItem; const PartialOK: Boolean); override;

    // LV
    //available in 10.7 only//class procedure BeginUpdate(const ALV: TCustomListView); override;
    //available in 10.7 only//class procedure EndUpdate(const ALV: TCustomListView); override;

    //class function GetBoundingRect(const ALV: TCustomListView): TRect; override;
    //carbon//class function GetDropTarget(const ALV: TCustomListView): Integer; override;
    class function GetFocused(const ALV: TCustomListView): Integer; override;
    //carbon//class function GetHoverTime(const ALV: TCustomListView): Integer; override;
    class function GetItemAt(const ALV: TCustomListView; x,y: integer): Integer; override;
    class function GetSelCount(const ALV: TCustomListView): Integer; override;
    class function GetSelection(const ALV: TCustomListView): Integer; override;
    class function GetTopItem(const ALV: TCustomListView): Integer; override;
    //class function GetViewOrigin(const ALV: TCustomListView): TPoint; override;
    class function GetVisibleRowCount(const ALV: TCustomListView): Integer; override;

    class procedure SelectAll(const ALV: TCustomListView; const AIsSet: Boolean); override;
    //carbon//class procedure SetAllocBy(const ALV: TCustomListView; const AValue: Integer); override;
    class procedure SetDefaultItemHeight(const ALV: TCustomListView; const AValue: Integer); override;
    //carbon//class procedure SetHotTrackStyles(const ALV: TCustomListView; const AValue: TListHotTrackStyles); override;
    //carbon//class procedure SetHoverTime(const ALV: TCustomListView; const AValue: Integer); override;
    class procedure SetImageList(const ALV: TCustomListView; const {%H-}AList: TListViewImageList; const {%H-}AValue: TCustomImageListResolution); override;
    class procedure SetItemsCount(const ALV: TCustomListView; const Avalue: Integer); override;
    class procedure SetOwnerData(const ALV: TCustomListView; const {%H-}AValue: Boolean); override;
    class procedure SetProperty(const ALV: TCustomListView; const AProp: TListViewProperty; const AIsSet: Boolean); override;
    //class procedure SetProperties(const ALV: TCustomListView; const AProps: TListViewProperties); override;
    class procedure SetScrollBars(const ALV: TCustomListView; const AValue: TScrollStyle); override;
    class procedure SetSort(const ALV: TCustomListView; const {%H-}AType: TSortType; const {%H-}AColumn: Integer;
      const {%H-}ASortDirection: TSortDirection); override;
    class function RestoreItemCheckedAfterSort(const ALV: TCustomListView): Boolean; override;
    (*class procedure SetViewOrigin(const ALV: TCustomListView; const AValue: TPoint); override;*)
    class procedure SetViewStyle(const ALV: TCustomListView; const AValue: TViewStyle); override;
  end;

implementation

type
  TCustomListViewAccess = class(TCustomListView);

procedure CocoaListViewAllocFuncImpl(const listView: NSView; const viewStyle: TViewStyle; out backendControl: NSView; out WSHandler: TCocoaWSListViewHandler );
var
  cocoaListView: TCocoaListView Absolute listView;
  processor: TCocoaTableViewProcessor;
begin
  if viewStyle = vsReport then begin
    backendControl:= AllocCocoaTableListView;
    processor:= TCocoaTableListViewProcessor.Create;
    TCocoaTableListView(backendControl).lclSetProcessor( processor );
    WSHandler:= TCocoaWSListView_TableViewHandler.Create( cocoaListView );
  end else begin
    backendControl:= AllocCocoaCollectionView( viewStyle );
    WSHandler:= TCocoaWSListView_CollectionViewHandler.Create( cocoaListView );
  end;
end;

{ TCocoaWSCustomListView }

class function TCocoaWSCustomListView.getWSHandler(
  const lclListView: TCustomListView): TCocoaWSListViewHandler;
var
  cocoaListView: TCocoaListView;
begin
  Result:= nil;
  if NOT Assigned(lclListView) or NOT lclListView.HandleAllocated then
    Exit;
  cocoaListView:= TCocoaListView( lclListView.Handle );
  if NOT Assigned(cocoaListView) then
    Exit;
  Result:= cocoaListView.WSHandler;
end;

class function TCocoaWSCustomListView.getCallback(
  const lclListView: TCustomListView): TLCLListViewCallback;
var
  cocoaListView: TCocoaListView;
begin
  Result:= nil;
  if NOT Assigned(lclListView) or NOT lclListView.HandleAllocated then
    Exit;
  cocoaListView:= TCocoaListView( lclListView.Handle );
  if NOT Assigned(cocoaListView) then
    Exit;
  Result:= cocoaListView.callback;
end;

class function TCocoaWSCustomListView.CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLHandle;
var
  cocoaListView: TCocoaListView;
  lclListView: TCustomListViewAccess Absolute AWinControl;
  lclcb: TLCLListViewCallback;
begin
  cocoaListView:= TCocoaListView.alloc.lclInitWithCreateParams(AParams);
  cocoaListView.setAutoresizesSubviews( True );
  cocoaListView.setAllocFunc( CocoaListViewAllocFuncImpl );
  lclcb := TLCLListViewCallback.Create( cocoaListView, lclListView, cocoaListView );
  lclcb.listView := lclListView;
  cocoaListView.callback:= lclcb;
  Result:= TLCLHandle( cocoaListView );
end;

class procedure TCocoaWSCustomListView.SetBorderStyle(
  const AWinControl: TWinControl; const ABorderStyle: TBorderStyle);
var
  cocoaListView: TCocoaListView;
begin
  if not Assigned(AWinControl) or not AWinControl.HandleAllocated then Exit;
  cocoaListView:= TCocoaListView(AWinControl.Handle);
  ScrollViewSetBorderStyle(cocoaListView.scrollView, ABorderStyle);
  UpdateControlFocusRing(cocoaListView.documentView, AWinControl);
end;

class procedure TCocoaWSCustomListView.ColumnDelete(const ALV: TCustomListView;
  const AIndex: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnDelete( AIndex );
end;

class function TCocoaWSCustomListView.ColumnGetWidth(
  const ALV: TCustomListView; const AIndex: Integer; const AColumn: TListColumn
  ): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= 0;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.ColumnGetWidth( AIndex, AColumn );
end;

class procedure TCocoaWSCustomListView.ColumnInsert(const ALV: TCustomListView;
  const AIndex: Integer; const AColumn: TListColumn);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnInsert( AIndex, AColumn );
end;

class procedure TCocoaWSCustomListView.ColumnMove(const ALV: TCustomListView;
  const AOldIndex, ANewIndex: Integer; const AColumn: TListColumn);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnMove( AOldIndex, ANewIndex, AColumn );
end;

class procedure TCocoaWSCustomListView.ColumnSetAlignment(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AAlignment: TAlignment);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetAlignment( AIndex, AColumn, AAlignment );
end;

class procedure TCocoaWSCustomListView.ColumnSetAutoSize(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AAutoSize: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetAutoSize( AIndex, AColumn, AAutoSize );
end;

class procedure TCocoaWSCustomListView.ColumnSetCaption(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const ACaption: String);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetCaption( AIndex, AColumn, ACaption );
end;

class procedure TCocoaWSCustomListView.ColumnSetMaxWidth(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AMaxWidth: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetMaxWidth( AIndex, AColumn, AMaxWidth );
end;

class procedure TCocoaWSCustomListView.ColumnSetMinWidth(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AMinWidth: integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetMinWidth( AIndex, AColumn, AMinWidth );
end;

class procedure TCocoaWSCustomListView.ColumnSetWidth(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AWidth: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetWidth( AIndex, AColumn, AWidth );
end;

class procedure TCocoaWSCustomListView.ColumnSetVisible(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const AVisible: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetVisible( AIndex, AColumn, AVisible );
end;

class procedure TCocoaWSCustomListView.ColumnSetSortIndicator(
  const ALV: TCustomListView; const AIndex: Integer;
  const AColumn: TListColumn; const ASortIndicator: TSortIndicator);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ColumnSetSortIndicator( AIndex, AColumn, ASortIndicator );
end;

class procedure TCocoaWSCustomListView.ItemDelete(const ALV: TCustomListView;
  const AIndex: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemDelete( AIndex );
end;

class function TCocoaWSCustomListView.ItemDisplayRect(
  const ALV: TCustomListView; const AIndex, ASubItem: Integer;
  ACode: TDisplayCode): TRect;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= Bounds(0,0,0,0);
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.ItemDisplayRect( AIndex, ASubItem, ACode );
end;

class procedure TCocoaWSCustomListView.ItemExchange(const ALV: TCustomListView;
  AItem: TListItem; const AIndex1, AIndex2: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemExchange(ALV, AItem, AIndex1, AIndex2);
end;

class function TCocoaWSCustomListView.ItemGetChecked(
  const ALV: TCustomListView; const AIndex: Integer; const AItem: TListItem
  ): Boolean;
var
  lclcb : TLCLListViewCallback;
begin
  Result:= False;
  lclcb:= getCallback( ALV );
  if NOT Assigned(lclcb) then
    Exit;

  Result := lclcb.checkedIndexSet.containsIndex(AIndex);
end;

class function TCocoaWSCustomListView.ItemGetPosition(
  const ALV: TCustomListView; const AIndex: Integer): TPoint;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= TPoint.Create( 0, 0 );
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.ItemGetPosition( AIndex );
end;

class function TCocoaWSCustomListView.ItemGetState(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem; const AState: TListItemState;
  out AIsSet: Boolean): Boolean;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= False;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.ItemGetState( AIndex, AItem, AState, AIsSet );
end;

class procedure TCocoaWSCustomListView.ItemInsert(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemInsert( AIndex, AItem );
end;

class procedure TCocoaWSCustomListView.ItemSetChecked(
  const ALV: TCustomListView; const AIndex: Integer; const AItem: TListItem;
  const AChecked: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
  lclcb: TLCLListViewCallback;
  cocoaListView: TCocoaListView;
  needsUpdate: Boolean = False;
begin
  if _settingLCLDirectly then
    Exit;

  lclcb:= self.getCallback( ALV );
  if NOT Assigned(lclcb) then
    Exit;

  if AChecked and not lclcb.checkedIndexSet.containsIndex(AIndex) then begin
    lclcb.checkedIndexSet.addIndex(AIndex);
    needsUpdate:= True;
  end else if not AChecked and lclcb.checkedIndexSet.containsIndex(AIndex) then begin
    lclcb.checkedIndexSet.removeIndex(AIndex);
    needsUpdate:= True;
  end;

  if needsUpdate then begin
    WSHandler:= getWSHandler( ALV );
    if Assigned(WSHandler) then
      WSHandler.ItemSetChecked( AIndex, AItem, AChecked );
  end;

  _settingLCLDirectly:= True;
  AItem.Checked:= AChecked;
  _settingLCLDirectly:= False;
end;

class procedure TCocoaWSCustomListView.ItemSetImage(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem; const ASubIndex,
  AImageIndex: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemSetImage( AIndex, AItem, ASubIndex, AImageIndex );
end;

class procedure TCocoaWSCustomListView.ItemSetState(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem; const AState: TListItemState;
  const AIsSet: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemSetState( AIndex, AItem, AState, AIsSet );
end;

class procedure TCocoaWSCustomListView.ItemSetText(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem; const ASubIndex: Integer;
  const AText: String);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemSetText( AIndex, AItem, ASubIndex, AText );
end;

class procedure TCocoaWSCustomListView.ItemShow(const ALV: TCustomListView;
  const AIndex: Integer; const AItem: TListItem; const PartialOK: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.ItemShow( AIndex, AItem, PartialOK );
end;

class function TCocoaWSCustomListView.GetFocused(const ALV: TCustomListView): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= -1;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetFocused();
end;

class function TCocoaWSCustomListView.GetItemAt(const ALV: TCustomListView; x,
  y: integer): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= -1;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetItemAt( x, y );
end;

class function TCocoaWSCustomListView.GetSelCount(const ALV: TCustomListView): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= 0;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetSelCount();
end;

class function TCocoaWSCustomListView.GetSelection(const ALV: TCustomListView): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= -1;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetSelection();
end;

class function TCocoaWSCustomListView.GetTopItem(const ALV: TCustomListView): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= 0;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetTopItem();
end;

class function TCocoaWSCustomListView.GetVisibleRowCount(
  const ALV: TCustomListView): Integer;
var
  WSHandler: TCocoaWSListViewHandler;
begin
  Result:= 0;
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    Result:= WSHandler.GetVisibleRowCount();
end;

class procedure TCocoaWSCustomListView.SelectAll(const ALV: TCustomListView;
  const AIsSet: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SelectAll( AIsSet );
end;

class procedure TCocoaWSCustomListView.SetDefaultItemHeight(
  const ALV: TCustomListView; const AValue: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetDefaultItemHeight( AValue );
end;

class procedure TCocoaWSCustomListView.SetImageList(const ALV: TCustomListView;
  const AList: TListViewImageList; const AValue: TCustomImageListResolution);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetImageList( AList, AValue );
end;

class procedure TCocoaWSCustomListView.SetItemsCount(
  const ALV: TCustomListView; const Avalue: Integer);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetItemsCount( AValue );
end;

class procedure TCocoaWSCustomListView.SetOwnerData(const ALV: TCustomListView;
  const AValue: Boolean);
var
  lclcb: TLCLListViewCallback;
begin
  lclcb:= self.getCallback( ALV );
  if NOT Assigned(lclcb) then
    Exit;

  lclcb.ownerData := AValue;
  if lclcb.ownerData then begin
    lclcb.checkedIndexSet.removeAllIndexes; // releasing memory
    lclcb.mixedCheckedIndexSet.removeAllIndexes; // releasing memory
  end;
end;

class procedure TCocoaWSCustomListView.SetProperty(const ALV: TCustomListView;
  const AProp: TListViewProperty; const AIsSet: Boolean);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetProperty( AProp, AIsSet );
end;

class procedure TCocoaWSCustomListView.SetScrollBars(
  const ALV: TCustomListView; const AValue: TScrollStyle);
var
  WSHandler: TCocoaWSListViewHandler;
begin
  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetScrollBars( AValue );
end;

class procedure TCocoaWSCustomListView.SetSort(const ALV: TCustomListView;
  const AType: TSortType; const AColumn: Integer;
  const ASortDirection: TSortDirection);
var
  WSHandler: TCocoaWSListViewHandler;
  lclcb: TLCLListViewCallback;
begin
  lclcb:= getCallback( ALV );
  if NOT Assigned(lclcb) then
    Exit;

  if TCocoaListView(lclcb.Owner).initializing then
    Exit;

  lclcb.checkedIndexSet.removeAllIndexes;
  lclcb.mixedCheckedIndexSet.removeAllIndexes;
  lclcb.selectionIndexSet.removeAllIndexes;

  WSHandler:= getWSHandler( ALV );
  if Assigned(WSHandler) then
    WSHandler.SetSort( AType, AColumn, ASortDirection );
end;

class function TCocoaWSCustomListView.RestoreItemCheckedAfterSort(
  const ALV: TCustomListView): Boolean;
begin
  Result:= True;
end;

class procedure TCocoaWSCustomListView.SetViewStyle(const ALV: TCustomListView;
  const AValue: TViewStyle);
var
  cocoalistView: TCocoaListView;
begin
  cocoalistView:= TCocoaListView( ALV.Handle );
  cocoalistView.setViewStyle( AValue );
end;

end.