2000-04-26 04:03:38 -04:00
|
|
|
/*
|
2000-05-04 06:32:42 -04:00
|
|
|
window-activity.c : irssi
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
Copyright (C) 1999-2000 Timo Sirainen
|
|
|
|
|
|
|
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "module.h"
|
|
|
|
#include "signals.h"
|
|
|
|
#include "levels.h"
|
|
|
|
#include "server.h"
|
2000-06-09 12:19:42 -04:00
|
|
|
#include "misc.h"
|
|
|
|
#include "settings.h"
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
#include "windows.h"
|
|
|
|
#include "window-items.h"
|
|
|
|
|
2000-06-09 12:19:42 -04:00
|
|
|
static const char *noact_channels;
|
|
|
|
|
2000-05-15 04:25:45 -04:00
|
|
|
static void sig_hilight_text(WINDOW_REC *window, SERVER_REC *server, const char *channel, gpointer levelptr, const char *msg)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-06-09 12:19:42 -04:00
|
|
|
int level, oldlevel, new_data;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
|
|
|
level = GPOINTER_TO_INT(levelptr);
|
|
|
|
if (window == active_win || (level & (MSGLEVEL_NEVER|MSGLEVEL_NO_ACT|MSGLEVEL_MSGS)))
|
|
|
|
return;
|
|
|
|
|
2000-06-09 12:19:42 -04:00
|
|
|
new_data = (level & MSGLEVEL_HILIGHT) ?
|
2000-06-30 15:50:56 -04:00
|
|
|
NEWDATA_HILIGHT : NEWDATA_TEXT;
|
2000-06-09 12:19:42 -04:00
|
|
|
|
2000-06-30 15:50:56 -04:00
|
|
|
if (new_data < NEWDATA_HILIGHT &&
|
2000-06-09 12:19:42 -04:00
|
|
|
channel != NULL && find_substr(noact_channels, channel))
|
|
|
|
return;
|
|
|
|
|
2000-04-26 04:03:38 -04:00
|
|
|
oldlevel = window->new_data;
|
2000-06-09 12:19:42 -04:00
|
|
|
if (window->new_data < new_data) {
|
|
|
|
window->new_data = new_data;
|
2000-06-30 15:50:56 -04:00
|
|
|
window->last_color = 0;
|
2000-04-26 04:03:38 -04:00
|
|
|
signal_emit("window hilight", 1, window);
|
|
|
|
}
|
|
|
|
|
|
|
|
signal_emit("window activity", 2, window, GINT_TO_POINTER(oldlevel));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sig_dehilight(WINDOW_REC *window, WI_ITEM_REC *item)
|
|
|
|
{
|
|
|
|
g_return_if_fail(window != NULL);
|
|
|
|
|
|
|
|
if (item != NULL && item->new_data != 0) {
|
|
|
|
item->new_data = 0;
|
2000-06-30 15:50:56 -04:00
|
|
|
item->last_color = 0;
|
2000-04-26 04:03:38 -04:00
|
|
|
signal_emit("window item hilight", 1, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sig_dehilight_window(WINDOW_REC *window)
|
|
|
|
{
|
2000-05-04 06:32:42 -04:00
|
|
|
GSList *tmp;
|
2000-04-26 04:03:38 -04:00
|
|
|
int oldlevel;
|
|
|
|
|
|
|
|
g_return_if_fail(window != NULL);
|
|
|
|
|
|
|
|
if (window->new_data == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (window->new_data != 0) {
|
|
|
|
oldlevel = window->new_data;
|
|
|
|
window->new_data = 0;
|
2000-06-30 15:50:56 -04:00
|
|
|
window->last_color = 0;
|
2000-04-26 04:03:38 -04:00
|
|
|
signal_emit("window hilight", 2, window, GINT_TO_POINTER(oldlevel));
|
|
|
|
}
|
|
|
|
signal_emit("window activity", 2, window, GINT_TO_POINTER(oldlevel));
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
for (tmp = window->items; tmp != NULL; tmp = tmp->next)
|
|
|
|
sig_dehilight(window, tmp->data);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sig_hilight_window_item(WI_ITEM_REC *item)
|
|
|
|
{
|
|
|
|
WINDOW_REC *window;
|
|
|
|
GSList *tmp;
|
2000-06-30 15:50:56 -04:00
|
|
|
int level, oldlevel, color;
|
2000-04-26 04:03:38 -04:00
|
|
|
|
2000-06-30 15:50:56 -04:00
|
|
|
if (item->new_data < NEWDATA_HILIGHT &&
|
2000-06-09 12:19:42 -04:00
|
|
|
find_substr(noact_channels, item->name))
|
|
|
|
return;
|
|
|
|
|
2000-06-30 15:50:56 -04:00
|
|
|
window = window_item_window(item); level = 0; color = 0;
|
2000-04-26 04:03:38 -04:00
|
|
|
for (tmp = window->items; tmp != NULL; tmp = tmp->next) {
|
|
|
|
item = tmp->data;
|
|
|
|
|
2000-06-30 15:50:56 -04:00
|
|
|
if (item->new_data > level) {
|
2000-04-26 04:03:38 -04:00
|
|
|
level = item->new_data;
|
2000-06-30 15:50:56 -04:00
|
|
|
color = item->last_color;
|
|
|
|
}
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
oldlevel = window->new_data;
|
2000-06-30 15:50:56 -04:00
|
|
|
if (level == MSGLEVEL_HILIGHT)
|
|
|
|
window->last_color = color;
|
2000-04-26 04:03:38 -04:00
|
|
|
if (window->new_data < level || level == 0) {
|
|
|
|
window->new_data = level;
|
|
|
|
signal_emit("window hilight", 2, window, GINT_TO_POINTER(oldlevel));
|
|
|
|
}
|
|
|
|
signal_emit("window activity", 2, window, GINT_TO_POINTER(oldlevel));
|
|
|
|
}
|
|
|
|
|
2000-06-09 12:19:42 -04:00
|
|
|
static void read_settings(void)
|
|
|
|
{
|
|
|
|
noact_channels = settings_get_str("noact_channels");
|
|
|
|
}
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
void window_activity_init(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
2000-06-09 12:19:42 -04:00
|
|
|
settings_add_str("lookandfeel", "noact_channels", "");
|
|
|
|
|
|
|
|
read_settings();
|
2000-04-26 04:03:38 -04:00
|
|
|
signal_add("print text", (SIGNAL_FUNC) sig_hilight_text);
|
|
|
|
signal_add("window item changed", (SIGNAL_FUNC) sig_dehilight);
|
|
|
|
signal_add("window changed", (SIGNAL_FUNC) sig_dehilight_window);
|
|
|
|
signal_add("window dehilight", (SIGNAL_FUNC) sig_dehilight_window);
|
|
|
|
signal_add("window item hilight", (SIGNAL_FUNC) sig_hilight_window_item);
|
2000-06-09 12:19:42 -04:00
|
|
|
signal_add("setup changed", (SIGNAL_FUNC) read_settings);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|
|
|
|
|
2000-05-04 06:32:42 -04:00
|
|
|
void window_activity_deinit(void)
|
2000-04-26 04:03:38 -04:00
|
|
|
{
|
|
|
|
signal_remove("print text", (SIGNAL_FUNC) sig_hilight_text);
|
|
|
|
signal_remove("window item changed", (SIGNAL_FUNC) sig_dehilight);
|
|
|
|
signal_remove("window changed", (SIGNAL_FUNC) sig_dehilight_window);
|
|
|
|
signal_remove("window dehilight", (SIGNAL_FUNC) sig_dehilight_window);
|
|
|
|
signal_remove("window item hilight", (SIGNAL_FUNC) sig_hilight_window_item);
|
2000-06-09 12:19:42 -04:00
|
|
|
signal_remove("setup changed", (SIGNAL_FUNC) read_settings);
|
2000-04-26 04:03:38 -04:00
|
|
|
}
|