2015-06-06 09:40:08 +08:00
|
|
|
/*
|
|
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
#include "systemtrayicon.h"
|
|
|
|
#include <QString>
|
|
|
|
#include <QSystemTrayIcon>
|
2015-01-30 00:33:17 +08:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QFile>
|
2015-01-29 21:56:53 +08:00
|
|
|
#include <QDebug>
|
2015-06-06 07:44:47 +08:00
|
|
|
#include "src/persistence/settings.h"
|
2015-01-29 21:56:53 +08:00
|
|
|
|
2015-08-30 00:06:22 +08:00
|
|
|
SystemTrayIcon::SystemTrayIcon()
|
2015-01-29 21:56:53 +08:00
|
|
|
{
|
|
|
|
QString desktop = getenv("XDG_CURRENT_DESKTOP");
|
2015-05-04 07:03:58 +08:00
|
|
|
if (desktop.isEmpty())
|
|
|
|
desktop = getenv("DESKTOP_SESSION");
|
2015-02-24 03:06:16 +08:00
|
|
|
desktop = desktop.toLower();
|
2015-01-29 21:56:53 +08:00
|
|
|
if (false);
|
2015-02-22 08:28:12 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
2015-02-25 18:30:15 +08:00
|
|
|
else if (desktop == "unity")
|
2015-02-22 05:55:54 +08:00
|
|
|
{
|
2015-05-11 20:54:03 +08:00
|
|
|
qDebug() << "Using Unity backend";
|
2015-02-24 03:06:16 +08:00
|
|
|
gtk_init(nullptr, nullptr);
|
2015-12-11 20:32:26 +08:00
|
|
|
QString settingsDir = Settings::getInstance().getSettingsDirPath();
|
2015-02-22 07:47:18 +08:00
|
|
|
QFile iconFile(settingsDir+"/icon.png");
|
|
|
|
if (iconFile.open(QIODevice::Truncate | QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
QFile resIconFile(":/img/icon.png");
|
|
|
|
if (resIconFile.open(QIODevice::ReadOnly))
|
|
|
|
iconFile.write(resIconFile.readAll());
|
|
|
|
resIconFile.close();
|
|
|
|
iconFile.close();
|
|
|
|
}
|
2015-02-22 08:28:12 +08:00
|
|
|
backendType = SystrayBackendType::Unity;
|
|
|
|
unityMenu = gtk_menu_new();
|
|
|
|
unityIndicator = app_indicator_new_with_path(
|
|
|
|
"qTox",
|
|
|
|
"icon",
|
|
|
|
APP_INDICATOR_CATEGORY_APPLICATION_STATUS,
|
|
|
|
settingsDir.toStdString().c_str()
|
|
|
|
);
|
|
|
|
app_indicator_set_menu(unityIndicator, GTK_MENU(unityMenu));
|
2015-02-22 05:55:54 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
2015-11-29 20:04:46 +08:00
|
|
|
else if (desktop == "xfce" || desktop.contains("gnome") || desktop == "mate" || desktop == "x-cinnamon")
|
2015-02-25 06:27:08 +08:00
|
|
|
{
|
2015-05-11 20:54:03 +08:00
|
|
|
qDebug() << "Using GTK backend";
|
2015-02-25 06:27:08 +08:00
|
|
|
backendType = SystrayBackendType::GTK;
|
|
|
|
gtk_init(nullptr, nullptr);
|
2015-10-05 07:51:51 +08:00
|
|
|
|
2016-06-14 07:15:48 +08:00
|
|
|
gtkIcon = gtk_status_icon_new();
|
2015-10-16 08:51:21 +08:00
|
|
|
|
2015-02-25 06:27:08 +08:00
|
|
|
gtkMenu = gtk_menu_new();
|
|
|
|
|
|
|
|
void (*callbackTrigger)(GtkStatusIcon*, gpointer) =
|
|
|
|
[](GtkStatusIcon*, gpointer data)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<SystemTrayIcon*>(data)->activated(QSystemTrayIcon::Trigger);
|
2015-02-25 06:27:08 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(gtkIcon, "activate", G_CALLBACK(callbackTrigger), this);
|
|
|
|
void (*callbackButtonClick)(GtkStatusIcon*, GdkEvent*, gpointer) =
|
|
|
|
[](GtkStatusIcon*, GdkEvent* event, gpointer data)
|
|
|
|
{
|
|
|
|
if (event->button.button == 2)
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<SystemTrayIcon*>(data)->activated(QSystemTrayIcon::MiddleClick);
|
2015-02-25 06:27:08 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(gtkIcon, "button-release-event", G_CALLBACK(callbackButtonClick), this);
|
|
|
|
}
|
|
|
|
#endif
|
2015-01-29 21:56:53 +08:00
|
|
|
else
|
|
|
|
{
|
2015-10-23 23:13:44 +08:00
|
|
|
qDebug() << "Using the Qt backend";
|
2015-01-29 21:56:53 +08:00
|
|
|
qtIcon = new QSystemTrayIcon;
|
|
|
|
backendType = SystrayBackendType::Qt;
|
2015-01-30 00:44:23 +08:00
|
|
|
connect(qtIcon, &QSystemTrayIcon::activated, this, &SystemTrayIcon::activated);
|
2015-01-29 21:56:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 02:38:08 +08:00
|
|
|
SystemTrayIcon::~SystemTrayIcon()
|
|
|
|
{
|
|
|
|
qDebug() << "Deleting SystemTrayIcon";
|
2016-06-09 00:56:31 +08:00
|
|
|
delete qtIcon;
|
2015-02-07 02:38:08 +08:00
|
|
|
}
|
|
|
|
|
2015-01-30 00:33:17 +08:00
|
|
|
QString SystemTrayIcon::extractIconToFile(QIcon icon, QString name)
|
|
|
|
{
|
|
|
|
QString iconPath;
|
2015-01-30 00:44:23 +08:00
|
|
|
(void) icon;
|
|
|
|
(void) name;
|
2015-01-30 00:33:17 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
2015-12-11 20:32:26 +08:00
|
|
|
iconPath = Settings::getInstance().getSettingsDirPath()+"/"+name+".png";
|
2015-01-30 00:33:17 +08:00
|
|
|
QSize iconSize = icon.actualSize(QSize{64,64});
|
|
|
|
icon.pixmap(iconSize).save(iconPath);
|
|
|
|
#endif
|
|
|
|
return iconPath;
|
|
|
|
}
|
|
|
|
|
2016-06-14 07:00:28 +08:00
|
|
|
#if defined(ENABLE_SYSTRAY_GTK_BACKEND) || defined(ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND)
|
|
|
|
GdkPixbuf* SystemTrayIcon::convertQIconToPixbuf(const QIcon &icon)
|
|
|
|
{
|
|
|
|
void (*callbackFreeImage)(guchar*, gpointer) =
|
|
|
|
[](guchar* image_bytes, gpointer)
|
|
|
|
{
|
|
|
|
delete[] image_bytes;
|
|
|
|
};
|
|
|
|
QImage image = icon.pixmap(64, 64).toImage();
|
|
|
|
if (image.format() != QImage::Format_RGBA8888_Premultiplied)
|
|
|
|
image = image.convertToFormat(QImage::Format_RGBA8888_Premultiplied);
|
|
|
|
guchar* image_bytes = new guchar[image.byteCount()];
|
|
|
|
memcpy(image_bytes, image.bits(), image.byteCount());
|
|
|
|
|
|
|
|
return gdk_pixbuf_new_from_data(image_bytes, GDK_COLORSPACE_RGB, image.hasAlphaChannel(),
|
|
|
|
8, image.width(), image.height(), image.bytesPerLine(),
|
|
|
|
callbackFreeImage, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-29 21:56:53 +08:00
|
|
|
void SystemTrayIcon::setContextMenu(QMenu* menu)
|
|
|
|
{
|
|
|
|
if (false);
|
2015-02-22 05:55:54 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
2015-02-22 07:47:18 +08:00
|
|
|
else if (backendType == SystrayBackendType::StatusNotifier)
|
2015-02-22 05:55:54 +08:00
|
|
|
{
|
2015-02-22 07:47:18 +08:00
|
|
|
void (*callbackClick)(StatusNotifier*, gint, gint, gpointer) =
|
2015-02-22 05:55:54 +08:00
|
|
|
[](StatusNotifier*, gint, gint, gpointer data)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<SystemTrayIcon*>(data)->activated(QSystemTrayIcon::Trigger);
|
2015-02-22 05:55:54 +08:00
|
|
|
};
|
2015-02-22 07:47:18 +08:00
|
|
|
g_signal_connect(statusNotifier, "activate", G_CALLBACK(callbackClick), this);
|
2015-02-22 08:40:37 +08:00
|
|
|
void (*callbackMiddleClick)(StatusNotifier*, gint, gint, gpointer) =
|
|
|
|
[](StatusNotifier*, gint, gint, gpointer data)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<SystemTrayIcon*>(data)->activated(QSystemTrayIcon::MiddleClick);
|
2015-02-22 08:40:37 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(statusNotifier, "secondary_activate", G_CALLBACK(callbackMiddleClick), this);
|
2015-02-22 07:47:18 +08:00
|
|
|
|
|
|
|
for (QAction* a : menu->actions())
|
|
|
|
{
|
|
|
|
QString aText = a->text().replace('&',"");
|
|
|
|
GtkWidget* item;
|
|
|
|
if (a->isSeparator())
|
|
|
|
item = gtk_menu_item_new();
|
|
|
|
else if (a->icon().isNull())
|
|
|
|
item = gtk_menu_item_new_with_label(aText.toStdString().c_str());
|
|
|
|
else
|
|
|
|
{
|
2016-06-14 07:00:28 +08:00
|
|
|
GdkPixbuf* pixbuf = convertQIconToPixbuf(a->icon());
|
2015-02-22 07:47:18 +08:00
|
|
|
item = gtk_image_menu_item_new_with_label(aText.toStdString().c_str());
|
2015-02-22 07:54:42 +08:00
|
|
|
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), gtk_image_new_from_pixbuf(pixbuf));
|
2015-02-22 07:47:18 +08:00
|
|
|
gtk_image_menu_item_set_always_show_image(GTK_IMAGE_MENU_ITEM(item),TRUE);
|
2015-10-05 04:58:24 +08:00
|
|
|
g_object_unref(pixbuf);
|
2015-02-22 07:47:18 +08:00
|
|
|
}
|
|
|
|
gtk_menu_shell_append(GTK_MENU_SHELL(snMenu), item);
|
|
|
|
void (*callback)(GtkMenu*, gpointer data) = [](GtkMenu*, gpointer a)
|
|
|
|
{
|
|
|
|
((QAction*)a)->activate(QAction::Trigger);
|
|
|
|
};
|
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(callback), a);
|
|
|
|
gtk_widget_show(item);
|
|
|
|
}
|
|
|
|
void (*callbackMenu)(StatusNotifier*, gint, gint, gpointer) =
|
|
|
|
[](StatusNotifier*, gint, gint, gpointer data)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
gtk_widget_show_all(static_cast<SystemTrayIcon*>(data)->snMenu);
|
|
|
|
gtk_menu_popup(GTK_MENU(static_cast<SystemTrayIcon*>(data)->snMenu), 0, 0, 0, 0, 3, gtk_get_current_event_time());
|
2015-02-22 07:47:18 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(statusNotifier, "context-menu", G_CALLBACK(callbackMenu), this);
|
2015-02-22 05:55:54 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::GTK)
|
|
|
|
{
|
|
|
|
for (QAction* a : menu->actions())
|
|
|
|
{
|
|
|
|
QString aText = a->text().replace('&',"");
|
|
|
|
GtkWidget* item;
|
|
|
|
if (a->isSeparator())
|
|
|
|
item = gtk_menu_item_new();
|
|
|
|
else if (a->icon().isNull())
|
|
|
|
item = gtk_menu_item_new_with_label(aText.toStdString().c_str());
|
|
|
|
else
|
|
|
|
{
|
2016-06-14 07:00:28 +08:00
|
|
|
GdkPixbuf* pixbuf = convertQIconToPixbuf(a->icon());
|
2015-02-25 06:27:08 +08:00
|
|
|
item = gtk_image_menu_item_new_with_label(aText.toStdString().c_str());
|
|
|
|
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), gtk_image_new_from_pixbuf(pixbuf));
|
|
|
|
gtk_image_menu_item_set_always_show_image(GTK_IMAGE_MENU_ITEM(item),TRUE);
|
2015-10-05 04:58:24 +08:00
|
|
|
g_object_unref(pixbuf);
|
2015-02-25 06:27:08 +08:00
|
|
|
}
|
|
|
|
gtk_menu_shell_append(GTK_MENU_SHELL(gtkMenu), item);
|
|
|
|
void (*callback)(GtkMenu*, gpointer data) = [](GtkMenu*, gpointer a)
|
|
|
|
{
|
|
|
|
((QAction*)a)->activate(QAction::Trigger);
|
|
|
|
};
|
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(callback), a);
|
|
|
|
gtk_widget_show(item);
|
|
|
|
}
|
2015-04-28 23:28:21 +08:00
|
|
|
void (*callbackMenu)(GtkMenu*, gint, gint, gpointer) =
|
|
|
|
[](GtkMenu*, gint, gint, gpointer data)
|
2015-02-25 06:27:08 +08:00
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
gtk_widget_show_all(static_cast<SystemTrayIcon*>(data)->gtkMenu);
|
|
|
|
gtk_menu_popup(GTK_MENU(static_cast<SystemTrayIcon*>(data)->gtkMenu), 0, 0, 0, 0, 3, gtk_get_current_event_time());
|
2015-02-25 06:27:08 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(gtkIcon, "popup-menu", G_CALLBACK(callbackMenu), this);
|
|
|
|
}
|
|
|
|
#endif
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::Unity)
|
|
|
|
{
|
2015-01-30 00:33:17 +08:00
|
|
|
for (QAction* a : menu->actions())
|
|
|
|
{
|
|
|
|
QString aText = a->text().replace('&',"");
|
|
|
|
GtkWidget* item;
|
|
|
|
if (a->isSeparator())
|
|
|
|
item = gtk_menu_item_new();
|
|
|
|
else if (a->icon().isNull())
|
|
|
|
item = gtk_menu_item_new_with_label(aText.toStdString().c_str());
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QString iconPath = extractIconToFile(a->icon(),"iconmenu"+a->icon().name());
|
|
|
|
GtkWidget* image = gtk_image_new_from_file(iconPath.toStdString().c_str());
|
|
|
|
item = gtk_image_menu_item_new_with_label(aText.toStdString().c_str());
|
|
|
|
gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), image);
|
|
|
|
gtk_image_menu_item_set_always_show_image(GTK_IMAGE_MENU_ITEM(item),TRUE);
|
|
|
|
}
|
|
|
|
gtk_menu_shell_append(GTK_MENU_SHELL(unityMenu), item);
|
|
|
|
void (*callback)(GtkMenu*, gpointer data) = [](GtkMenu*, gpointer a)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<QAction*>(a)->activate(QAction::Trigger);
|
2015-01-30 00:33:17 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(callback), a);
|
|
|
|
gtk_widget_show(item);
|
|
|
|
}
|
|
|
|
app_indicator_set_menu(unityIndicator, GTK_MENU(unityMenu));
|
|
|
|
DbusmenuServer *menuServer;
|
|
|
|
DbusmenuMenuitem *rootMenuItem;
|
|
|
|
g_object_get(unityIndicator, "dbus-menu-server", &menuServer, NULL);
|
|
|
|
g_object_get(menuServer, "root-node", &rootMenuItem, NULL);
|
|
|
|
void (*callback)(DbusmenuMenuitem *, gpointer) =
|
|
|
|
[](DbusmenuMenuitem *, gpointer data)
|
|
|
|
{
|
2016-04-14 06:51:34 +08:00
|
|
|
static_cast<SystemTrayIcon*>(data)->activated(QSystemTrayIcon::Unknown);
|
2015-01-30 00:33:17 +08:00
|
|
|
};
|
|
|
|
g_signal_connect(rootMenuItem, "about-to-show", G_CALLBACK(callback), this);
|
2015-01-29 21:56:53 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-08 02:40:49 +08:00
|
|
|
else if (backendType == SystrayBackendType::Qt)
|
2015-01-29 21:56:53 +08:00
|
|
|
{
|
|
|
|
qtIcon->setContextMenu(menu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemTrayIcon::show()
|
|
|
|
{
|
|
|
|
setVisible(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemTrayIcon::hide()
|
|
|
|
{
|
|
|
|
setVisible(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SystemTrayIcon::setVisible(bool newState)
|
|
|
|
{
|
|
|
|
if (false);
|
2015-02-22 05:55:54 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
2015-02-22 07:47:18 +08:00
|
|
|
else if (backendType == SystrayBackendType::StatusNotifier)
|
2015-02-22 05:55:54 +08:00
|
|
|
{
|
|
|
|
if (newState)
|
|
|
|
status_notifier_set_status(statusNotifier, STATUS_NOTIFIER_STATUS_ACTIVE);
|
|
|
|
else
|
|
|
|
status_notifier_set_status(statusNotifier, STATUS_NOTIFIER_STATUS_PASSIVE);
|
|
|
|
}
|
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::GTK)
|
|
|
|
{
|
|
|
|
if (newState)
|
|
|
|
gtk_status_icon_set_visible(gtkIcon, true);
|
|
|
|
else
|
|
|
|
gtk_status_icon_set_visible(gtkIcon, false);
|
|
|
|
}
|
|
|
|
#endif
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::Unity)
|
|
|
|
{
|
2015-01-30 00:33:17 +08:00
|
|
|
if (newState)
|
|
|
|
app_indicator_set_status(unityIndicator, APP_INDICATOR_STATUS_ACTIVE);
|
|
|
|
else
|
|
|
|
app_indicator_set_status(unityIndicator, APP_INDICATOR_STATUS_PASSIVE);
|
2015-01-29 21:56:53 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-08 02:40:49 +08:00
|
|
|
else if (backendType == SystrayBackendType::Qt)
|
2015-01-29 21:56:53 +08:00
|
|
|
{
|
|
|
|
if (newState)
|
|
|
|
qtIcon->show();
|
|
|
|
else
|
|
|
|
qtIcon->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-11 19:01:10 +08:00
|
|
|
void SystemTrayIcon::setIcon(QIcon &icon)
|
2015-01-29 21:56:53 +08:00
|
|
|
{
|
|
|
|
if (false);
|
2015-02-22 05:55:54 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND
|
2015-02-22 07:47:18 +08:00
|
|
|
else if (backendType == SystrayBackendType::StatusNotifier)
|
2015-02-22 05:55:54 +08:00
|
|
|
{
|
2016-06-14 07:00:28 +08:00
|
|
|
GdkPixbuf* pixbuf = convertQIconToPixbuf(icon);
|
2015-02-22 05:55:54 +08:00
|
|
|
status_notifier_set_from_pixbuf(statusNotifier, STATUS_NOTIFIER_ICON, pixbuf);
|
2015-10-05 04:58:24 +08:00
|
|
|
g_object_unref(pixbuf);
|
2015-02-22 05:55:54 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-25 06:27:08 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_GTK_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::GTK)
|
|
|
|
{
|
2016-06-14 07:00:28 +08:00
|
|
|
GdkPixbuf* pixbuf = convertQIconToPixbuf(icon);
|
2015-02-25 06:27:08 +08:00
|
|
|
gtk_status_icon_set_from_pixbuf(gtkIcon, pixbuf);
|
2015-10-05 04:58:24 +08:00
|
|
|
g_object_unref(pixbuf);
|
2015-02-25 06:27:08 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-01-29 21:56:53 +08:00
|
|
|
#ifdef ENABLE_SYSTRAY_UNITY_BACKEND
|
|
|
|
else if (backendType == SystrayBackendType::Unity)
|
|
|
|
{
|
2015-01-30 00:33:17 +08:00
|
|
|
// Alternate file names or appindicator will not reload the icon
|
|
|
|
if (app_indicator_get_icon(unityIndicator) == QString("icon2"))
|
|
|
|
{
|
|
|
|
extractIconToFile(icon,"icon");
|
|
|
|
app_indicator_set_icon_full(unityIndicator, "icon","qtox");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
extractIconToFile(icon,"icon2");
|
|
|
|
app_indicator_set_icon_full(unityIndicator, "icon2","qtox");
|
|
|
|
}
|
2015-01-29 21:56:53 +08:00
|
|
|
}
|
|
|
|
#endif
|
2015-02-08 02:40:49 +08:00
|
|
|
else if (backendType == SystrayBackendType::Qt)
|
2015-01-29 21:56:53 +08:00
|
|
|
{
|
|
|
|
qtIcon->setIcon(icon);
|
|
|
|
}
|
|
|
|
}
|