Support for the GB_GUI_TRAYICON_NO_DBUS environment variable.

[GB.GUI.TRAYICON]
* NEW: Support for the GB_GUI_TRAYICON_NO_DBUS environment variable.
This commit is contained in:
gambas 2021-03-18 17:20:30 +01:00
parent 1d1b4fd4ea
commit a5d164134e

View file

@ -51,11 +51,19 @@ void EXPORT GB_AFTER_INIT(void)
GB_FUNCTION func;
bool has_dbus_systemtray = FALSE;
void (*declare_tray_icon)();
char *env;
env = getenv("GB_GUI_TRAYICON_NO_DBUS");
if (env && *env == '1')
has_dbus_systemtray = FALSE;
else
{
GB.Component.Load("gb.dbus");
if (!GB.GetFunction(&func, (void *)GB.FindClass("DBus"), "_HasSystemTray", NULL, NULL))
has_dbus_systemtray = GB.Call(&func, 0, FALSE)->_boolean.value;
}
if (has_dbus_systemtray)
GB.Component.Load("gb.dbus.trayicon");