Merged 0.7.99 irssi.
[crypto.git] / apps / irssi / src / perl / ui / UI.xs
1 #include "module.h"
2
3 static int initialized = FALSE;
4
5 static void perl_process_fill_hash(HV *hv, PROCESS_REC *process)
6 {
7         hv_store(hv, "id", 2, newSViv(process->id), 0);
8         hv_store(hv, "name", 4, new_pv(process->name), 0);
9         hv_store(hv, "args", 4, new_pv(process->args), 0);
10
11         hv_store(hv, "pid", 3, newSViv(process->pid), 0);
12         hv_store(hv, "target", 6, new_pv(process->target), 0);
13         if (process->target_win != NULL) {
14                 hv_store(hv, "target_win", 10,
15                          plain_bless(process->target_win, "Irssi::UI::Window"), 0);
16         }
17         hv_store(hv, "shell", 5, newSViv(process->shell), 0);
18         hv_store(hv, "notice", 6, newSViv(process->notice), 0);
19         hv_store(hv, "silent", 6, newSViv(process->silent), 0);
20 }
21
22 static void perl_window_fill_hash(HV *hv, WINDOW_REC *window)
23 {
24         hv_store(hv, "refnum", 6, newSViv(window->refnum), 0);
25         hv_store(hv, "name", 4, new_pv(window->name), 0);
26         hv_store(hv, "history_name", 12, new_pv(window->history_name), 0);
27
28         hv_store(hv, "width", 5, newSViv(window->width), 0);
29         hv_store(hv, "height", 6, newSViv(window->height), 0);
30
31         if (window->active)
32                 hv_store(hv, "active", 6, iobject_bless(window->active), 0);
33         if (window->active_server)
34                 hv_store(hv, "active_server", 13, iobject_bless(window->active_server), 0);
35
36         hv_store(hv, "servertag", 9, new_pv(window->servertag), 0);
37         hv_store(hv, "level", 5, newSViv(window->level), 0);
38
39         hv_store(hv, "sticky_refnum", 13, newSViv(window->sticky_refnum), 0);
40
41         hv_store(hv, "data_level", 10, newSViv(window->data_level), 0);
42         hv_store(hv, "hilight_color", 13, new_pv(window->hilight_color), 0);
43
44         hv_store(hv, "last_timestamp", 14, newSViv(window->last_timestamp), 0);
45         hv_store(hv, "last_line", 9, newSViv(window->last_line), 0);
46
47         hv_store(hv, "theme", 5, plain_bless(window->theme, "Irssi::UI::Theme"), 0);
48         hv_store(hv, "theme_name", 10, new_pv(window->theme_name), 0);
49 }
50
51 static void perl_text_dest_fill_hash(HV *hv, TEXT_DEST_REC *dest)
52 {
53         hv_store(hv, "window", 6, plain_bless(dest->window, "Irssi::UI::Window"), 0);
54         hv_store(hv, "server", 6, iobject_bless(dest->server), 0);
55         hv_store(hv, "target", 6, new_pv(dest->target), 0);
56         hv_store(hv, "level", 5, newSViv(dest->level), 0);
57
58         hv_store(hv, "hilight_priority", 16, newSViv(dest->hilight_priority), 0);
59         hv_store(hv, "hilight_color", 13, new_pv(dest->hilight_color), 0);
60 }
61
62 static PLAIN_OBJECT_INIT_REC fe_plains[] = {
63         { "Irssi::UI::Process", (PERL_OBJECT_FUNC) perl_process_fill_hash },
64         { "Irssi::UI::Window", (PERL_OBJECT_FUNC) perl_window_fill_hash },
65         { "Irssi::UI::TextDest", (PERL_OBJECT_FUNC) perl_text_dest_fill_hash },
66
67         { NULL, NULL }
68 };
69
70 MODULE = Irssi::UI  PACKAGE = Irssi::UI
71
72 PROTOTYPES: ENABLE
73
74 void
75 processes()
76 PREINIT:
77         GSList *tmp;
78 PPCODE:
79         for (tmp = processes; tmp != NULL; tmp = tmp->next) {
80                 XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::UI::Process")));
81         }
82
83
84 void
85 init()
86 CODE:
87         if (initialized) return;
88         perl_api_version_check("Irssi::UI");
89         initialized = TRUE;
90
91         irssi_add_plains(fe_plains);
92         perl_themes_init();
93
94 void
95 deinit()
96 CODE:
97         if (!initialized) return;
98         perl_themes_deinit();
99
100 BOOT:
101         irssi_boot(UI__Formats);
102         irssi_boot(UI__Themes);
103         irssi_boot(UI__Window);