mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Implemented Irssi::print_window(), added optional level parameter to
Irssi::print() git-svn-id: http://svn.irssi.org/repos/irssi/trunk@597 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
072b8a75e0
commit
c96a0d2ac5
@ -103,8 +103,12 @@ commands() - return list of all commands
|
||||
dccs() - return list of all dcc connections
|
||||
logs() - return list of all log files
|
||||
|
||||
print(str)
|
||||
Print `str' to current window as "Irssi notice".
|
||||
print(str, [level])
|
||||
Print `str' to some window (status/current probably), default level is
|
||||
"Irssi notice".
|
||||
|
||||
print_window(str, [level])
|
||||
Print `str' to current window, default level is "Irssi notice".
|
||||
|
||||
command(cmd, [Server server, [Channel channel]])
|
||||
Send a command `cmd' (in current channel). This will work just as if you
|
||||
|
@ -23,10 +23,18 @@ OUTPUT:
|
||||
RETVAL
|
||||
|
||||
void
|
||||
print(str)
|
||||
print(str, level=MSGLEVEL_CLIENTNOTICE)
|
||||
char *str
|
||||
int level;
|
||||
CODE:
|
||||
printtext(NULL, NULL, MSGLEVEL_CLIENTNOTICE, str);
|
||||
printtext(NULL, NULL, level, str);
|
||||
|
||||
void
|
||||
print_window(str, level=MSGLEVEL_CLIENTNOTICE)
|
||||
char *str
|
||||
int level;
|
||||
CODE:
|
||||
printtext_window(active_win, level, str);
|
||||
|
||||
|
||||
#*******************************
|
||||
|
Loading…
Reference in New Issue
Block a user