mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 16:12:57 +02:00
Qt: added IntfAppActivate & IntfAppDeactivate
git-svn-id: trunk@23129 -
This commit is contained in:
parent
3849c571f9
commit
8aaa541d27
@ -264,6 +264,14 @@ var
|
|||||||
begin
|
begin
|
||||||
Result := False;
|
Result := False;
|
||||||
case QEvent_type(Event) of
|
case QEvent_type(Event) of
|
||||||
|
QEventApplicationActivate:
|
||||||
|
if Assigned(Application) then
|
||||||
|
Application.IntfAppActivate;
|
||||||
|
|
||||||
|
QEventApplicationDeactivate:
|
||||||
|
if Assigned(Application) then
|
||||||
|
Application.IntfAppDeactivate;
|
||||||
|
|
||||||
QEventStyleChange: ClearCachedColors;
|
QEventStyleChange: ClearCachedColors;
|
||||||
LCLQt_Destroy:
|
LCLQt_Destroy:
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user