mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 06:57:54 +02:00
lcl: protect TTrayIcon code from the PopupMenu component destruction
git-svn-id: trunk@21846 -
This commit is contained in:
parent
e8e52a07ea
commit
42ad042ae5
@ -1170,12 +1170,14 @@ type
|
||||
function GetCanvas: TCanvas;
|
||||
procedure SetHint(const AValue: string);
|
||||
procedure SetIcon(const AValue: TIcon);
|
||||
procedure SetPopUpMenu(const AValue: TPopupMenu);
|
||||
procedure SetVisible(Value: Boolean);
|
||||
procedure HandleNotifierClose(Sender: TObject; var CloseAction: TCloseAction);
|
||||
procedure HandleNotifierTimeout(Sender: TObject);
|
||||
procedure IconChanged(Sender: TObject);
|
||||
protected
|
||||
class procedure WSRegisterClass; override;
|
||||
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
|
||||
public
|
||||
Handle: PtrInt;
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
@ -1191,7 +1193,7 @@ type
|
||||
property BalloonTimeout: Integer read FBalloonTimeout write FBalloonTimeout default 3000;
|
||||
property BalloonTitle: string read FBalloonTitle write FBalloonTitle;
|
||||
property Canvas: TCanvas read GetCanvas;
|
||||
property PopUpMenu: TPopupMenu read FPopUpMenu write FPopUpMenu;
|
||||
property PopUpMenu: TPopupMenu read FPopUpMenu write SetPopUpMenu;
|
||||
property Icon: TIcon read FIcon write SetIcon;
|
||||
property Hint: string read FHint write SetHint;
|
||||
property ShowIcon: Boolean read FShowIcon write FShowIcon default True;
|
||||
|
@ -173,6 +173,14 @@ begin
|
||||
RegisterCustomTrayIcon;
|
||||
end;
|
||||
|
||||
procedure TCustomTrayIcon.Notification(AComponent: TComponent;
|
||||
Operation: TOperation);
|
||||
begin
|
||||
inherited Notification(AComponent, Operation);
|
||||
if (Operation = opRemove) and (AComponent = FPopUpMenu) then
|
||||
PopupMenu := nil;
|
||||
end;
|
||||
|
||||
{*******************************************************************
|
||||
* TCustomTrayIcon.InternalUpdate ()
|
||||
*
|
||||
@ -267,4 +275,13 @@ begin
|
||||
FIcon.Assign(AValue);
|
||||
end;
|
||||
|
||||
procedure TCustomTrayIcon.SetPopUpMenu(const AValue: TPopupMenu);
|
||||
begin
|
||||
if FPopUpMenu = AValue then
|
||||
Exit;
|
||||
FPopupMenu := AValue;
|
||||
if FPopupMenu <> nil then
|
||||
FPopUpMenu.FreeNotification(Self);
|
||||
end;
|
||||
|
||||
// included by extctrls.pp
|
||||
|
Loading…
Reference in New Issue
Block a user