mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
1f23c05ee7
SERVER_REC->channels_join() for this channel. Usually just the channel name, but may contain also the channel key. If we receive PART-message to channel that hasn't received a JOIN yet, don't destroy the channel. It's probably because we did quickly /PART + /JOIN. Moved /CYCLE to fe-common/core, it doesn't close the window for the cycled channel anymore if you had autoclosing on. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1484 dbcabf3a-b0e7-0310-adc4-f8d773084564
612 lines
18 KiB
C
612 lines
18 KiB
C
/*
|
|
fe-channels.c : irssi
|
|
|
|
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 "module-formats.h"
|
|
#include "modules.h"
|
|
#include "signals.h"
|
|
#include "commands.h"
|
|
#include "levels.h"
|
|
#include "misc.h"
|
|
#include "settings.h"
|
|
|
|
#include "chat-protocols.h"
|
|
#include "chatnets.h"
|
|
#include "channels.h"
|
|
#include "channels-setup.h"
|
|
#include "nicklist.h"
|
|
|
|
#include "fe-windows.h"
|
|
#include "fe-channels.h"
|
|
#include "window-items.h"
|
|
#include "printtext.h"
|
|
|
|
static void signal_channel_created(CHANNEL_REC *channel, void *automatic)
|
|
{
|
|
if (window_item_window(channel) == NULL) {
|
|
window_item_create((WI_ITEM_REC *) channel,
|
|
GPOINTER_TO_INT(automatic));
|
|
}
|
|
}
|
|
|
|
static void signal_channel_created_curwin(CHANNEL_REC *channel)
|
|
{
|
|
g_return_if_fail(channel != NULL);
|
|
|
|
window_item_add(active_win, (WI_ITEM_REC *) channel, FALSE);
|
|
}
|
|
|
|
static void signal_channel_destroyed(CHANNEL_REC *channel)
|
|
{
|
|
WINDOW_REC *window;
|
|
|
|
g_return_if_fail(channel != NULL);
|
|
|
|
window = window_item_window((WI_ITEM_REC *) channel);
|
|
if (window == NULL)
|
|
return;
|
|
|
|
window_item_destroy((WI_ITEM_REC *) channel);
|
|
|
|
if (channel->joined && !channel->left &&
|
|
channel->server != NULL) {
|
|
/* kicked out from channel */
|
|
window_bind_add(window, channel->server->tag,
|
|
channel->name);
|
|
} else if (!channel->joined || channel->left)
|
|
window_auto_destroy(window);
|
|
}
|
|
|
|
static void signal_window_item_destroy(WINDOW_REC *window, WI_ITEM_REC *item)
|
|
{
|
|
CHANNEL_REC *channel;
|
|
|
|
g_return_if_fail(window != NULL);
|
|
|
|
channel = CHANNEL(item);
|
|
if (channel != NULL) channel_destroy(channel);
|
|
}
|
|
|
|
static void sig_disconnected(SERVER_REC *server)
|
|
{
|
|
WINDOW_REC *window;
|
|
GSList *tmp;
|
|
|
|
g_return_if_fail(IS_SERVER(server));
|
|
|
|
for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
|
|
CHANNEL_REC *channel = tmp->data;
|
|
|
|
window = window_item_window((WI_ITEM_REC *) channel);
|
|
window_bind_add(window, server->tag, channel->name);
|
|
}
|
|
}
|
|
|
|
static void signal_window_item_changed(WINDOW_REC *window, WI_ITEM_REC *item)
|
|
{
|
|
g_return_if_fail(window != NULL);
|
|
if (item == NULL) return;
|
|
|
|
if (g_slist_length(window->items) > 1 && IS_CHANNEL(item)) {
|
|
printformat(item->server, item->name, MSGLEVEL_CLIENTNOTICE,
|
|
TXT_TALKING_IN, item->name);
|
|
signal_stop();
|
|
}
|
|
}
|
|
|
|
static void cmd_wjoin_pre(const char *data)
|
|
{
|
|
GHashTable *optlist;
|
|
char *nick;
|
|
void *free_arg;
|
|
|
|
if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
|
|
PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
|
|
"join", &optlist, &nick))
|
|
return;
|
|
|
|
if (g_hash_table_lookup(optlist, "window") != NULL) {
|
|
signal_add("channel created",
|
|
(SIGNAL_FUNC) signal_channel_created_curwin);
|
|
}
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
static void cmd_join(const char *data, SERVER_REC *server)
|
|
{
|
|
WINDOW_REC *window;
|
|
CHANNEL_REC *channel;
|
|
|
|
if (strchr(data, ' ') != NULL || strchr(data, ',') != NULL)
|
|
return;
|
|
|
|
channel = channel_find(server, data);
|
|
if (channel == NULL)
|
|
return;
|
|
|
|
window = window_item_window(channel);
|
|
|
|
if (window == active_win) {
|
|
/* channel is in active window, set it active */
|
|
window_item_set_active(active_win,
|
|
(WI_ITEM_REC *) channel);
|
|
} else {
|
|
/* notify user how to move the channel to active
|
|
window. this was used to be done automatically
|
|
but it just confused everyone who did it
|
|
accidentally */
|
|
printformat_window(active_win, MSGLEVEL_CLIENTNOTICE,
|
|
TXT_CHANNEL_MOVE_NOTIFY, channel->name,
|
|
window->refnum);
|
|
}
|
|
}
|
|
|
|
static void cmd_wjoin_post(const char *data)
|
|
{
|
|
GHashTable *optlist;
|
|
char *nick;
|
|
void *free_arg;
|
|
|
|
if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
|
|
PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
|
|
"join", &optlist, &nick))
|
|
return;
|
|
|
|
if (g_hash_table_lookup(optlist, "window") != NULL) {
|
|
signal_remove("channel created",
|
|
(SIGNAL_FUNC) signal_channel_created_curwin);
|
|
}
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
static void cmd_channel_list_joined(void)
|
|
{
|
|
CHANNEL_REC *channel;
|
|
GString *nicks;
|
|
GSList *nicklist, *tmp, *ntmp;
|
|
|
|
if (channels == NULL) {
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_NOT_IN_CHANNELS);
|
|
return;
|
|
}
|
|
|
|
/* print active channel */
|
|
channel = CHANNEL(active_win->active);
|
|
if (channel != NULL)
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CURRENT_CHANNEL, channel->name);
|
|
|
|
/* print list of all channels, their modes, server tags and nicks */
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANLIST_HEADER);
|
|
for (tmp = channels; tmp != NULL; tmp = tmp->next) {
|
|
channel = tmp->data;
|
|
|
|
nicklist = nicklist_getnicks(channel);
|
|
nicks = g_string_new(NULL);
|
|
for (ntmp = nicklist; ntmp != NULL; ntmp = ntmp->next) {
|
|
NICK_REC *rec = ntmp->data;
|
|
|
|
g_string_sprintfa(nicks, "%s ", rec->nick);
|
|
}
|
|
|
|
if (nicks->len > 1) g_string_truncate(nicks, nicks->len-1);
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANLIST_LINE,
|
|
channel->name, channel->mode, channel->server->tag, nicks->str);
|
|
|
|
g_slist_free(nicklist);
|
|
g_string_free(nicks, TRUE);
|
|
}
|
|
}
|
|
|
|
/* SYNTAX: CHANNEL LIST */
|
|
static void cmd_channel_list(void)
|
|
{
|
|
GString *str;
|
|
GSList *tmp;
|
|
|
|
str = g_string_new(NULL);
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_HEADER);
|
|
for (tmp = setupchannels; tmp != NULL; tmp = tmp->next) {
|
|
CHANNEL_SETUP_REC *rec = tmp->data;
|
|
|
|
g_string_truncate(str, 0);
|
|
if (rec->autojoin)
|
|
g_string_append(str, "autojoin, ");
|
|
if (rec->botmasks != NULL && *rec->botmasks != '\0')
|
|
g_string_sprintfa(str, "bots: %s, ", rec->botmasks);
|
|
if (rec->autosendcmd != NULL && *rec->autosendcmd != '\0')
|
|
g_string_sprintfa(str, "botcmd: %s, ", rec->autosendcmd);
|
|
|
|
if (str->len > 2) g_string_truncate(str, str->len-2);
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_LINE,
|
|
rec->name, rec->chatnet == NULL ? "" : rec->chatnet,
|
|
rec->password == NULL ? "" : rec->password, str->str);
|
|
}
|
|
g_string_free(str, TRUE);
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_FOOTER);
|
|
}
|
|
|
|
static void cmd_channel(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|
{
|
|
if (*data == '\0')
|
|
cmd_channel_list_joined();
|
|
else
|
|
command_runsub("channel", data, server, item);
|
|
}
|
|
|
|
/* SYNTAX: CHANNEL ADD [-auto | -noauto] [-bots <masks>] [-botcmd <command>]
|
|
<channel> <chatnet> [<password>] */
|
|
static void cmd_channel_add(const char *data)
|
|
{
|
|
GHashTable *optlist;
|
|
CHATNET_REC *chatnetrec;
|
|
CHANNEL_SETUP_REC *rec;
|
|
char *botarg, *botcmdarg, *chatnet, *channel, *password;
|
|
void *free_arg;
|
|
|
|
if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_OPTIONS,
|
|
"channel add", &optlist, &channel, &chatnet, &password))
|
|
return;
|
|
|
|
if (*chatnet == '\0' || *channel == '\0')
|
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
chatnetrec = chatnet_find(chatnet);
|
|
if (chatnetrec == NULL) {
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
|
TXT_UNKNOWN_CHATNET, chatnet);
|
|
cmd_params_free(free_arg);
|
|
return;
|
|
}
|
|
|
|
botarg = g_hash_table_lookup(optlist, "bots");
|
|
botcmdarg = g_hash_table_lookup(optlist, "botcmd");
|
|
|
|
rec = channel_setup_find(channel, chatnet);
|
|
if (rec == NULL) {
|
|
rec = CHAT_PROTOCOL(chatnetrec)->create_channel_setup();
|
|
rec->name = g_strdup(channel);
|
|
rec->chatnet = g_strdup(chatnet);
|
|
} else {
|
|
if (g_hash_table_lookup(optlist, "bots")) g_free_and_null(rec->botmasks);
|
|
if (g_hash_table_lookup(optlist, "botcmd")) g_free_and_null(rec->autosendcmd);
|
|
if (*password != '\0') g_free_and_null(rec->password);
|
|
}
|
|
if (g_hash_table_lookup(optlist, "auto")) rec->autojoin = TRUE;
|
|
if (g_hash_table_lookup(optlist, "noauto")) rec->autojoin = FALSE;
|
|
if (botarg != NULL && *botarg != '\0') rec->botmasks = g_strdup(botarg);
|
|
if (botcmdarg != NULL && *botcmdarg != '\0') rec->autosendcmd = g_strdup(botcmdarg);
|
|
if (*password != '\0' && strcmp(password, "-") != 0) rec->password = g_strdup(password);
|
|
|
|
signal_emit("channel add fill", 2, rec, optlist);
|
|
|
|
channel_setup_create(rec);
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
|
|
TXT_CHANSETUP_ADDED, channel, chatnet);
|
|
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
/* SYNTAX: CHANNEL REMOVE <channel> <chatnet> */
|
|
static void cmd_channel_remove(const char *data)
|
|
{
|
|
CHANNEL_SETUP_REC *rec;
|
|
char *chatnet, *channel;
|
|
void *free_arg;
|
|
|
|
if (!cmd_get_params(data, &free_arg, 2, &channel, &chatnet))
|
|
return;
|
|
if (*chatnet == '\0' || *channel == '\0')
|
|
cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
rec = channel_setup_find(channel, chatnet);
|
|
if (rec == NULL)
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CHANSETUP_NOT_FOUND, channel, chatnet);
|
|
else {
|
|
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CHANSETUP_REMOVED, channel, chatnet);
|
|
channel_setup_remove(rec);
|
|
}
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
static int get_nick_length(void *data)
|
|
{
|
|
return strlen(((NICK_REC *) data)->nick);
|
|
}
|
|
|
|
static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist)
|
|
{
|
|
WINDOW_REC *window;
|
|
TEXT_DEST_REC dest;
|
|
GString *str;
|
|
GSList *tmp;
|
|
char *format, *stripped;
|
|
char *linebuf, nickmode[2] = { 0, 0 };
|
|
int *columns, cols, rows, last_col_rows, col, row, max_width;
|
|
int item_extra, linebuf_size;
|
|
|
|
window = window_find_closest(channel->server, channel->name,
|
|
MSGLEVEL_CLIENTCRAP);
|
|
max_width = window->width;
|
|
|
|
/* get the length of item extra stuff ("[ ] ") */
|
|
format = format_get_text(MODULE_NAME, NULL,
|
|
channel->server, channel->name,
|
|
TXT_NAMES_NICK, " ", "");
|
|
stripped = strip_codes(format);
|
|
item_extra = strlen(stripped);
|
|
g_free(stripped);
|
|
g_free(format);
|
|
|
|
if (settings_get_int("names_max_width") > 0 &&
|
|
max_width > settings_get_int("names_max_width"))
|
|
max_width = settings_get_int("names_max_width");
|
|
|
|
/* remove width of timestamp from max_width */
|
|
format_create_dest(&dest, channel->server, channel->name,
|
|
MSGLEVEL_CLIENTCRAP, NULL);
|
|
format = format_get_line_start(current_theme, &dest, time(NULL));
|
|
if (format != NULL) {
|
|
stripped = strip_codes(format);
|
|
max_width -= strlen(stripped);
|
|
g_free(stripped);
|
|
g_free(format);
|
|
}
|
|
|
|
/* calculate columns */
|
|
cols = get_max_column_count(nicklist, get_nick_length, max_width,
|
|
settings_get_int("names_max_columns"),
|
|
item_extra, 3, &columns, &rows);
|
|
nicklist = columns_sort_list(nicklist, rows);
|
|
|
|
/* rows in last column */
|
|
last_col_rows = rows-(cols*rows-g_slist_length(nicklist));
|
|
if (last_col_rows == 0)
|
|
last_col_rows = rows;
|
|
|
|
str = g_string_new(NULL);
|
|
linebuf_size = max_width+1; linebuf = g_malloc(linebuf_size);
|
|
|
|
col = 0; row = 0;
|
|
for (tmp = nicklist; tmp != NULL; tmp = tmp->next) {
|
|
NICK_REC *rec = tmp->data;
|
|
|
|
nickmode[0] = rec->op ? '@' : rec->voice ? '+' : ' ';
|
|
|
|
if (linebuf_size < columns[col]-item_extra+1) {
|
|
linebuf_size = (columns[col]-item_extra+1)*2;
|
|
linebuf = g_realloc(linebuf, linebuf_size);
|
|
}
|
|
memset(linebuf, ' ', columns[col]-item_extra);
|
|
linebuf[columns[col]-item_extra] = '\0';
|
|
memcpy(linebuf, rec->nick, strlen(rec->nick));
|
|
|
|
format = format_get_text(MODULE_NAME, NULL,
|
|
channel->server, channel->name,
|
|
TXT_NAMES_NICK, nickmode, linebuf);
|
|
g_string_append(str, format);
|
|
g_free(format);
|
|
|
|
if (++col == cols) {
|
|
printtext(channel->server, channel->name,
|
|
MSGLEVEL_CLIENTCRAP, "%s", str->str);
|
|
g_string_truncate(str, 0);
|
|
col = 0; row++;
|
|
|
|
if (row == last_col_rows)
|
|
cols--;
|
|
}
|
|
}
|
|
|
|
if (str->len != 0) {
|
|
printtext(channel->server, channel->name,
|
|
MSGLEVEL_CLIENTCRAP, "%s", str->str);
|
|
}
|
|
|
|
g_slist_free(nicklist);
|
|
g_string_free(str, TRUE);
|
|
g_free_not_null(columns);
|
|
g_free(linebuf);
|
|
}
|
|
|
|
void fe_channels_nicklist(CHANNEL_REC *channel, int flags)
|
|
{
|
|
NICK_REC *nick;
|
|
GSList *tmp, *nicklist, *sorted;
|
|
int nicks, normal, voices, ops;
|
|
|
|
nicks = normal = voices = ops = 0;
|
|
nicklist = nicklist_getnicks(channel);
|
|
sorted = NULL;
|
|
|
|
/* sort the nicklist */
|
|
for (tmp = nicklist; tmp != NULL; tmp = tmp->next) {
|
|
nick = tmp->data;
|
|
|
|
nicks++;
|
|
if (nick->op) {
|
|
ops++;
|
|
if ((flags & CHANNEL_NICKLIST_FLAG_OPS) == 0)
|
|
continue;
|
|
} else if (nick->halfop) {
|
|
if ((flags & CHANNEL_NICKLIST_FLAG_HALFOPS) == 0)
|
|
continue;
|
|
} else if (nick->voice) {
|
|
voices++;
|
|
if ((flags & CHANNEL_NICKLIST_FLAG_VOICES) == 0)
|
|
continue;
|
|
} else {
|
|
normal++;
|
|
if ((flags & CHANNEL_NICKLIST_FLAG_NORMAL) == 0)
|
|
continue;
|
|
}
|
|
|
|
sorted = g_slist_insert_sorted(sorted, nick, (GCompareFunc)
|
|
nicklist_compare);
|
|
}
|
|
g_slist_free(nicklist);
|
|
|
|
/* display the nicks */
|
|
printformat(channel->server, channel->name,
|
|
MSGLEVEL_CRAP, TXT_NAMES, channel->name, "");
|
|
display_sorted_nicks(channel, sorted);
|
|
g_slist_free(sorted);
|
|
|
|
printformat(channel->server, channel->name,
|
|
MSGLEVEL_CRAP, TXT_ENDOFNAMES,
|
|
channel->name, nicks, ops, voices, normal);
|
|
}
|
|
|
|
/* SYNTAX: NAMES [-ops -halfops -voices -normal] [<channels> | **] */
|
|
static void cmd_names(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|
{
|
|
CHANNEL_REC *chanrec;
|
|
GHashTable *optlist;
|
|
GString *unknowns;
|
|
char *channel, **channels, **tmp;
|
|
int flags;
|
|
void *free_arg;
|
|
|
|
g_return_if_fail(data != NULL);
|
|
if (!IS_SERVER(server) || !server->connected)
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS,
|
|
"names", &optlist, &channel))
|
|
return;
|
|
|
|
if (strcmp(channel, "*") == 0 || *channel == '\0') {
|
|
if (!IS_CHANNEL(item))
|
|
cmd_param_error(CMDERR_NOT_JOINED);
|
|
|
|
channel = item->name;
|
|
}
|
|
|
|
flags = 0;
|
|
if (g_hash_table_lookup(optlist, "ops") != NULL)
|
|
flags |= CHANNEL_NICKLIST_FLAG_OPS;
|
|
if (g_hash_table_lookup(optlist, "halfops") != NULL)
|
|
flags |= CHANNEL_NICKLIST_FLAG_HALFOPS;
|
|
if (g_hash_table_lookup(optlist, "voices") != NULL)
|
|
flags |= CHANNEL_NICKLIST_FLAG_VOICES;
|
|
if (g_hash_table_lookup(optlist, "normal") != NULL)
|
|
flags |= CHANNEL_NICKLIST_FLAG_NORMAL;
|
|
|
|
if (flags == 0) flags = CHANNEL_NICKLIST_FLAG_ALL;
|
|
|
|
unknowns = g_string_new(NULL);
|
|
|
|
channels = g_strsplit(channel, ",", -1);
|
|
for (tmp = channels; *tmp != NULL; tmp++) {
|
|
chanrec = channel_find(server, *tmp);
|
|
if (chanrec == NULL)
|
|
g_string_sprintfa(unknowns, "%s,", *tmp);
|
|
else {
|
|
fe_channels_nicklist(chanrec, flags);
|
|
signal_stop();
|
|
}
|
|
}
|
|
g_strfreev(channels);
|
|
|
|
if (unknowns->len > 1)
|
|
g_string_truncate(unknowns, unknowns->len-1);
|
|
|
|
if (unknowns->len > 0 && strcmp(channel, unknowns->str) != 0)
|
|
signal_emit("command names", 3, unknowns->str, server, item);
|
|
g_string_free(unknowns, TRUE);
|
|
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
/* SYNTAX: CYCLE [<channel>] [<message>] */
|
|
static void cmd_cycle(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
|
|
{
|
|
CHANNEL_REC *chanrec;
|
|
char *channame, *msg, *joindata;
|
|
void *free_arg;
|
|
|
|
g_return_if_fail(data != NULL);
|
|
if (!IS_SERVER(server) || !server->connected)
|
|
cmd_return_error(CMDERR_NOT_CONNECTED);
|
|
|
|
if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_OPTCHAN,
|
|
item, &channame, &msg))
|
|
return;
|
|
if (*channame == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
|
|
|
|
chanrec = channel_find(server, channame);
|
|
if (chanrec == NULL) cmd_param_error(CMDERR_CHAN_NOT_FOUND);
|
|
|
|
joindata = chanrec->get_join_data(chanrec);
|
|
window_bind_add(window_item_window(chanrec),
|
|
chanrec->server->tag, chanrec->name);
|
|
channel_destroy(chanrec);
|
|
|
|
server->channels_join(server, joindata, FALSE);
|
|
g_free(joindata);
|
|
|
|
cmd_params_free(free_arg);
|
|
}
|
|
|
|
void fe_channels_init(void)
|
|
{
|
|
settings_add_bool("lookandfeel", "autoclose_windows", TRUE);
|
|
settings_add_int("lookandfeel", "names_max_columns", 6);
|
|
settings_add_int("lookandfeel", "names_max_width", 0);
|
|
|
|
signal_add("channel created", (SIGNAL_FUNC) signal_channel_created);
|
|
signal_add("channel destroyed", (SIGNAL_FUNC) signal_channel_destroyed);
|
|
signal_add_last("window item destroy", (SIGNAL_FUNC) signal_window_item_destroy);
|
|
signal_add_last("window item changed", (SIGNAL_FUNC) signal_window_item_changed);
|
|
signal_add_last("server disconnected", (SIGNAL_FUNC) sig_disconnected);
|
|
|
|
command_bind_first("join", NULL, (SIGNAL_FUNC) cmd_wjoin_pre);
|
|
command_bind("join", NULL, (SIGNAL_FUNC) cmd_join);
|
|
command_bind_last("join", NULL, (SIGNAL_FUNC) cmd_wjoin_post);
|
|
command_bind("channel", NULL, (SIGNAL_FUNC) cmd_channel);
|
|
command_bind("channel add", NULL, (SIGNAL_FUNC) cmd_channel_add);
|
|
command_bind("channel remove", NULL, (SIGNAL_FUNC) cmd_channel_remove);
|
|
command_bind("channel list", NULL, (SIGNAL_FUNC) cmd_channel_list);
|
|
command_bind("names", NULL, (SIGNAL_FUNC) cmd_names);
|
|
command_bind("cycle", NULL, (SIGNAL_FUNC) cmd_cycle);
|
|
|
|
command_set_options("channel add", "auto noauto -bots -botcmd");
|
|
command_set_options("names", "ops halfops voices normal");
|
|
command_set_options("join", "window");
|
|
}
|
|
|
|
void fe_channels_deinit(void)
|
|
{
|
|
signal_remove("channel created", (SIGNAL_FUNC) signal_channel_created);
|
|
signal_remove("channel destroyed", (SIGNAL_FUNC) signal_channel_destroyed);
|
|
signal_remove("window item destroy", (SIGNAL_FUNC) signal_window_item_destroy);
|
|
signal_remove("window item changed", (SIGNAL_FUNC) signal_window_item_changed);
|
|
signal_remove("server disconnected", (SIGNAL_FUNC) sig_disconnected);
|
|
|
|
command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_pre);
|
|
command_unbind("join", (SIGNAL_FUNC) cmd_join);
|
|
command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_post);
|
|
command_unbind("channel", (SIGNAL_FUNC) cmd_channel);
|
|
command_unbind("channel add", (SIGNAL_FUNC) cmd_channel_add);
|
|
command_unbind("channel remove", (SIGNAL_FUNC) cmd_channel_remove);
|
|
command_unbind("channel list", (SIGNAL_FUNC) cmd_channel_list);
|
|
command_unbind("names", (SIGNAL_FUNC) cmd_names);
|
|
command_unbind("cycle", (SIGNAL_FUNC) cmd_cycle);
|
|
}
|