3a084110e66f6ca08137ca3839738cc11defe9c5
[silc.git] / apps / irssi / src / fe-text / mainwindow-activity.c
1 /*
2  mainwindow-activity.c : irssi
3
4     Copyright (C) 2000 Timo Sirainen
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License along
17     with this program; if not, write to the Free Software Foundation, Inc.,
18     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21 #include "module.h"
22 #include "signals.h"
23
24 #include "gui-windows.h"
25
26 /* Don't send window activity if window is already visible in
27    another mainwindow */
28 static void sig_activity(WINDOW_REC *window)
29 {
30         GSList *tmp;
31
32         if (!is_window_visible(window) || window->data_level == 0)
33                 return;
34
35         window->data_level = 0;
36         g_free_and_null(window->hilight_color);
37
38         for (tmp = window->items; tmp != NULL; tmp = tmp->next) {
39                 WI_ITEM_REC *item = tmp->data;
40
41                 item->data_level = 0;
42                 g_free_and_null(item->hilight_color);
43         }
44         signal_stop();
45 }
46
47 void mainwindow_activity_init(void)
48 {
49         signal_add_first("window hilight", (SIGNAL_FUNC) sig_activity);
50         signal_add_first("window activity", (SIGNAL_FUNC) sig_activity);
51 }
52
53 void mainwindow_activity_deinit(void)
54 {
55         signal_remove("window hilight", (SIGNAL_FUNC) sig_activity);
56         signal_remove("window activity", (SIGNAL_FUNC) sig_activity);
57 }