lazarus/lcl/include/shortcutlist.inc
lazarus 52650eac79 MG: added actnlist.pp
git-svn-id: trunk@1824 -
2002-08-06 19:57:40 +00:00

49 lines
1.6 KiB
PHP

// included by actnlist.pas
{
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.LCL, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
function TShortCutList.Add(const S: String): Integer;
var
ShortCut: TShortCut;
p: Pointer;
begin
Result := inherited Add(S);
ShortCut:=TextToShortCut(S);
p:=Pointer(Cardinal(ShortCut));
Objects[Result] := TObject(p);
end;
function TShortCutList.GetShortCuts(Index: Integer): TShortCut;
begin
Result := TShortCut(Cardinal(Objects[Index]));
end;
function TShortCutList.IndexOfShortCut(const Shortcut: TShortCut): Integer;
var
I: Integer;
begin
Result := -1;
for I := 0 to Count - 1 do
if TShortCut(Cardinal(Objects[I])) = ShortCut then
begin
Result := I;
break;
end;
end;
// included by actnlist.pas