2016-02-19 17:59:14 -05:00
|
|
|
/*
|
|
|
|
* tray.c
|
|
|
|
*
|
2016-03-30 16:18:45 -04:00
|
|
|
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
|
2016-02-19 17:59:14 -05:00
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free 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.
|
|
|
|
*
|
|
|
|
* Profanity 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2016-02-19 17:59:14 -05:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
#include "config.h"
|
2016-03-30 16:18:45 -04:00
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
#ifdef HAVE_GTK
|
2016-02-19 17:59:14 -05:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <glib.h>
|
2016-03-10 16:45:16 -05:00
|
|
|
#include <glib/gstdio.h>
|
2016-02-19 17:59:14 -05:00
|
|
|
|
2016-04-10 09:00:25 -04:00
|
|
|
#include "log.h"
|
2016-04-17 19:07:15 -04:00
|
|
|
#include "config/preferences.h"
|
2016-07-24 11:22:15 -04:00
|
|
|
#include "config/files.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/tray.h"
|
|
|
|
#include "ui/window_list.h"
|
2016-02-19 17:59:14 -05:00
|
|
|
|
2016-04-17 19:07:15 -04:00
|
|
|
static gboolean gtk_ready = FALSE;
|
2016-02-19 17:59:14 -05:00
|
|
|
static GtkStatusIcon *prof_tray = NULL;
|
2016-03-07 16:25:30 -05:00
|
|
|
static GString *icon_filename = NULL;
|
|
|
|
static GString *icon_msg_filename = NULL;
|
2016-03-10 16:45:16 -05:00
|
|
|
static gint unread_messages;
|
2016-03-12 10:55:52 -05:00
|
|
|
static gboolean shutting_down;
|
2016-02-19 17:59:14 -05:00
|
|
|
static guint timer;
|
|
|
|
|
2016-03-12 10:55:52 -05:00
|
|
|
/* {{{ Privates */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get icons from installation share folder or (if defined) .locale user's folder
|
|
|
|
*
|
|
|
|
* As implementation, looking through all the entries in the .locale folder is chosen.
|
|
|
|
* While useless as now, it might be useful in case an association name-icon is created.
|
|
|
|
* As now, with 2 icons only, this is pretty useless, but it is not harming ;)
|
|
|
|
*
|
|
|
|
*/
|
2016-04-10 19:23:36 -04:00
|
|
|
static void
|
|
|
|
_get_icons(void)
|
2016-03-07 16:25:30 -05:00
|
|
|
{
|
2016-03-09 14:09:31 -05:00
|
|
|
GString *icons_dir = NULL;
|
|
|
|
|
|
|
|
#ifdef ICONS_PATH
|
|
|
|
|
|
|
|
icons_dir = g_string_new(ICONS_PATH);
|
2016-03-10 16:45:16 -05:00
|
|
|
icon_filename = g_string_new(icons_dir->str);
|
|
|
|
icon_msg_filename = g_string_new(icons_dir->str);
|
|
|
|
g_string_append(icon_filename, "/proIcon.png");
|
|
|
|
g_string_append(icon_msg_filename, "/proIconMsg.png");
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(icons_dir, TRUE);
|
2016-03-09 14:09:31 -05:00
|
|
|
|
2016-03-10 16:45:16 -05:00
|
|
|
#endif /* ICONS_PATH */
|
2016-03-09 14:09:31 -05:00
|
|
|
|
2016-07-24 16:35:12 -04:00
|
|
|
char *icons_dir_s = files_get_config_path(DIR_ICONS);
|
|
|
|
icons_dir = g_string_new(icons_dir_s);
|
2016-03-10 16:45:16 -05:00
|
|
|
GError *err = NULL;
|
|
|
|
if (!g_file_test(icons_dir->str, G_FILE_TEST_IS_DIR)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
GDir *dir = g_dir_open(icons_dir->str, 0, &err);
|
|
|
|
if (dir) {
|
|
|
|
GString *name = g_string_new(g_dir_read_name(dir));
|
|
|
|
while (name->len) {
|
|
|
|
if (g_strcmp0("proIcon.png", name->str) == 0) {
|
2016-03-13 12:09:58 -04:00
|
|
|
if (icon_filename) {
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(icon_filename, TRUE);
|
2016-03-13 12:09:58 -04:00
|
|
|
}
|
2016-03-10 16:45:16 -05:00
|
|
|
icon_filename = g_string_new(icons_dir->str);
|
|
|
|
g_string_append(icon_filename, "/proIcon.png");
|
2016-04-10 19:23:36 -04:00
|
|
|
} else if (g_strcmp0("proIconMsg.png", name->str) == 0) {
|
2016-03-13 12:12:01 -04:00
|
|
|
if (icon_msg_filename) {
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(icon_msg_filename, TRUE);
|
2016-03-13 12:09:58 -04:00
|
|
|
}
|
2016-03-10 16:45:16 -05:00
|
|
|
icon_msg_filename = g_string_new(icons_dir->str);
|
|
|
|
g_string_append(icon_msg_filename, "/proIconMsg.png");
|
|
|
|
}
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(name, TRUE);
|
2016-03-10 16:45:16 -05:00
|
|
|
name = g_string_new(g_dir_read_name(dir));
|
|
|
|
}
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(name, TRUE);
|
2016-03-10 16:45:16 -05:00
|
|
|
} else {
|
2016-04-10 09:00:25 -04:00
|
|
|
log_error("Unable to open dir: %s", err->message);
|
2016-03-10 16:45:16 -05:00
|
|
|
g_error_free(err);
|
|
|
|
}
|
|
|
|
g_dir_close(dir);
|
2016-04-10 19:23:36 -04:00
|
|
|
g_string_free(icons_dir, TRUE);
|
2016-03-07 16:25:30 -05:00
|
|
|
}
|
|
|
|
|
2016-03-12 10:55:52 -05:00
|
|
|
/*
|
|
|
|
* Callback for the timer
|
|
|
|
*
|
|
|
|
* This is the callback that the timer is calling in order to check if messages are there.
|
|
|
|
*
|
|
|
|
*/
|
2016-04-10 19:23:36 -04:00
|
|
|
gboolean
|
|
|
|
_tray_change_icon(gpointer data)
|
2016-02-19 17:59:14 -05:00
|
|
|
{
|
|
|
|
if (shutting_down) {
|
2016-04-10 19:23:36 -04:00
|
|
|
return FALSE;
|
2016-02-19 17:59:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
unread_messages = wins_get_total_unread();
|
|
|
|
|
|
|
|
if (unread_messages) {
|
2016-05-14 19:55:19 -04:00
|
|
|
if (!prof_tray) {
|
|
|
|
prof_tray = gtk_status_icon_new_from_file(icon_msg_filename->str);
|
|
|
|
} else {
|
|
|
|
gtk_status_icon_set_from_file(prof_tray, icon_msg_filename->str);
|
|
|
|
}
|
2016-02-19 17:59:14 -05:00
|
|
|
} else {
|
2016-05-14 19:55:19 -04:00
|
|
|
if (prefs_get_boolean(PREF_TRAY_READ)) {
|
|
|
|
if (!prof_tray) {
|
|
|
|
prof_tray = gtk_status_icon_new_from_file(icon_filename->str);
|
|
|
|
} else {
|
|
|
|
gtk_status_icon_set_from_file(prof_tray, icon_filename->str);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
g_clear_object(&prof_tray);
|
|
|
|
prof_tray = NULL;
|
|
|
|
}
|
2016-02-19 17:59:14 -05:00
|
|
|
}
|
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
return TRUE;
|
2016-02-19 17:59:14 -05:00
|
|
|
}
|
|
|
|
|
2016-03-12 10:55:52 -05:00
|
|
|
/* }}} */
|
|
|
|
/* {{{ Public */
|
|
|
|
|
2016-04-17 19:07:15 -04:00
|
|
|
void
|
|
|
|
tray_init(void)
|
|
|
|
{
|
2016-04-17 19:26:17 -04:00
|
|
|
_get_icons();
|
2016-04-17 19:07:15 -04:00
|
|
|
gtk_ready = gtk_init_check(0, NULL);
|
|
|
|
log_debug("Env is GTK-ready: %s", gtk_ready ? "true" : "false");
|
|
|
|
if (!gtk_ready) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_init(0, NULL);
|
|
|
|
if (prefs_get_boolean(PREF_TRAY)) {
|
|
|
|
log_debug("Building GTK icon");
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_enable();
|
2016-04-17 19:07:15 -04:00
|
|
|
}
|
2016-04-17 19:35:03 -04:00
|
|
|
|
|
|
|
gtk_main_iteration_do(FALSE);
|
2016-04-17 19:07:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tray_update(void)
|
|
|
|
{
|
|
|
|
if (gtk_ready) {
|
|
|
|
gtk_main_iteration_do(FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_shutdown(void)
|
2016-04-17 19:07:15 -04:00
|
|
|
{
|
|
|
|
if (gtk_ready && prefs_get_boolean(PREF_TRAY)) {
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_disable();
|
2016-04-17 19:07:15 -04:00
|
|
|
}
|
2016-04-17 19:26:17 -04:00
|
|
|
g_string_free(icon_filename, TRUE);
|
|
|
|
g_string_free(icon_msg_filename, TRUE);
|
2016-04-17 19:07:15 -04:00
|
|
|
}
|
|
|
|
|
2016-05-14 20:41:34 -04:00
|
|
|
void
|
|
|
|
tray_set_timer(int interval)
|
|
|
|
{
|
|
|
|
g_source_remove(timer);
|
|
|
|
_tray_change_icon(NULL);
|
|
|
|
timer = g_timeout_add(interval * 1000, _tray_change_icon, NULL);
|
|
|
|
}
|
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
void
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_enable(void)
|
2016-02-19 17:59:14 -05:00
|
|
|
{
|
2016-03-07 16:25:30 -05:00
|
|
|
prof_tray = gtk_status_icon_new_from_file(icon_filename->str);
|
2016-04-10 19:23:36 -04:00
|
|
|
shutting_down = FALSE;
|
2016-04-17 19:35:03 -04:00
|
|
|
_tray_change_icon(NULL);
|
2016-05-14 20:41:34 -04:00
|
|
|
int interval = prefs_get_tray_timer() * 1000;
|
|
|
|
timer = g_timeout_add(interval, _tray_change_icon, NULL);
|
2016-02-19 17:59:14 -05:00
|
|
|
}
|
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
void
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_disable(void)
|
2016-02-19 17:59:14 -05:00
|
|
|
{
|
2016-04-10 19:23:36 -04:00
|
|
|
shutting_down = TRUE;
|
2016-02-19 17:59:14 -05:00
|
|
|
g_source_remove(timer);
|
|
|
|
if (prof_tray) {
|
2016-04-10 08:55:06 -04:00
|
|
|
g_clear_object(&prof_tray);
|
2016-02-19 17:59:14 -05:00
|
|
|
prof_tray = NULL;
|
|
|
|
}
|
|
|
|
}
|
2016-03-12 10:55:52 -05:00
|
|
|
|
|
|
|
/* }}} */
|
2016-03-30 16:18:45 -04:00
|
|
|
#endif
|