mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Rewrote text buffer handling in windows - try #3.
/SET scrollback_save_formats + /SB REDRAW is broken currently. There's some other minor things that might need to be changed. This time it allows the same window to be visible multiple times in screen, like you could make a new split window where to scroll back and find something while still seeing the new messages at the other window, this however doesn't work yet but it should be quite easy to make it :) I've tested that pretty much everything should work with this, new lines can be added at any position and lines can be removed from any position and screen should be updated properly. Screen resizing should also work perfectly now (maybe it did previously too, not sure) and hopefully now we won't see any of those ugly strange bugs some people were having. Also this time the same code isn't written 2-3 times to do some specific thing, like scrolling has now only one view_scroll() function instead of the 3 separate functions it used to have :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1442 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d98fddd796
commit
adb7eced39
20 changed files with 2424 additions and 1925 deletions
|
|
@ -49,8 +49,6 @@ static void deinit_screen_int(void);
|
|||
|
||||
static void sig_winch(int p)
|
||||
{
|
||||
int ychange, xchange;
|
||||
|
||||
#if defined (TIOCGWINSZ) && defined (HAVE_CURSES_RESIZETERM)
|
||||
struct winsize ws;
|
||||
|
||||
|
|
@ -67,24 +65,14 @@ static void sig_winch(int p)
|
|||
ws.ws_col = MIN_SCREEN_WIDTH;
|
||||
|
||||
/* Resize curses terminal */
|
||||
ychange = ws.ws_row-LINES;
|
||||
xchange = ws.ws_col-COLS;
|
||||
resizeterm(ws.ws_row, ws.ws_col);
|
||||
#else
|
||||
int old_lines, old_cols;
|
||||
|
||||
old_lines = LINES;
|
||||
old_cols = COLS;
|
||||
|
||||
deinit_screen_int();
|
||||
init_screen_int();
|
||||
mainwindows_recreate();
|
||||
|
||||
ychange = LINES-old_lines;
|
||||
xchange = COLS-old_cols;
|
||||
#endif
|
||||
|
||||
mainwindows_resize(ychange, xchange != 0);
|
||||
mainwindows_resize(COLS, LINES);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue