From 9e4c2ddc47592d26cd4184e8942806fbd7becf18 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Mon, 9 May 2016 09:01:09 +0200 Subject: Apply timeout changes made in preferences dialog Just involves a bit of refactoring. --- src/common/hexchat.c | 42 ++++++++++++++++++++++++++++++++---------- 1 file changed, 32 insertions(+), 10 deletions(-) (limited to 'src/common/hexchat.c') diff --git a/src/common/hexchat.c b/src/common/hexchat.c index f2c79024..3104ec53 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -369,6 +369,37 @@ hexchat_lag_check_update (void) /* this gets called every 0.5 seconds */ return 1; } +/* call whenever timeout intervals change */ +void +hexchat_reinit_timers (void) +{ + static int lag_check_update_tag = 0; + static int lag_check_tag = 0; + static int away_tag = 0; + + if (prefs.hex_notify_timeout) + { + notify_tag = fe_timeout_add_seconds (prefs.hex_notify_timeout, + notify_checklist, NULL); + } else + { + fe_timeout_remove (notify_tag); + } + + fe_timeout_remove (away_tag); + away_tag = fe_timeout_add_seconds (prefs.hex_away_timeout, away_check, NULL); + + if (prefs.hex_gui_lagometer) + { + lag_check_update_tag = fe_timeout_add (500, hexchat_lag_check_update, NULL); + lag_check_tag = fe_timeout_add_seconds (30, hexchat_lag_check, NULL); + } else + { + fe_timeout_remove (lag_check_update_tag); + fe_timeout_remove (lag_check_tag); + } +} + /* executed when the first irc window opens */ static void @@ -394,16 +425,7 @@ irc_init (session *sess) plugin_add (sess, NULL, NULL, dbus_plugin_init, NULL, NULL, FALSE); #endif - if (prefs.hex_notify_timeout) - notify_tag = fe_timeout_add_seconds (prefs.hex_notify_timeout, - notify_checklist, NULL); - - fe_timeout_add_seconds (prefs.hex_away_timeout, away_check, NULL); - if (prefs.hex_gui_lagometer) - { - fe_timeout_add (500, hexchat_lag_check_update, NULL); - fe_timeout_add_seconds (30, hexchat_lag_check, NULL); - } + hexchat_reinit_timers (); if (arg_url != NULL) { -- cgit 1.4.1