diff options
author | Timo Sirainen <cras@irssi.org> | 2000-11-21 03:00:05 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-11-21 03:00:05 +0000 |
commit | e923b1651afc995cf75caf7c63cdf8b246272801 (patch) | |
tree | e640425514a26d764587d574bfe2335dfdde4538 /src/fe-text/gui-printtext.h | |
parent | e3084d3ffae3e57ddf89507e69f61b83c5ceaf90 (diff) | |
download | irssi-e923b1651afc995cf75caf7c63cdf8b246272801.zip |
/SCROLLBACK REDRAW - redraw the contents of current window according to
active formats, ie. changing theme changes scrollback.
It's still a bit buggy (can crash) with multiline formats, need to fix
it as soon as I figure out where the problem is..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@852 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-text/gui-printtext.h')
-rw-r--r-- | src/fe-text/gui-printtext.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fe-text/gui-printtext.h b/src/fe-text/gui-printtext.h index aeeb5cce..97d20e12 100644 --- a/src/fe-text/gui-printtext.h +++ b/src/fe-text/gui-printtext.h @@ -1,6 +1,8 @@ #ifndef __GUI_PRINTTEXT_H #define __GUI_PRINTTEXT_H +#include "gui-windows.h" + enum { BLACK = 0, @@ -27,4 +29,7 @@ extern int mirc_colors[]; void gui_printtext_init(void); void gui_printtext_deinit(void); +void gui_window_line_append(GUI_WINDOW_REC *gui, const char *str, int len); +void gui_window_line_remove(WINDOW_REC *window, LINE_REC *line); + #endif |