c2ee46b48b82b3043e6c01d686512bb34f5c1db7
[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, "immortal", 8, newSViv(window->immortal), 0);
40         hv_store(hv, "sticky_refnum", 13, newSViv(window->sticky_refnum), 0);
41
42         hv_store(hv, "data_level", 10, newSViv(window->data_level), 0);
43         hv_store(hv, "hilight_color", 13, new_pv(window->hilight_color), 0);
44
45         hv_store(hv, "last_timestamp", 14, newSViv(window->last_timestamp), 0);
46         hv_store(hv, "last_line", 9, newSViv(window->last_line), 0);
47
48         hv_store(hv, "theme", 5, plain_bless(window->theme, "Irssi::UI::Theme"), 0);
49         hv_store(hv, "theme_name", 10, new_pv(window->theme_name), 0);
50 }
51
52 static void perl_text_dest_fill_hash(HV *hv, TEXT_DEST_REC *dest)
53 {
54         hv_store(hv, "window", 6, plain_bless(dest->window, "Irssi::UI::Window"), 0);
55         hv_store(hv, "server", 6, iobject_bless(dest->server), 0);
56         hv_store(hv, "target", 6, new_pv(dest->target), 0);
57         hv_store(hv, "level", 5, newSViv(dest->level), 0);
58
59         hv_store(hv, "hilight_priority", 16, newSViv(dest->hilight_priority), 0);
60         hv_store(hv, "hilight_color", 13, new_pv(dest->hilight_color), 0);
61 }
62
63 static PLAIN_OBJECT_INIT_REC fe_plains[] = {
64         { "Irssi::UI::Process", (PERL_OBJECT_FUNC) perl_process_fill_hash },
65         { "Irssi::UI::Window", (PERL_OBJECT_FUNC) perl_window_fill_hash },
66         { "Irssi::UI::TextDest", (PERL_OBJECT_FUNC) perl_text_dest_fill_hash },
67
68         { NULL, NULL }
69 };
70
71 MODULE = Irssi::UI  PACKAGE = Irssi::UI
72
73 PROTOTYPES: ENABLE
74
75 void
76 processes()
77 PREINIT:
78         GSList *tmp;
79 PPCODE:
80         for (tmp = processes; tmp != NULL; tmp = tmp->next) {
81                 XPUSHs(sv_2mortal(plain_bless(tmp->data, "Irssi::UI::Process")));
82         }
83
84
85 void
86 init()
87 CODE:
88         if (initialized) return;
89         perl_api_version_check("Irssi::UI");
90         initialized = TRUE;
91
92         irssi_add_plains(fe_plains);
93         perl_themes_init();
94
95 void
96 deinit()
97 CODE:
98         if (!initialized) return;
99         perl_themes_deinit();
100
101 BOOT:
102         irssi_boot(UI__Formats);
103         irssi_boot(UI__Themes);
104         irssi_boot(UI__Window);