mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 09:02:13 +02:00
Added Irssi::current_theme() and Irssi::Theme::format_expand()
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1918 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c5c2242ee3
commit
be48bdc22c
2 changed files with 16 additions and 0 deletions
|
|
@ -54,6 +54,13 @@ void perl_themes_deinit(void)
|
||||||
MODULE = Irssi::UI::Themes PACKAGE = Irssi
|
MODULE = Irssi::UI::Themes PACKAGE = Irssi
|
||||||
PROTOTYPES: ENABLE
|
PROTOTYPES: ENABLE
|
||||||
|
|
||||||
|
Irssi::UI::Theme
|
||||||
|
current_theme()
|
||||||
|
CODE:
|
||||||
|
RETVAL = current_theme;
|
||||||
|
OUTPUT:
|
||||||
|
RETVAL
|
||||||
|
|
||||||
void
|
void
|
||||||
theme_register(formats)
|
theme_register(formats)
|
||||||
SV *formats
|
SV *formats
|
||||||
|
|
@ -175,3 +182,11 @@ CODE:
|
||||||
|
|
||||||
printformat_perl(&dest, format, arglist);
|
printformat_perl(&dest, format, arglist);
|
||||||
|
|
||||||
|
#*******************************
|
||||||
|
MODULE = Irssi::UI::Themes PACKAGE = Irssi::UI::Theme PREFIX = theme_
|
||||||
|
#*******************************
|
||||||
|
|
||||||
|
char *
|
||||||
|
theme_format_expand(theme, format)
|
||||||
|
Irssi::UI::Theme theme
|
||||||
|
char *format
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,7 @@ static void perl_window_fill_hash(HV *hv, WINDOW_REC *window)
|
||||||
hv_store(hv, "last_timestamp", 14, newSViv(window->last_timestamp), 0);
|
hv_store(hv, "last_timestamp", 14, newSViv(window->last_timestamp), 0);
|
||||||
hv_store(hv, "last_line", 9, newSViv(window->last_line), 0);
|
hv_store(hv, "last_line", 9, newSViv(window->last_line), 0);
|
||||||
|
|
||||||
|
hv_store(hv, "theme", 5, plain_bless(window->theme, "Irssi::UI::Theme"), 0);
|
||||||
hv_store(hv, "theme_name", 10, new_pv(window->theme_name), 0);
|
hv_store(hv, "theme_name", 10, new_pv(window->theme_name), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue