mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
LCL: Implement THintWindow.IsMsgHint. Issue #23076.
git-svn-id: trunk@46695 -
This commit is contained in:
parent
907903d999
commit
d3f974713b
@ -869,6 +869,7 @@ type
|
||||
AData: pointer): TRect; virtual;
|
||||
function OffsetHintRect(NewPos: TPoint; dy: Integer = 15): Boolean;
|
||||
procedure InitializeWnd; override;
|
||||
function IsHintMsg(Msg: TMsg): Boolean; virtual;
|
||||
procedure ReleaseHandle;
|
||||
procedure Paint; override;
|
||||
procedure SetBounds(ALeft, ATop, AWidth, AHeight: integer); override;
|
||||
|
@ -315,6 +315,20 @@ begin
|
||||
UpdateRegion;
|
||||
end;
|
||||
|
||||
function THintWindow.IsHintMsg(Msg: TMsg): Boolean;
|
||||
begin
|
||||
case Msg.message of
|
||||
LM_KEYFIRST..LM_KEYLAST,
|
||||
CM_ACTIVATE, CM_DEACTIVATE,
|
||||
CM_APPSYSCOMMAND,
|
||||
LM_COMMAND,
|
||||
LM_LBUTTONDOWN..LM_MOUSELAST, LM_NCMOUSEMOVE :
|
||||
Result := True;
|
||||
else
|
||||
Result := False;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure THintWindow.ReleaseHandle;
|
||||
begin
|
||||
if HandleAllocated then
|
||||
|
Loading…
Reference in New Issue
Block a user