2013-03-31 15:44:48 -04:00
|
|
|
/* X-Chat
|
|
|
|
* Copyright (C) 2006-2007 Peter Zelezny.
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
#include <string.h>
|
2012-10-24 15:33:02 -04:00
|
|
|
#include "../common/hexchat-plugin.h"
|
|
|
|
#include "../common/hexchat.h"
|
|
|
|
#include "../common/hexchatc.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "../common/inbound.h"
|
|
|
|
#include "../common/server.h"
|
|
|
|
#include "../common/fe.h"
|
|
|
|
#include "../common/util.h"
|
2012-07-21 08:26:19 -04:00
|
|
|
#include "../common/outbound.h"
|
2011-02-23 22:14:30 -05:00
|
|
|
#include "fe-gtk.h"
|
|
|
|
#include "pixmaps.h"
|
|
|
|
#include "maingui.h"
|
|
|
|
#include "menu.h"
|
|
|
|
|
2011-12-11 11:34:02 -05:00
|
|
|
#ifndef WIN32
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2011-04-16 13:18:20 -04:00
|
|
|
#ifdef USE_LIBNOTIFY
|
|
|
|
#include <libnotify/notify.h>
|
|
|
|
#ifndef NOTIFY_CHECK_VERSION
|
|
|
|
#define NOTIFY_CHECK_VERSION(x,y,z) 0
|
|
|
|
#endif
|
|
|
|
#if NOTIFY_CHECK_VERSION(0,7,0)
|
|
|
|
#define XC_NOTIFY_NEW(a,b,c,d) notify_notification_new(a,b,c)
|
|
|
|
#else
|
|
|
|
#define XC_NOTIFY_NEW(a,b,c,d) notify_notification_new(a,b,c,d)
|
|
|
|
#endif
|
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
typedef enum /* current icon status */
|
|
|
|
{
|
|
|
|
TS_NONE,
|
|
|
|
TS_MESSAGE,
|
|
|
|
TS_HIGHLIGHT,
|
|
|
|
TS_FILEOFFER,
|
|
|
|
TS_CUSTOM /* plugin */
|
|
|
|
} TrayStatus;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
WS_FOCUSED,
|
|
|
|
WS_NORMAL,
|
|
|
|
WS_HIDDEN
|
|
|
|
} WinStatus;
|
|
|
|
|
|
|
|
typedef GdkPixbuf* TrayIcon;
|
|
|
|
#define tray_icon_from_file(f) gdk_pixbuf_new_from_file(f,NULL)
|
|
|
|
#define tray_icon_free(i) g_object_unref(i)
|
|
|
|
|
2012-11-02 21:33:44 -04:00
|
|
|
#define ICON_NORMAL pix_hexchat
|
2012-11-02 21:57:24 -04:00
|
|
|
#define ICON_MSG pix_tray_message
|
|
|
|
#define ICON_HILIGHT pix_tray_highlight
|
|
|
|
#define ICON_FILE pix_tray_fileoffer
|
2011-02-23 22:14:30 -05:00
|
|
|
#define TIMEOUT 500
|
|
|
|
|
|
|
|
static GtkStatusIcon *sticon;
|
|
|
|
static gint flash_tag;
|
|
|
|
static TrayStatus tray_status;
|
2012-11-19 23:02:53 -05:00
|
|
|
#ifdef WIN32
|
2012-11-18 16:35:18 -05:00
|
|
|
static guint tray_menu_timer;
|
|
|
|
static gint64 tray_menu_inactivetime;
|
2012-11-19 23:02:53 -05:00
|
|
|
#endif
|
2012-10-30 03:42:48 -04:00
|
|
|
static hexchat_plugin *ph;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
static TrayIcon custom_icon1;
|
|
|
|
static TrayIcon custom_icon2;
|
|
|
|
|
|
|
|
static int tray_priv_count = 0;
|
|
|
|
static int tray_pub_count = 0;
|
|
|
|
static int tray_hilight_count = 0;
|
|
|
|
static int tray_file_count = 0;
|
2012-12-21 15:09:00 -05:00
|
|
|
static int tray_restore_timer = 0;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
void tray_apply_setup (void);
|
2012-12-21 15:09:00 -05:00
|
|
|
static gboolean tray_menu_try_restore ();
|
|
|
|
static void tray_cleanup (void);
|
|
|
|
static void tray_init (void);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
static WinStatus
|
|
|
|
tray_get_window_status (void)
|
|
|
|
{
|
|
|
|
const char *st;
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
st = hexchat_get_info (ph, "win_status");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
if (!st)
|
|
|
|
return WS_HIDDEN;
|
|
|
|
|
|
|
|
if (!strcmp (st, "active"))
|
|
|
|
return WS_FOCUSED;
|
|
|
|
|
|
|
|
if (!strcmp (st, "hidden"))
|
|
|
|
return WS_HIDDEN;
|
|
|
|
|
|
|
|
return WS_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_count_channels (void)
|
|
|
|
{
|
|
|
|
int cons = 0;
|
|
|
|
GSList *list;
|
|
|
|
session *sess;
|
|
|
|
|
|
|
|
for (list = sess_list; list; list = list->next)
|
|
|
|
{
|
|
|
|
sess = list->data;
|
|
|
|
if (sess->server->connected && sess->channel[0] &&
|
|
|
|
sess->type == SESS_CHANNEL)
|
|
|
|
cons++;
|
|
|
|
}
|
|
|
|
return cons;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_count_networks (void)
|
|
|
|
{
|
|
|
|
int cons = 0;
|
|
|
|
GSList *list;
|
|
|
|
|
|
|
|
for (list = serv_list; list; list = list->next)
|
|
|
|
{
|
|
|
|
if (((server *)list->data)->connected)
|
|
|
|
cons++;
|
|
|
|
}
|
|
|
|
return cons;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_tray_set_tooltip (const char *text)
|
|
|
|
{
|
|
|
|
if (sticon)
|
2014-01-18 04:08:32 -05:00
|
|
|
gtk_status_icon_set_tooltip_text (sticon, text);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_tray_set_balloon (const char *title, const char *text)
|
|
|
|
{
|
|
|
|
#ifndef WIN32
|
2012-07-21 08:36:16 -04:00
|
|
|
#if 0
|
2011-02-23 22:14:30 -05:00
|
|
|
const char *argv[8];
|
|
|
|
const char *path;
|
|
|
|
char time[16];
|
2012-07-21 08:36:16 -04:00
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
WinStatus ws;
|
|
|
|
|
|
|
|
/* no balloons if the window is focused */
|
|
|
|
ws = tray_get_window_status ();
|
2013-04-13 23:03:54 -04:00
|
|
|
if ((prefs.hex_away_omit_alerts && hexchat_get_info(ph, "away")) ||
|
|
|
|
(prefs.hex_gui_focus_omitalerts && ws == WS_FOCUSED))
|
2011-02-23 22:14:30 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* bit 1 of flags means "no balloons unless hidden/iconified" */
|
2012-11-10 13:29:12 -05:00
|
|
|
if (ws != WS_HIDDEN && prefs.hex_gui_tray_quiet)
|
2011-02-23 22:14:30 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* FIXME: this should close the current balloon */
|
|
|
|
if (!text)
|
|
|
|
return;
|
|
|
|
|
2011-04-16 13:18:20 -04:00
|
|
|
#ifdef USE_LIBNOTIFY
|
2013-06-28 02:46:37 -04:00
|
|
|
static int notify_text_strip_flags = STRIP_ALL;
|
2011-04-16 13:18:20 -04:00
|
|
|
NotifyNotification *notification;
|
|
|
|
char *notify_text, *notify_title;
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2011-04-16 13:18:20 -04:00
|
|
|
if (!notify_is_initted())
|
2013-06-28 02:46:37 -04:00
|
|
|
{
|
2014-07-18 23:36:13 -04:00
|
|
|
GList* server_caps;
|
2011-04-16 13:18:20 -04:00
|
|
|
notify_init(PACKAGE_NAME);
|
|
|
|
|
2014-07-18 23:36:13 -04:00
|
|
|
server_caps = notify_get_server_caps ();
|
2013-06-28 02:46:37 -04:00
|
|
|
if (g_list_find_custom (server_caps, "body-markup", (GCompareFunc)strcmp))
|
|
|
|
{
|
|
|
|
notify_text_strip_flags |= STRIP_ESCMARKUP;
|
|
|
|
}
|
|
|
|
g_list_free_full (server_caps, g_free);
|
|
|
|
}
|
|
|
|
|
|
|
|
notify_text = strip_color (text, -1, notify_text_strip_flags);
|
2011-04-16 13:18:20 -04:00
|
|
|
notify_title = strip_color (title, -1, STRIP_ALL);
|
|
|
|
|
2013-02-18 00:15:47 -05:00
|
|
|
notification = XC_NOTIFY_NEW (notify_title, notify_text, HEXCHATSHAREDIR "/icons/hicolor/scalable/apps/hexchat.svg", NULL);
|
2011-04-16 13:18:20 -04:00
|
|
|
|
2013-02-18 00:32:59 -05:00
|
|
|
#if NOTIFY_CHECK_VERSION(0,7,0)
|
|
|
|
notify_notification_set_hint (notification, "desktop-entry", g_variant_new_string ("hexchat"));
|
|
|
|
#endif
|
|
|
|
|
2011-04-16 13:18:20 -04:00
|
|
|
g_free ((char *)notify_title);
|
|
|
|
g_free ((char *)notify_text);
|
|
|
|
|
2012-10-22 08:18:20 -04:00
|
|
|
notify_notification_set_timeout (notification, prefs.hex_input_balloon_time*1000);
|
2011-04-16 13:18:20 -04:00
|
|
|
notify_notification_show (notification, NULL);
|
|
|
|
|
|
|
|
g_object_unref (notification);
|
|
|
|
#endif
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_set_balloonf (const char *text, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
buf = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
fe_tray_set_balloon (buf, text);
|
|
|
|
g_free (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_set_tipf (const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
buf = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
fe_tray_set_tooltip (buf);
|
|
|
|
g_free (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_stop_flash (void)
|
|
|
|
{
|
|
|
|
int nets, chans;
|
|
|
|
|
|
|
|
if (flash_tag)
|
|
|
|
{
|
|
|
|
g_source_remove (flash_tag);
|
|
|
|
flash_tag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sticon)
|
|
|
|
{
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, ICON_NORMAL);
|
|
|
|
nets = tray_count_networks ();
|
|
|
|
chans = tray_count_channels ();
|
|
|
|
if (nets)
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": Connected to %u networks and %u channels"),
|
2011-02-23 22:14:30 -05:00
|
|
|
nets, chans);
|
|
|
|
else
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (DISPLAY_NAME": %s", _("Not connected."));
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (custom_icon1)
|
|
|
|
{
|
|
|
|
tray_icon_free (custom_icon1);
|
|
|
|
custom_icon1 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (custom_icon2)
|
|
|
|
{
|
|
|
|
tray_icon_free (custom_icon2);
|
|
|
|
custom_icon2 = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tray_status = TS_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_reset_counts (void)
|
|
|
|
{
|
|
|
|
tray_priv_count = 0;
|
|
|
|
tray_pub_count = 0;
|
|
|
|
tray_hilight_count = 0;
|
|
|
|
tray_file_count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_timeout_cb (TrayIcon icon)
|
|
|
|
{
|
|
|
|
if (custom_icon1)
|
|
|
|
{
|
|
|
|
if (gtk_status_icon_get_pixbuf (sticon) == custom_icon1)
|
|
|
|
{
|
|
|
|
if (custom_icon2)
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, custom_icon2);
|
|
|
|
else
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, ICON_NORMAL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, custom_icon1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (gtk_status_icon_get_pixbuf (sticon) == ICON_NORMAL)
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, icon);
|
|
|
|
else
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, ICON_NORMAL);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_set_flash (TrayIcon icon)
|
|
|
|
{
|
|
|
|
if (!sticon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* already flashing the same icon */
|
|
|
|
if (flash_tag && gtk_status_icon_get_pixbuf (sticon) == icon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* no flashing if window is focused */
|
|
|
|
if (tray_get_window_status () == WS_FOCUSED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tray_stop_flash ();
|
|
|
|
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, icon);
|
2012-12-20 19:53:58 -05:00
|
|
|
if (prefs.hex_gui_tray_blink)
|
|
|
|
flash_tag = g_timeout_add (TIMEOUT, (GSourceFunc) tray_timeout_cb, icon);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_tray_set_flash (const char *filename1, const char *filename2, int tout)
|
|
|
|
{
|
|
|
|
tray_apply_setup ();
|
|
|
|
if (!sticon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tray_stop_flash ();
|
|
|
|
|
|
|
|
if (tout == -1)
|
|
|
|
tout = TIMEOUT;
|
|
|
|
|
|
|
|
custom_icon1 = tray_icon_from_file (filename1);
|
|
|
|
if (filename2)
|
|
|
|
custom_icon2 = tray_icon_from_file (filename2);
|
|
|
|
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, custom_icon1);
|
|
|
|
flash_tag = g_timeout_add (tout, (GSourceFunc) tray_timeout_cb, NULL);
|
|
|
|
tray_status = TS_CUSTOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_tray_set_icon (feicon icon)
|
|
|
|
{
|
|
|
|
tray_apply_setup ();
|
|
|
|
if (!sticon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tray_stop_flash ();
|
|
|
|
|
|
|
|
switch (icon)
|
|
|
|
{
|
|
|
|
case FE_ICON_NORMAL:
|
|
|
|
break;
|
|
|
|
case FE_ICON_MESSAGE:
|
2012-07-17 14:45:51 -04:00
|
|
|
case FE_ICON_PRIVMSG:
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_set_flash (ICON_MSG);
|
|
|
|
break;
|
|
|
|
case FE_ICON_HIGHLIGHT:
|
|
|
|
tray_set_flash (ICON_HILIGHT);
|
|
|
|
break;
|
|
|
|
case FE_ICON_FILEOFFER:
|
|
|
|
tray_set_flash (ICON_FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
fe_tray_set_file (const char *filename)
|
|
|
|
{
|
|
|
|
tray_apply_setup ();
|
|
|
|
if (!sticon)
|
|
|
|
return;
|
|
|
|
|
|
|
|
tray_stop_flash ();
|
|
|
|
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
custom_icon1 = tray_icon_from_file (filename);
|
|
|
|
gtk_status_icon_set_from_pixbuf (sticon, custom_icon1);
|
|
|
|
tray_status = TS_CUSTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
tray_toggle_visibility (gboolean force_hide)
|
|
|
|
{
|
|
|
|
static int x, y;
|
|
|
|
static GdkScreen *screen;
|
2012-12-16 12:54:15 -05:00
|
|
|
static int maximized;
|
2013-09-19 17:52:17 -04:00
|
|
|
static int fullscreen;
|
2011-02-23 22:14:30 -05:00
|
|
|
GtkWindow *win;
|
|
|
|
|
|
|
|
if (!sticon)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* ph may have an invalid context now */
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_set_context (ph, hexchat_find_context (ph, NULL, NULL));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 16:25:58 -04:00
|
|
|
win = GTK_WINDOW (hexchat_get_info (ph, "gtkwin_ptr"));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
|
|
|
tray_stop_flash ();
|
|
|
|
tray_reset_counts ();
|
|
|
|
|
|
|
|
if (!win)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (force_hide || gtk_widget_get_visible (GTK_WIDGET (win)))
|
|
|
|
{
|
2012-12-20 19:39:52 -05:00
|
|
|
if (prefs.hex_gui_tray_away)
|
|
|
|
hexchat_command (ph, "ALLSERV AWAY");
|
2011-02-23 22:14:30 -05:00
|
|
|
gtk_window_get_position (win, &x, &y);
|
|
|
|
screen = gtk_window_get_screen (win);
|
2012-12-16 12:54:15 -05:00
|
|
|
maximized = prefs.hex_gui_win_state;
|
2013-09-19 17:52:17 -04:00
|
|
|
fullscreen = prefs.hex_gui_win_fullscreen;
|
2011-02-23 22:14:30 -05:00
|
|
|
gtk_widget_hide (GTK_WIDGET (win));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-12-20 19:39:52 -05:00
|
|
|
if (prefs.hex_gui_tray_away)
|
|
|
|
hexchat_command (ph, "ALLSERV BACK");
|
2011-02-23 22:14:30 -05:00
|
|
|
gtk_window_set_screen (win, screen);
|
|
|
|
gtk_window_move (win, x, y);
|
2012-12-16 12:54:15 -05:00
|
|
|
if (maximized)
|
|
|
|
gtk_window_maximize (win);
|
2013-09-19 17:52:17 -04:00
|
|
|
if (fullscreen)
|
|
|
|
gtk_window_fullscreen (win);
|
2011-02-23 22:14:30 -05:00
|
|
|
gtk_widget_show (GTK_WIDGET (win));
|
|
|
|
gtk_window_present (win);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_menu_restore_cb (GtkWidget *item, gpointer userdata)
|
|
|
|
{
|
|
|
|
tray_toggle_visibility (FALSE);
|
|
|
|
}
|
|
|
|
|
2012-12-21 15:09:00 -05:00
|
|
|
static void
|
|
|
|
tray_menu_notify_cb (GObject *tray, GParamSpec *pspec, gpointer user_data)
|
|
|
|
{
|
2013-01-04 20:30:30 -05:00
|
|
|
if (sticon)
|
2013-01-03 18:18:04 -05:00
|
|
|
{
|
|
|
|
if (!gtk_status_icon_is_embedded (sticon))
|
|
|
|
{
|
|
|
|
tray_restore_timer = g_timeout_add(500, (GSourceFunc)tray_menu_try_restore, NULL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (tray_restore_timer)
|
|
|
|
{
|
|
|
|
g_source_remove (tray_restore_timer);
|
|
|
|
tray_restore_timer = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-21 15:09:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
tray_menu_try_restore ()
|
|
|
|
{
|
2013-01-03 18:18:04 -05:00
|
|
|
tray_cleanup();
|
|
|
|
tray_init();
|
|
|
|
return TRUE;
|
2012-12-21 15:09:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
static void
|
|
|
|
tray_menu_quit_cb (GtkWidget *item, gpointer userdata)
|
|
|
|
{
|
|
|
|
mg_open_quit_dialog (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* returns 0-mixed 1-away 2-back */
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_find_away_status (void)
|
|
|
|
{
|
|
|
|
GSList *list;
|
|
|
|
server *serv;
|
|
|
|
int away = 0;
|
|
|
|
int back = 0;
|
|
|
|
|
|
|
|
for (list = serv_list; list; list = list->next)
|
|
|
|
{
|
|
|
|
serv = list->data;
|
|
|
|
|
|
|
|
if (serv->is_away || serv->reconnect_away)
|
|
|
|
away++;
|
|
|
|
else
|
|
|
|
back++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (away && back)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (away)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_foreach_server (GtkWidget *item, char *cmd)
|
|
|
|
{
|
|
|
|
GSList *list;
|
|
|
|
server *serv;
|
|
|
|
|
|
|
|
for (list = serv_list; list; list = list->next)
|
|
|
|
{
|
|
|
|
serv = list->data;
|
|
|
|
if (serv->connected)
|
|
|
|
handle_command (serv->server_session, cmd, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
tray_make_item (GtkWidget *menu, char *label, void *callback, void *userdata)
|
|
|
|
{
|
|
|
|
GtkWidget *item;
|
|
|
|
|
|
|
|
if (label)
|
|
|
|
item = gtk_menu_item_new_with_mnemonic (label);
|
|
|
|
else
|
|
|
|
item = gtk_menu_item_new ();
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
|
|
|
|
g_signal_connect (G_OBJECT (item), "activate",
|
|
|
|
G_CALLBACK (callback), userdata);
|
|
|
|
gtk_widget_show (item);
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_toggle_cb (GtkCheckMenuItem *item, unsigned int *setting)
|
|
|
|
{
|
2013-05-12 01:43:27 -04:00
|
|
|
*setting = gtk_check_menu_item_get_active (item);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
blink_item (unsigned int *setting, GtkWidget *menu, char *label)
|
|
|
|
{
|
|
|
|
menu_toggle_item (label, menu, tray_toggle_cb, setting, *setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_menu_destroy (GtkWidget *menu, gpointer userdata)
|
|
|
|
{
|
|
|
|
gtk_widget_destroy (menu);
|
|
|
|
g_object_unref (menu);
|
2012-11-18 16:35:18 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
g_source_remove (tray_menu_timer);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
static void
|
|
|
|
tray_menu_enter_cb (GtkWidget *menu)
|
|
|
|
{
|
|
|
|
tray_menu_inactivetime = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_menu_left_cb (GtkWidget *menu)
|
|
|
|
{
|
|
|
|
tray_menu_inactivetime = g_get_real_time ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_check_hide (GtkWidget *menu)
|
|
|
|
{
|
|
|
|
if (tray_menu_inactivetime && g_get_real_time () - tray_menu_inactivetime >= 2000000)
|
|
|
|
{
|
|
|
|
tray_menu_destroy (menu, NULL);
|
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2012-11-22 02:49:41 -05:00
|
|
|
static void
|
|
|
|
tray_menu_settings (GtkWidget * wid, gpointer none)
|
|
|
|
{
|
|
|
|
extern void setup_open (void);
|
|
|
|
setup_open ();
|
|
|
|
}
|
2012-12-03 17:23:38 -05:00
|
|
|
#endif
|
2012-11-22 02:49:41 -05:00
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
static void
|
|
|
|
tray_menu_cb (GtkWidget *widget, guint button, guint time, gpointer userdata)
|
|
|
|
{
|
2012-11-18 15:45:31 -05:00
|
|
|
static GtkWidget *menu;
|
2011-02-23 22:14:30 -05:00
|
|
|
GtkWidget *submenu;
|
|
|
|
GtkWidget *item;
|
|
|
|
int away_status;
|
|
|
|
|
|
|
|
/* ph may have an invalid context now */
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_set_context (ph, hexchat_find_context (ph, NULL, NULL));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-11-18 15:45:31 -05:00
|
|
|
/* close any old menu */
|
2012-11-20 15:25:38 -05:00
|
|
|
if (G_IS_OBJECT (menu))
|
|
|
|
{
|
|
|
|
tray_menu_destroy (menu, NULL);
|
|
|
|
}
|
2012-11-18 15:45:31 -05:00
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
menu = gtk_menu_new ();
|
|
|
|
/*gtk_menu_set_screen (GTK_MENU (menu), gtk_widget_get_screen (widget));*/
|
|
|
|
|
|
|
|
if (tray_get_window_status () == WS_HIDDEN)
|
2011-02-28 12:59:32 -05:00
|
|
|
tray_make_item (menu, _("_Restore Window"), tray_menu_restore_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
2011-02-28 12:59:32 -05:00
|
|
|
tray_make_item (menu, _("_Hide Window"), tray_menu_restore_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_make_item (menu, NULL, tray_menu_quit_cb, NULL);
|
|
|
|
|
2012-11-23 04:40:35 -05:00
|
|
|
#ifndef WIN32 /* submenus are buggy on win32 */
|
2011-02-23 22:14:30 -05:00
|
|
|
submenu = mg_submenu (menu, _("_Blink on"));
|
2012-10-22 08:18:20 -04:00
|
|
|
blink_item (&prefs.hex_input_tray_chans, submenu, _("Channel Message"));
|
|
|
|
blink_item (&prefs.hex_input_tray_priv, submenu, _("Private Message"));
|
|
|
|
blink_item (&prefs.hex_input_tray_hilight, submenu, _("Highlighted Message"));
|
2011-02-23 22:14:30 -05:00
|
|
|
/*blink_item (BIT_FILEOFFER, submenu, _("File Offer"));*/
|
|
|
|
|
|
|
|
submenu = mg_submenu (menu, _("_Change status"));
|
2012-11-23 04:40:35 -05:00
|
|
|
#else /* so show away/back in main tray menu */
|
|
|
|
submenu = menu;
|
|
|
|
#endif
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
away_status = tray_find_away_status ();
|
|
|
|
item = tray_make_item (submenu, _("_Away"), tray_foreach_server, "away");
|
|
|
|
if (away_status == 1)
|
|
|
|
gtk_widget_set_sensitive (item, FALSE);
|
|
|
|
item = tray_make_item (submenu, _("_Back"), tray_foreach_server, "back");
|
|
|
|
if (away_status == 2)
|
|
|
|
gtk_widget_set_sensitive (item, FALSE);
|
|
|
|
|
2012-11-23 04:58:56 -05:00
|
|
|
menu_add_plugin_items (menu, "\x5$TRAY", NULL);
|
2012-12-03 17:23:38 -05:00
|
|
|
#ifdef WIN32
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_make_item (menu, NULL, tray_menu_quit_cb, NULL);
|
2012-11-22 02:49:41 -05:00
|
|
|
mg_create_icon_item (_("_Preferences"), GTK_STOCK_PREFERENCES, menu, tray_menu_settings, NULL);
|
2012-12-03 17:23:38 -05:00
|
|
|
#endif
|
2012-11-22 02:49:41 -05:00
|
|
|
tray_make_item (menu, NULL, tray_menu_quit_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
mg_create_icon_item (_("_Quit"), GTK_STOCK_QUIT, menu, tray_menu_quit_cb, NULL);
|
|
|
|
|
|
|
|
g_object_ref (menu);
|
|
|
|
g_object_ref_sink (menu);
|
|
|
|
g_object_unref (menu);
|
|
|
|
g_signal_connect (G_OBJECT (menu), "selection-done",
|
|
|
|
G_CALLBACK (tray_menu_destroy), NULL);
|
2012-11-18 16:35:18 -05:00
|
|
|
#ifdef WIN32
|
|
|
|
g_signal_connect (G_OBJECT (menu), "leave-notify-event",
|
|
|
|
G_CALLBACK (tray_menu_left_cb), NULL);
|
|
|
|
g_signal_connect (G_OBJECT (menu), "enter-notify-event",
|
|
|
|
G_CALLBACK (tray_menu_enter_cb), NULL);
|
|
|
|
|
|
|
|
tray_menu_timer = g_timeout_add(500, (GSourceFunc) tray_check_hide, menu);
|
|
|
|
#endif
|
|
|
|
|
2013-02-06 12:58:14 -05:00
|
|
|
gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL,
|
2011-02-23 22:14:30 -05:00
|
|
|
userdata, button, time);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_init (void)
|
|
|
|
{
|
|
|
|
flash_tag = 0;
|
|
|
|
tray_status = TS_NONE;
|
|
|
|
custom_icon1 = NULL;
|
|
|
|
custom_icon2 = NULL;
|
|
|
|
|
|
|
|
sticon = gtk_status_icon_new_from_pixbuf (ICON_NORMAL);
|
|
|
|
if (!sticon)
|
|
|
|
return;
|
2011-12-11 11:34:02 -05:00
|
|
|
|
|
|
|
g_signal_connect (G_OBJECT (sticon), "popup-menu",
|
|
|
|
G_CALLBACK (tray_menu_cb), sticon);
|
|
|
|
|
2011-02-23 22:14:30 -05:00
|
|
|
g_signal_connect (G_OBJECT (sticon), "activate",
|
|
|
|
G_CALLBACK (tray_menu_restore_cb), NULL);
|
2012-12-21 15:09:00 -05:00
|
|
|
|
2013-01-04 20:30:30 -05:00
|
|
|
g_signal_connect (G_OBJECT (sticon), "notify::embedded",
|
2012-12-21 15:09:00 -05:00
|
|
|
G_CALLBACK (tray_menu_notify_cb), NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_hilight_cb (char *word[], void *userdata)
|
|
|
|
{
|
|
|
|
/*if (tray_status == TS_HIGHLIGHT)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;*/
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2013-04-12 18:59:46 -04:00
|
|
|
if (prefs.hex_input_tray_hilight)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
tray_set_flash (ICON_HILIGHT);
|
|
|
|
|
|
|
|
/* FIXME: hides any previous private messages */
|
|
|
|
tray_hilight_count++;
|
|
|
|
if (tray_hilight_count == 1)
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": Highlighted message from: %s (%s)"),
|
2012-10-30 03:42:48 -04:00
|
|
|
word[1], hexchat_get_info (ph, "channel"));
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": %u highlighted messages, latest from: %s (%s)"),
|
2012-10-30 03:42:48 -04:00
|
|
|
tray_hilight_count, word[1], hexchat_get_info (ph, "channel"));
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2013-04-12 18:59:46 -04:00
|
|
|
if (prefs.hex_input_balloon_hilight)
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_balloonf (word[2], _("Highlighted message from: %s (%s)"),
|
2012-10-30 03:42:48 -04:00
|
|
|
word[1], hexchat_get_info (ph, "channel"));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_message_cb (char *word[], void *userdata)
|
|
|
|
{
|
|
|
|
if (/*tray_status == TS_MESSAGE ||*/ tray_status == TS_HIGHLIGHT)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2013-04-12 18:59:46 -04:00
|
|
|
|
|
|
|
if (prefs.hex_input_tray_chans)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
tray_set_flash (ICON_MSG);
|
|
|
|
|
|
|
|
tray_pub_count++;
|
|
|
|
if (tray_pub_count == 1)
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": Channel message from: %s (%s)"),
|
2012-10-30 03:42:48 -04:00
|
|
|
word[1], hexchat_get_info (ph, "channel"));
|
2011-02-23 22:14:30 -05:00
|
|
|
else
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": %u channel messages."), tray_pub_count);
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
2013-04-12 18:59:46 -04:00
|
|
|
if (prefs.hex_input_balloon_chans)
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_balloonf (word[2], _("Channel message from: %s (%s)"),
|
2012-10-30 03:42:48 -04:00
|
|
|
word[1], hexchat_get_info (ph, "channel"));
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_priv (char *from, char *text)
|
|
|
|
{
|
|
|
|
const char *network;
|
|
|
|
|
2012-10-22 08:50:36 -04:00
|
|
|
if (alert_match_word (from, prefs.hex_irc_no_hilight))
|
2011-02-23 22:14:30 -05:00
|
|
|
return;
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
network = hexchat_get_info (ph, "network");
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!network)
|
2012-10-30 03:42:48 -04:00
|
|
|
network = hexchat_get_info (ph, "server");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2013-12-27 22:41:18 -05:00
|
|
|
if (prefs.hex_input_tray_priv)
|
|
|
|
{
|
2013-12-27 22:50:40 -05:00
|
|
|
tray_set_flash (ICON_MSG);
|
2013-12-27 22:41:18 -05:00
|
|
|
|
|
|
|
tray_priv_count++;
|
|
|
|
if (tray_priv_count == 1)
|
2013-12-27 22:50:40 -05:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": Private message from: %s (%s)"),
|
|
|
|
from, network);
|
2013-12-27 22:41:18 -05:00
|
|
|
else
|
2013-12-27 22:50:40 -05:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": %u private messages, latest from: %s (%s)"),
|
|
|
|
tray_priv_count, from, network);
|
2013-12-27 22:41:18 -05:00
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2013-04-12 18:59:46 -04:00
|
|
|
if (prefs.hex_input_balloon_priv)
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_balloonf (text, _("Private message from: %s (%s)"),
|
2011-02-23 22:14:30 -05:00
|
|
|
from, network);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_priv_cb (char *word[], void *userdata)
|
|
|
|
{
|
2013-12-27 22:41:18 -05:00
|
|
|
tray_priv (word[1], word[2]);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_invited_cb (char *word[], void *userdata)
|
|
|
|
{
|
2013-12-27 22:41:18 -05:00
|
|
|
if (!prefs.hex_away_omit_alerts || tray_find_away_status () != 1)
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_priv (word[2], "Invited");
|
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_dcc_cb (char *word[], void *userdata)
|
|
|
|
{
|
|
|
|
const char *network;
|
|
|
|
|
|
|
|
/* if (tray_status == TS_FILEOFFER)
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;*/
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
network = hexchat_get_info (ph, "network");
|
2011-02-23 22:14:30 -05:00
|
|
|
if (!network)
|
2012-10-30 03:42:48 -04:00
|
|
|
network = hexchat_get_info (ph, "server");
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-22 08:18:20 -04:00
|
|
|
if (prefs.hex_input_tray_priv && (!prefs.hex_away_omit_alerts || tray_find_away_status () != 1))
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
tray_set_flash (ICON_FILE);
|
|
|
|
|
|
|
|
tray_file_count++;
|
|
|
|
if (tray_file_count == 1)
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": File offer from: %s (%s)"),
|
2011-02-23 22:14:30 -05:00
|
|
|
word[1], network);
|
|
|
|
else
|
2012-07-13 16:27:12 -04:00
|
|
|
tray_set_tipf (_(DISPLAY_NAME": %u file offers, latest from: %s (%s)"),
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_file_count, word[1], network);
|
|
|
|
}
|
|
|
|
|
2012-10-22 08:18:20 -04:00
|
|
|
if (prefs.hex_input_balloon_priv && (!prefs.hex_away_omit_alerts || tray_find_away_status () != 1))
|
2013-04-22 19:13:34 -04:00
|
|
|
tray_set_balloonf ("", _("File offer from: %s (%s)"),
|
2011-02-23 22:14:30 -05:00
|
|
|
word[1], network);
|
|
|
|
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
tray_focus_cb (char *word[], void *userdata)
|
|
|
|
{
|
|
|
|
tray_stop_flash ();
|
|
|
|
tray_reset_counts ();
|
2012-10-30 02:40:37 -04:00
|
|
|
return HEXCHAT_EAT_NONE;
|
2011-02-23 22:14:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
tray_cleanup (void)
|
|
|
|
{
|
|
|
|
tray_stop_flash ();
|
|
|
|
|
|
|
|
if (sticon)
|
|
|
|
{
|
|
|
|
g_object_unref ((GObject *)sticon);
|
|
|
|
sticon = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tray_apply_setup (void)
|
|
|
|
{
|
|
|
|
if (sticon)
|
|
|
|
{
|
2012-10-22 07:49:28 -04:00
|
|
|
if (!prefs.hex_gui_tray)
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_cleanup ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-02 14:55:54 -04:00
|
|
|
if (prefs.hex_gui_tray && !unity_mode ())
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_init ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-10-30 03:42:48 -04:00
|
|
|
tray_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name,
|
2011-02-23 22:14:30 -05:00
|
|
|
char **plugin_desc, char **plugin_version, char *arg)
|
|
|
|
{
|
2012-10-30 06:35:39 -04:00
|
|
|
/* we need to save this for use with any hexchat_* functions */
|
2011-02-23 22:14:30 -05:00
|
|
|
ph = plugin_handle;
|
|
|
|
|
|
|
|
*plugin_name = "";
|
|
|
|
*plugin_desc = "";
|
|
|
|
*plugin_version = "";
|
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "Channel Msg Hilight", -1, tray_hilight_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Channel Action Hilight", -1, tray_hilight_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "Channel Message", -1, tray_message_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Channel Action", -1, tray_message_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Channel Notice", -1, tray_message_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "Private Message", -1, tray_priv_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Private Message to Dialog", -1, tray_priv_cb, NULL);
|
2014-05-20 22:03:45 -04:00
|
|
|
hexchat_hook_print (ph, "Private Action", -1, tray_priv_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Private Action to Dialog", -1, tray_priv_cb, NULL);
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "Notice", -1, tray_priv_cb, NULL);
|
|
|
|
hexchat_hook_print (ph, "Invited", -1, tray_invited_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "DCC Offer", -1, tray_dcc_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2012-10-30 03:42:48 -04:00
|
|
|
hexchat_hook_print (ph, "Focus Window", -1, tray_focus_cb, NULL);
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2013-04-02 14:55:54 -04:00
|
|
|
if (prefs.hex_gui_tray && !unity_mode ())
|
2011-02-23 22:14:30 -05:00
|
|
|
tray_init ();
|
|
|
|
|
|
|
|
return 1; /* return 1 for success */
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-10-30 03:42:48 -04:00
|
|
|
tray_plugin_deinit (hexchat_plugin *plugin_handle)
|
2011-02-23 22:14:30 -05:00
|
|
|
{
|
|
|
|
#ifdef WIN32
|
|
|
|
tray_cleanup ();
|
2011-04-16 13:18:20 -04:00
|
|
|
#elif defined(USE_LIBNOTIFY)
|
|
|
|
notify_uninit ();
|
2011-02-23 22:14:30 -05:00
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|