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
|
{%MainUnit ../controls.pp}
{
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
procedure ListAdd(var List : TFPList; Item: Pointer); inline;
begin
if List = nil then
List := TFPList.Create;
List.Add(Item);
end;
procedure ListInsert(var List : TFPList; Index : Longint; Item: Pointer); inline;
begin
if List = nil then
List := TFPList.Create;
List.Insert(Index, Item);
end;
function ListIndexOf(var List : TFPList; Item: Pointer) : Longint; inline;
begin
if assigned(List) then
Result := List.IndexOf(Item)
else
Result := -1;
end;
function ListCount(List : TFPList) : Longint; inline;
begin
if assigned(List) then
Result := List.Count
else
Result := 0;
end;
procedure ListRemove(var List : TFPList; Item: Pointer); inline;
begin
if assigned(List) then
begin
List.Remove(Item);
if List.Count = 0 then
FreeAndNil(List);
end;
end;
procedure ListDelete(var List : TFPList; Index: integer); inline;
begin
if assigned(List) then
begin
List.Delete(Index);
if List.Count = 0 then
FreeAndNil(List);
end;
end;
// included by controls.pp
|