mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Added support for changing indentation behaviour with modules.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1912 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f7683c0423
commit
2a75c88f99
12 changed files with 368 additions and 92 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#define __GUI_PRINTTEXT_H
|
||||
|
||||
#include "gui-windows.h"
|
||||
#include "textbuffer-view.h"
|
||||
#include "formats.h"
|
||||
|
||||
extern int mirc_colors[];
|
||||
|
|
@ -9,6 +10,12 @@ extern int mirc_colors[];
|
|||
void gui_printtext_init(void);
|
||||
void gui_printtext_deinit(void);
|
||||
|
||||
void gui_register_indent_func(const char *name, INDENT_FUNC func);
|
||||
void gui_unregister_indent_func(const char *name, INDENT_FUNC func);
|
||||
|
||||
void gui_set_default_indent(const char *name);
|
||||
INDENT_FUNC get_default_indent_func(void);
|
||||
|
||||
void gui_printtext(int xpos, int ypos, const char *str);
|
||||
void gui_printtext_after(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue