LCL-GTK2: Make TrayIcon more configurable based on libraries and features provided by a distro. Issue #40629, patch by dbannon.

This commit is contained in:
Juha 2023-12-03 17:49:20 +02:00
parent 40421d987a
commit 425372ee74
2 changed files with 17 additions and 5 deletions

View File

@ -464,11 +464,17 @@ end;
function RegisterCustomTrayIcon: Boolean; alias : 'WSRegisterCustomTrayIcon';
begin
if UnityAppIndicatorInit then
RegisterWSComponent(TCustomTrayIcon, TUnityWSCustomTrayIcon)
else
RegisterWSComponent(TCustomTrayIcon, TGtk2WSCustomTrayIcon);
Result := True;
case UnityWSCtrls.GlobalUseAppInd of
UseAppIndAuto : if UnityAppIndicatorInit then
RegisterWSComponent(TCustomTrayIcon, TUnityWSCustomTrayIcon)
else
RegisterWSComponent(TCustomTrayIcon, TGtk2WSCustomTrayIcon);
UseAppIndYes : if UnityAppIndicatorInit then
RegisterWSComponent(TCustomTrayIcon, TUnityWSCustomTrayIcon)
else Result := false;
UseAppIndNo : RegisterWSComponent(TCustomTrayIcon, TGtk2WSCustomTrayIcon);
end;
end;
//ExtDlgs

View File

@ -71,10 +71,16 @@ type
class function GetPosition(const {%H-}ATrayIcon: TCustomTrayIcon): TPoint; override;
end;
{ UnityAppIndicatorInit returns true if an AppIndicator library can be loaded }
type TUseAppIndInstruction = (UseAppIndYes, UseAppIndNo, UseAppIndAuto);
{ UnityAppIndicatorInit returns true if an AppIndicator library can be loaded }
function UnityAppIndicatorInit: Boolean;
var
// A Global used in RegisterCustomTrayIcon() and possibly set in higher level
// code to predetermine the SysTray model to use.
GlobalUseAppInd : TUseAppIndInstruction = UseAppIndAuto;
implementation
const