mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 10:42:33 +01:00
Remove input_balloon_time setting
This setting doesn't work on most platforms including some notification daemons on linux. Where it does work I think it is bad behavior to default overriding their defaults anyway. It's most valuable use was likely win32 tray balloons which no longer exist.
This commit is contained in:
parent
9858784eb6
commit
7063406d6c
@ -482,7 +482,6 @@ const struct prefs vars[] =
|
||||
{"input_balloon_chans", P_OFFINT (hex_input_balloon_chans), TYPE_BOOL},
|
||||
{"input_balloon_hilight", P_OFFINT (hex_input_balloon_hilight), TYPE_BOOL},
|
||||
{"input_balloon_priv", P_OFFINT (hex_input_balloon_priv), TYPE_BOOL},
|
||||
{"input_balloon_time", P_OFFINT (hex_input_balloon_time), TYPE_INT},
|
||||
{"input_beep_chans", P_OFFINT (hex_input_beep_chans), TYPE_BOOL},
|
||||
{"input_beep_hilight", P_OFFINT (hex_input_beep_hilight), TYPE_BOOL},
|
||||
{"input_beep_priv", P_OFFINT (hex_input_beep_priv), TYPE_BOOL},
|
||||
@ -828,7 +827,6 @@ load_default_config(void)
|
||||
prefs.hex_gui_ulist_pos = 3;
|
||||
prefs.hex_gui_win_height = 400;
|
||||
prefs.hex_gui_win_width = 640;
|
||||
prefs.hex_input_balloon_time = 20;
|
||||
prefs.hex_irc_ban_type = 1;
|
||||
prefs.hex_irc_join_delay = 5;
|
||||
prefs.hex_net_reconnect_delay = 10;
|
||||
|
@ -265,7 +265,6 @@ struct hexchatprefs
|
||||
int hex_gui_win_top;
|
||||
int hex_gui_win_width;
|
||||
int hex_identd_port;
|
||||
int hex_input_balloon_time;
|
||||
int hex_irc_ban_type;
|
||||
int hex_irc_join_delay;
|
||||
int hex_irc_notice_pos;
|
||||
|
@ -20,7 +20,7 @@
|
||||
#define HEXCHAT_PLUGIN_NOTIFICATION_BACKEND_H
|
||||
|
||||
int notification_backend_supported (void);
|
||||
void notification_backend_show (const char *title, const char *text, int timeout);
|
||||
void notification_backend_show (const char *title, const char *text);
|
||||
int notification_backend_init (void);
|
||||
void notification_backend_deinit (void);
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
static gboolean strip_markup = FALSE;
|
||||
|
||||
void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
NotifyNotification *notification;
|
||||
|
||||
@ -33,7 +33,6 @@ notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification = notify_notification_new (title, text, "hexchat");
|
||||
notify_notification_set_hint (notification, "desktop-entry", g_variant_new_string ("hexchat"));
|
||||
|
||||
notify_notification_set_timeout (notification, timeout);
|
||||
notify_notification_show (notification, NULL);
|
||||
|
||||
g_object_unref (notification);
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <gtkosxapplication.h>
|
||||
|
||||
void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
NSString *str_title = [[NSString alloc] initWithUTF8String:title];
|
||||
NSString *str_text = [[NSString alloc] initWithUTF8String:text];
|
||||
|
@ -23,20 +23,20 @@
|
||||
|
||||
#include <Windows.h>
|
||||
|
||||
void (*winrt_notification_backend_show) (const char *title, const char *text, int timeout) = NULL;
|
||||
void (*winrt_notification_backend_show) (const char *title, const char *text) = NULL;
|
||||
int (*winrt_notification_backend_init) (void) = NULL;
|
||||
void (*winrt_notification_backend_deinit) (void) = NULL;
|
||||
int (*winrt_notification_backend_supported) (void) = NULL;
|
||||
|
||||
void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
if (winrt_notification_backend_show == NULL)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
winrt_notification_backend_show (title, text, timeout);
|
||||
winrt_notification_backend_show (title, text);
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -41,7 +41,7 @@ widen(const std::string & to_widen)
|
||||
extern "C"
|
||||
{
|
||||
__declspec (dllexport) void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
@ -60,16 +60,6 @@ should_alert (void)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* Returns timeout in ms */
|
||||
static int
|
||||
get_timeout (void)
|
||||
{
|
||||
int timeout = 0;
|
||||
hexchat_get_prefs (ph, "input_balloon_time", NULL, &timeout);
|
||||
|
||||
return timeout * 1000;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
is_ignored (char *nick)
|
||||
{
|
||||
@ -91,7 +81,7 @@ show_notification (const char *title, const char *text)
|
||||
stripped_title = hexchat_strip (ph, title, -1, 7);
|
||||
stripped_text = hexchat_strip (ph, text, -1, 7);
|
||||
|
||||
notification_backend_show (stripped_title, stripped_text, get_timeout ());
|
||||
notification_backend_show (stripped_title, stripped_text);
|
||||
|
||||
hexchat_free (ph, stripped_title);
|
||||
hexchat_free (ph, stripped_text);
|
||||
|
Loading…
Reference in New Issue
Block a user