Merges from Irssi CVS.
[crypto.git] / apps / irssi / src / fe-common / core / windows-layout.c
1 /*
2  windows-layout.c : irssi
3
4     Copyright (C) 2000-2001 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 "signals.h"
23 #include "misc.h"
24 #include "levels.h"
25 #include "lib-config/iconfig.h"
26 #include "settings.h"
27
28 #include "chat-protocols.h"
29 #include "servers.h"
30 #include "queries.h"
31
32 #include "module-formats.h"
33 #include "printtext.h"
34 #include "themes.h"
35 #include "fe-windows.h"
36 #include "window-items.h"
37
38 static WINDOW_REC *restore_win;
39
40 static void signal_query_created_curwin(QUERY_REC *query)
41 {
42         g_return_if_fail(IS_QUERY(query));
43
44         window_item_add(restore_win, (WI_ITEM_REC *) query, TRUE);
45 }
46
47 static void sig_layout_restore_item(WINDOW_REC *window, const char *type,
48                                     CONFIG_NODE *node)
49 {
50         char *name, *tag, *chat_type;
51
52         chat_type = config_node_get_str(node, "chat_type", NULL);
53         name = config_node_get_str(node, "name", NULL);
54         tag = config_node_get_str(node, "tag", NULL);
55
56         if (name == NULL || tag == NULL)
57                 return;
58
59         if (g_strcasecmp(type, "CHANNEL") == 0) {
60                 /* bind channel to window */
61                 WINDOW_BIND_REC *rec = window_bind_add(window, tag, name);
62                 rec->sticky = TRUE;
63         } else if (g_strcasecmp(type, "QUERY") == 0 && chat_type != NULL) {
64                 /* create query immediately */
65                 signal_add("query created",
66                            (SIGNAL_FUNC) signal_query_created_curwin);
67
68                 restore_win = window;
69                 chat_protocol_find(chat_type)->query_create(tag, name, TRUE);
70
71                 signal_remove("query created",
72                               (SIGNAL_FUNC) signal_query_created_curwin);
73         }
74 }
75
76 static void window_add_items(WINDOW_REC *window, CONFIG_NODE *node)
77 {
78         GSList *tmp;
79         char *type;
80
81         if (node == NULL)
82                 return;
83
84         tmp = config_node_first(node->value);
85         for (; tmp != NULL; tmp = config_node_next(tmp)) {
86                 CONFIG_NODE *node = tmp->data;
87
88                 type = config_node_get_str(node, "type", NULL);
89                 if (type != NULL) {
90                         signal_emit("layout restore item", 3,
91                                     window, type, node);
92                 }
93         }
94 }
95
96 void windows_layout_restore(void)
97 {
98         signal_emit("layout restore", 0);
99 }
100
101 static void sig_layout_restore(void)
102 {
103         WINDOW_REC *window;
104         CONFIG_NODE *node;
105         GSList *tmp;
106
107         node = iconfig_node_traverse("windows", FALSE);
108         if (node == NULL) return;
109
110         tmp = config_node_first(node->value);
111         for (; tmp != NULL; tmp = config_node_next(tmp)) {
112                 CONFIG_NODE *node = tmp->data;
113
114                 window = window_find_refnum(atoi(node->key));
115                 if (window == NULL)
116                         window = window_create(NULL, TRUE);
117
118                 window_set_refnum(window, atoi(node->key));
119                 window->sticky_refnum = config_node_get_bool(node, "sticky_refnum", FALSE);
120                 window->immortal = config_node_get_bool(node, "immortal", FALSE);
121                 window_set_name(window, config_node_get_str(node, "name", NULL));
122                 window_set_history(window, config_node_get_str(node, "history_name", NULL));
123                 window_set_level(window, level2bits(config_node_get_str(node, "level", "")));
124
125                 window->servertag = g_strdup(config_node_get_str(node, "servertag", NULL));
126                 window->theme_name = g_strdup(config_node_get_str(node, "theme", NULL));
127                 if (window->theme_name != NULL)
128                         window->theme = theme_load(window->theme_name);
129
130                 window_add_items(window, config_node_section(node, "items", -1));
131                 signal_emit("layout restore window", 2, window, node);
132         }
133 }
134
135 static void sig_layout_save_item(WINDOW_REC *window, WI_ITEM_REC *item,
136                                  CONFIG_NODE *node)
137 {
138         CONFIG_NODE *subnode;
139         const char *type;
140
141         type = module_find_id_str("WINDOW ITEM TYPE", item->type);
142         if (type == NULL)
143                 return;
144
145         subnode = config_node_section(node, NULL, NODE_TYPE_BLOCK);
146
147         iconfig_node_set_str(subnode, "type", type);
148         type = chat_protocol_find_id(item->chat_type)->name;
149         iconfig_node_set_str(subnode, "chat_type", type);
150         iconfig_node_set_str(subnode, "name", item->name);
151
152         if (item->server != NULL)
153                 iconfig_node_set_str(subnode, "tag", item->server->tag);
154         else if (IS_QUERY(item)) {
155                 iconfig_node_set_str(subnode, "tag", QUERY(item)->server_tag);
156         }
157 }
158
159 static void window_save_items(WINDOW_REC *window, CONFIG_NODE *node)
160 {
161         GSList *tmp;
162
163         node = config_node_section(node, "items", NODE_TYPE_LIST);
164         for (tmp = window->items; tmp != NULL; tmp = tmp->next)
165                 signal_emit("layout save item", 3, window, tmp->data, node);
166 }
167
168 static void window_save(WINDOW_REC *window, CONFIG_NODE *node)
169 {
170         char refnum[MAX_INT_STRLEN];
171
172         ltoa(refnum, window->refnum);
173         node = config_node_section(node, refnum, NODE_TYPE_BLOCK);
174
175         if (window->sticky_refnum)
176                 iconfig_node_set_bool(node, "sticky_refnum", TRUE);
177
178         if (window->immortal)
179                 iconfig_node_set_bool(node, "immortal", TRUE);
180
181         if (window->name != NULL)
182                 iconfig_node_set_str(node, "name", window->name);
183
184         if (window->history_name != NULL)
185                 iconfig_node_set_str(node, "history_name", window->history_name);
186
187         if (window->servertag != NULL)
188                 iconfig_node_set_str(node, "servertag", window->servertag);
189         if (window->level != 0) {
190                 char *level = bits2level(window->level);
191                 iconfig_node_set_str(node, "level", level);
192                 g_free(level);
193         }
194         if (window->theme_name != NULL)
195                 iconfig_node_set_str(node, "theme", window->theme_name);
196
197         if (window->items != NULL)
198                 window_save_items(window, node);
199
200         signal_emit("layout save window", 2, window, node);
201 }
202
203 void windows_layout_save(void)
204 {
205         CONFIG_NODE *node;
206
207         iconfig_set_str(NULL, "windows", NULL);
208         node = iconfig_node_traverse("windows", TRUE);
209
210         g_slist_foreach(windows, (GFunc) window_save, node);
211         signal_emit("layout save", 0);
212
213         printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
214                     TXT_WINDOWS_LAYOUT_SAVED);
215 }
216
217 void windows_layout_reset(void)
218 {
219         iconfig_set_str(NULL, "windows", NULL);
220         signal_emit("layout reset", 0);
221
222         printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
223                     TXT_WINDOWS_LAYOUT_RESET);
224 }
225
226 void windows_layout_init(void)
227 {
228         signal_add("layout restore item", (SIGNAL_FUNC) sig_layout_restore_item);
229         signal_add("layout restore", (SIGNAL_FUNC) sig_layout_restore);
230         signal_add("layout save item", (SIGNAL_FUNC) sig_layout_save_item);
231 }
232
233 void windows_layout_deinit(void)
234 {
235         signal_remove("layout restore item", (SIGNAL_FUNC) sig_layout_restore_item);
236         signal_remove("layout restore", (SIGNAL_FUNC) sig_layout_restore);
237         signal_remove("layout save item", (SIGNAL_FUNC) sig_layout_save_item);
238 }