mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
84
src/irc/notifylist/notify-setup.c
Normal file
84
src/irc/notifylist/notify-setup.c
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
/*
|
||||
notify-setup.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 "lib-config/iconfig.h"
|
||||
#include "settings.h"
|
||||
|
||||
#include "irc-server.h"
|
||||
#include "notifylist.h"
|
||||
|
||||
void notifylist_add_config(NOTIFYLIST_REC *rec)
|
||||
{
|
||||
CONFIG_NODE *node;
|
||||
|
||||
node = iconfig_node_traverse("notifies", TRUE);
|
||||
node = config_node_section(node, rec->mask, NODE_TYPE_BLOCK);
|
||||
|
||||
if (rec->away_check)
|
||||
config_node_set_bool(node, "away_check", TRUE);
|
||||
else
|
||||
config_node_set_str(node, "away_check", NULL);
|
||||
|
||||
if (rec->idle_check_time > 0)
|
||||
config_node_set_int(node, "idle_check_time", rec->idle_check_time/60);
|
||||
else
|
||||
config_node_set_str(node, "idle_check_time", NULL);
|
||||
|
||||
config_node_set_str(node, "ircnets", NULL);
|
||||
if (rec->ircnets != NULL && *rec->ircnets != NULL) {
|
||||
node = config_node_section(node, "ircnets", NODE_TYPE_LIST);
|
||||
config_node_add_list(node, rec->ircnets);
|
||||
}
|
||||
}
|
||||
|
||||
void notifylist_remove_config(NOTIFYLIST_REC *rec)
|
||||
{
|
||||
iconfig_set_str("notifies", rec->mask, NULL);
|
||||
}
|
||||
|
||||
void notifylist_read_config(void)
|
||||
{
|
||||
CONFIG_NODE *node;
|
||||
NOTIFYLIST_REC *rec;
|
||||
GSList *tmp;
|
||||
|
||||
notifylist_destroy_all();
|
||||
|
||||
node = iconfig_node_traverse("notifies", FALSE);
|
||||
if (node == NULL) return;
|
||||
|
||||
for (tmp = node->value; tmp != NULL; tmp = tmp->next) {
|
||||
node = tmp->data;
|
||||
|
||||
if (node->type != NODE_TYPE_BLOCK)
|
||||
continue;
|
||||
|
||||
rec = g_new0(NOTIFYLIST_REC, 1);
|
||||
notifies = g_slist_append(notifies, rec);
|
||||
|
||||
rec->mask = g_strdup(node->key);
|
||||
rec->away_check = config_node_get_bool(node, "away_check", FALSE);
|
||||
rec->idle_check_time = config_node_get_int(node, "idle_check_time", 0)*60;
|
||||
|
||||
node = config_node_section(node, "ircnets", -1);
|
||||
if (node != NULL) rec->ircnets = config_node_get_list(node);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue