Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / fe-common / core / windows-layout.c
index 5d53f1ae177204fe3396bb5a5e4f0fefdbc49e69..223b65244c7dcbfc6695405744a204baa0a3f116 100644 (file)
@@ -61,12 +61,25 @@ static void sig_layout_restore_item(WINDOW_REC *window, const char *type,
                WINDOW_BIND_REC *rec = window_bind_add(window, tag, name);
                 rec->sticky = TRUE;
        } else if (g_strcasecmp(type, "QUERY") == 0 && chat_type != NULL) {
+               CHAT_PROTOCOL_REC *protocol;
                /* create query immediately */
                signal_add("query created",
                           (SIGNAL_FUNC) signal_query_created_curwin);
 
                 restore_win = window;
-               chat_protocol_find(chat_type)->query_create(tag, name, TRUE);
+               
+               protocol = chat_protocol_find(chat_type);
+               if (protocol->query_create != NULL)
+                       protocol->query_create(tag, name, TRUE);
+               else {
+                       QUERY_REC *query;
+
+                       query = g_new0(QUERY_REC, 1);
+                       query->chat_type = chat_protocol_lookup(chat_type);
+                       query->name = g_strdup(name);
+                       query->server_tag = g_strdup(tag);
+                       query_init(query, TRUE);
+               }
 
                signal_remove("query created",
                              (SIGNAL_FUNC) signal_query_created_curwin);
@@ -132,36 +145,42 @@ static void sig_layout_restore(void)
        }
 }
 
-static void window_save_items(WINDOW_REC *window, CONFIG_NODE *node)
+static void sig_layout_save_item(WINDOW_REC *window, WI_ITEM_REC *item,
+                                CONFIG_NODE *node)
 {
        CONFIG_NODE *subnode;
-       GSList *tmp;
+        CHAT_PROTOCOL_REC *proto;
        const char *type;
 
-       node = config_node_section(node, "items", NODE_TYPE_LIST);
-       for (tmp = window->items; tmp != NULL; tmp = tmp->next) {
-               WI_ITEM_REC *rec = tmp->data;
-               SERVER_REC *server = rec->server;
-
-               type = module_find_id_str("WINDOW ITEM TYPE", rec->type);
-               if (type == NULL) continue;
+       type = module_find_id_str("WINDOW ITEM TYPE", item->type);
+       if (type == NULL)
+               return;
 
-               subnode = config_node_section(node, NULL, NODE_TYPE_BLOCK);
+       subnode = config_node_section(node, NULL, NODE_TYPE_BLOCK);
 
-               iconfig_node_set_str(subnode, "type", type);
-               type = chat_protocol_find_id(rec->chat_type)->name;
-               iconfig_node_set_str(subnode, "chat_type", type);
-               iconfig_node_set_str(subnode, "name", rec->name);
+       iconfig_node_set_str(subnode, "type", type);
+       proto = item->chat_type == 0 ? NULL :
+               chat_protocol_find_id(item->chat_type);
+       if (proto != NULL)
+               iconfig_node_set_str(subnode, "chat_type", proto->name);
+       iconfig_node_set_str(subnode, "name", item->visible_name);
 
-               if (server != NULL)
-                       iconfig_node_set_str(subnode, "tag", server->tag);
-               else if (IS_QUERY(rec)) {
-                       iconfig_node_set_str(subnode, "tag",
-                                            QUERY(rec)->server_tag);
-               }
+       if (item->server != NULL)
+               iconfig_node_set_str(subnode, "tag", item->server->tag);
+       else if (IS_QUERY(item)) {
+               iconfig_node_set_str(subnode, "tag", QUERY(item)->server_tag);
        }
 }
 
+static void window_save_items(WINDOW_REC *window, CONFIG_NODE *node)
+{
+       GSList *tmp;
+
+       node = config_node_section(node, "items", NODE_TYPE_LIST);
+       for (tmp = window->items; tmp != NULL; tmp = tmp->next)
+               signal_emit("layout save item", 3, window, tmp->data, node);
+}
+
 static void window_save(WINDOW_REC *window, CONFIG_NODE *node)
 {
        char refnum[MAX_INT_STRLEN];
@@ -224,10 +243,12 @@ void windows_layout_init(void)
 {
        signal_add("layout restore item", (SIGNAL_FUNC) sig_layout_restore_item);
        signal_add("layout restore", (SIGNAL_FUNC) sig_layout_restore);
+       signal_add("layout save item", (SIGNAL_FUNC) sig_layout_save_item);
 }
 
 void windows_layout_deinit(void)
 {
        signal_remove("layout restore item", (SIGNAL_FUNC) sig_layout_restore_item);
        signal_remove("layout restore", (SIGNAL_FUNC) sig_layout_restore);
+       signal_remove("layout save item", (SIGNAL_FUNC) sig_layout_save_item);
 }