mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 12:40:22 +02:00
Menu designer: Add/remove OnDesignerSetSelection handler when window is shown/hidden. Issue #30712, inspired by a patch from Michl.
git-svn-id: trunk@53087 -
This commit is contained in:
parent
738cf3bc30
commit
61e72dabdc
@ -11,6 +11,8 @@ object MenuDesignerForm: TMenuDesignerForm
|
||||
KeyPreview = True
|
||||
OnCreate = FormCreate
|
||||
OnDestroy = FormDestroy
|
||||
OnHide = FormHide
|
||||
OnShow = FormShow
|
||||
Position = poScreenCenter
|
||||
ShowHint = True
|
||||
LCLVersion = '1.7'
|
||||
|
@ -62,6 +62,8 @@ type
|
||||
SubmenuGroupBox: TGroupBox;
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure FormDestroy(Sender: TObject);
|
||||
procedure FormHide(Sender: TObject);
|
||||
procedure FormShow(Sender: TObject);
|
||||
procedure HelpButtonClick(Sender: TObject);
|
||||
strict private
|
||||
FDesigner: TMenuDesignerBase;
|
||||
@ -244,7 +246,6 @@ begin
|
||||
LoadFixedButtonGlyphs;
|
||||
LoadVariableButtonGlyphs(True);
|
||||
KeyPreview:=True;
|
||||
GlobalDesignHook.AddHandlerSetSelection(@OnDesignerSetSelection);
|
||||
InitializeStatisticVars;
|
||||
SetupPopupAssignmentsDisplay;
|
||||
end;
|
||||
@ -254,6 +255,16 @@ begin
|
||||
FreeAndNil(FPopupAssignments);
|
||||
end;
|
||||
|
||||
procedure TMenuDesignerForm.FormShow(Sender: TObject);
|
||||
begin
|
||||
GlobalDesignHook.AddHandlerSetSelection(@OnDesignerSetSelection);
|
||||
end;
|
||||
|
||||
procedure TMenuDesignerForm.FormHide(Sender: TObject);
|
||||
begin
|
||||
GlobalDesignHook.RemoveHandlerSetSelection(@OnDesignerSetSelection);
|
||||
end;
|
||||
|
||||
procedure TMenuDesignerForm.HelpButtonClick(Sender: TObject);
|
||||
const
|
||||
helpPath = 'http://wiki.lazarus.freepascal.org/IDE_Window:_Menu_Editor';
|
||||
|
Loading…
Reference in New Issue
Block a user