Added SILC Thread Queue API
[runtime.git] / apps / irssi / src / perl / ui / Themes.xs
index 64a0567686e67de6940adfecf429fd32ee5daf66..4afd437c4dc92f03c466715b7b08e6e3169deb40 100644 (file)
@@ -136,6 +136,32 @@ CODE:
 
         printformat_perl(&dest, format, arglist);
 
+void
+abstracts_register(abstracts)
+       SV *abstracts
+PREINIT:
+       AV *av;
+       char *key, *value;
+       int i, len;
+CODE:
+        if (!SvROK(abstracts))
+               croak("abstracts is not a reference to list");
+       av = (AV *) SvRV(abstracts);
+       len = av_len(av)+1;
+       if (len == 0 || (len & 1) != 0)
+               croak("abstracts list is invalid - not divisible by 2 (%d)", len);
+
+        for (i = 0; i < len; i++) {
+               key = SvPV(*av_fetch(av, i, 0), PL_na); i++;
+               value = SvPV(*av_fetch(av, i, 0), PL_na);
+
+               theme_set_default_abstract(key, value);
+       }
+       themes_reload();
+
+void
+themes_reload()
+
 #*******************************
 MODULE = Irssi::UI::Themes  PACKAGE = Irssi::Server
 #*******************************
@@ -195,7 +221,7 @@ PREINIT:
        char *arglist[MAX_FORMAT_PARAMS+1];
        int n;
 CODE:
-       format_create_dest(&dest, item->server, item->name, level, NULL);
+       format_create_dest(&dest, item->server, item->visible_name, level, NULL);
        memset(arglist, 0, sizeof(arglist));
        for (n = 3; n < items && n < MAX_FORMAT_PARAMS+3; n++) {
                arglist[n-3] = SvPV(ST(n), PL_na);