mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
Added Irssi::TextUI.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1733 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
22e1a6dacc
commit
01d3e74f63
9 changed files with 349 additions and 3 deletions
98
src/perl/textui/TextBufferView.xs
Normal file
98
src/perl/textui/TextBufferView.xs
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
MODULE = Irssi::TextUI PACKAGE = Irssi::TextUI::TextBuffer PREFIX = textbuffer_
|
||||
|
||||
Irssi::TextUI::TextBufferView
|
||||
textbuffer_view_create(buffer, width, height, default_indent, longword_noindent)
|
||||
Irssi::TextUI::TextBuffer buffer
|
||||
int width
|
||||
int height
|
||||
int default_indent
|
||||
int longword_noindent
|
||||
|
||||
#*******************************
|
||||
MODULE = Irssi::TextUI PACKAGE = Irssi::TextUI::TextBufferView PREFIX = textbuffer_view_
|
||||
#*******************************
|
||||
|
||||
void
|
||||
textbuffer_view_destroy(view)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
|
||||
void
|
||||
textbuffer_view_set_default_indent(view, default_indent, longword_noindent)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
int default_indent
|
||||
int longword_noindent
|
||||
|
||||
void
|
||||
textbuffer_view_resize(view, width, height)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
int width
|
||||
int height
|
||||
|
||||
void
|
||||
textbuffer_view_clear(view)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
|
||||
void
|
||||
textbuffer_view_get_lines(view)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
|
||||
void
|
||||
textbuffer_view_scroll(view, lines)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
int lines
|
||||
|
||||
void
|
||||
textbuffer_view_scroll_line(view, line)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
Irssi::TextUI::Line line
|
||||
|
||||
Irssi::TextUI::LineCache
|
||||
textbuffer_view_get_line_cache(view, line)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
Irssi::TextUI::Line line
|
||||
|
||||
void
|
||||
textbuffer_view_insert_line(view, line)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
Irssi::TextUI::Line line
|
||||
|
||||
void
|
||||
textbuffer_view_remove_line(view, line)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
Irssi::TextUI::Line line
|
||||
|
||||
void
|
||||
textbuffer_view_remove_all_lines(view)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
|
||||
void
|
||||
textbuffer_view_set_bookmark(view, name, line)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
char *name
|
||||
Irssi::TextUI::Line line
|
||||
|
||||
void
|
||||
textbuffer_view_set_bookmark_bottom(view, name);
|
||||
Irssi::TextUI::TextBufferView view
|
||||
char *name
|
||||
|
||||
Irssi::TextUI::Line
|
||||
textbuffer_view_get_bookmark(view, name);
|
||||
Irssi::TextUI::TextBufferView view
|
||||
char *name
|
||||
|
||||
void
|
||||
textbuffer_view_redraw(view)
|
||||
Irssi::TextUI::TextBufferView view
|
||||
|
||||
#*******************************
|
||||
MODULE = Irssi::TextUI PACKAGE = Irssi::UI::Window
|
||||
#*******************************
|
||||
|
||||
Irssi::TextUI::TextBufferView
|
||||
view(window)
|
||||
Irssi::UI::Window window
|
||||
CODE:
|
||||
RETVAL = WINDOW_GUI(window)->view;
|
||||
OUTPUT:
|
||||
RETVAL
|
||||
Loading…
Add table
Add a link
Reference in a new issue