mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 18:20:30 +02:00
MG: TMenuItem can now be created/destroyed/moved at any time
git-svn-id: trunk@1073 -
This commit is contained in:
parent
20faa2088c
commit
e7575ea85f
@ -50,7 +50,7 @@ begin
|
|||||||
Result := 0;
|
Result := 0;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TInterfaceBase.CheckMenuItem(hMenu: HMENU; uIDEnableItem: Integer;
|
function TInterfaceBase.CheckMenuItem(hndMenu: HMENU; uIDEnableItem: Integer;
|
||||||
bChecked: Boolean): Boolean;
|
bChecked: Boolean): Boolean;
|
||||||
begin
|
begin
|
||||||
Result := false;
|
Result := false;
|
||||||
@ -178,7 +178,7 @@ Begin
|
|||||||
Result := False;
|
Result := False;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TInterfaceBase.EnableMenuItem(hMenu: HMENU; uIDEnableItem: Integer; bEnable: Boolean): Boolean;
|
function TInterfaceBase.EnableMenuItem(hndMenu: HMENU; uIDEnableItem: Integer; bEnable: Boolean): Boolean;
|
||||||
begin
|
begin
|
||||||
Result := False;
|
Result := False;
|
||||||
end;
|
end;
|
||||||
@ -424,7 +424,7 @@ begin
|
|||||||
Result := False;
|
Result := False;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TInterfaceBase.RadioMenuItemGroup(hMenu: HMENU; bRadio: Boolean): Boolean;
|
function TInterfaceBase.RadioMenuItemGroup(hndMenu: HMENU; bRadio: Boolean): Boolean;
|
||||||
begin
|
begin
|
||||||
Result := false;
|
Result := false;
|
||||||
end;
|
end;
|
||||||
@ -444,6 +444,11 @@ begin
|
|||||||
Result := true;
|
Result := true;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TInterfaceBase.RegroupMenuItem(hndMenu: HMENU; GroupIndex: Integer) : Boolean;
|
||||||
|
begin
|
||||||
|
Result := false;
|
||||||
|
end;
|
||||||
|
|
||||||
Function TInterfaceBase.ReleaseCapture : Boolean;
|
Function TInterfaceBase.ReleaseCapture : Boolean;
|
||||||
Begin
|
Begin
|
||||||
Result := True;
|
Result := True;
|
||||||
@ -610,6 +615,9 @@ end;
|
|||||||
{ =============================================================================
|
{ =============================================================================
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.35 2002/08/08 09:07:06 lazarus
|
||||||
|
MG: TMenuItem can now be created/destroyed/moved at any time
|
||||||
|
|
||||||
Revision 1.34 2002/08/07 09:55:30 lazarus
|
Revision 1.34 2002/08/07 09:55:30 lazarus
|
||||||
MG: codecompletion now checks for filebreaks, savefile now checks for filedate
|
MG: codecompletion now checks for filebreaks, savefile now checks for filedate
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user