Added SILC Thread Queue API
[runtime.git] / apps / irssi / src / fe-common / core / fe-expandos.c
1 /*
2  fe-expandos.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
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "module.h"
22 #include "expandos.h"
23 #include "fe-windows.h"
24
25 /* Window ref# */
26 static char *expando_winref(SERVER_REC *server, void *item, int *free_ret)
27 {
28         if (active_win == NULL)
29                 return "";
30
31         *free_ret = TRUE;
32         return g_strdup_printf("%d", active_win->refnum);
33 }
34
35 /* Window name */
36 static char *expando_winname(SERVER_REC *server, void *item, int *free_ret)
37 {
38         if (active_win == NULL)
39                 return "";
40
41         return active_win->name;
42 }
43
44 void fe_expandos_init(void)
45 {
46         expando_create("winref", expando_winref,
47                        "window changed", EXPANDO_ARG_NONE,
48                        "window refnum changed", EXPANDO_ARG_WINDOW, NULL);
49         expando_create("winname", expando_winname,
50                        "window changed", EXPANDO_ARG_NONE,
51                        "window name changed", EXPANDO_ARG_WINDOW, NULL);
52 }
53
54 void fe_expandos_deinit(void)
55 {
56         expando_destroy("winref", expando_winref);
57         expando_destroy("winname", expando_winname);
58 }