X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Fresizeterm.c;h=494f429dfb665c972be86fab5edb5e733f0d5134;hp=cf99ad0d3b2fbb4d199a8cac59a2b131e740753e;hb=5b7f4de105080e2a715b0564ede4bb7eb6767659;hpb=da1f84b7eb32f17e91f6de242132ab3b2d462148;ds=sidebyside diff --git a/ncurses/base/resizeterm.c b/ncurses/base/resizeterm.c index cf99ad0d..494f429d 100644 --- a/ncurses/base/resizeterm.c +++ b/ncurses/base/resizeterm.c @@ -28,6 +28,7 @@ /**************************************************************************** * Author: Thomas E. Dickey * + * and: Juergen Pfeifer * ****************************************************************************/ /* @@ -39,15 +40,12 @@ */ #include -#include #ifndef CUR -#define CUR SP_TERMTYPE +#define CUR SP_TERMTYPE #endif -MODULE_ID("$Id: resizeterm.c,v 1.39 2009/05/10 00:48:29 tom Exp $") - -#define stolen_lines (screen_lines - SP->_lines_avail) +MODULE_ID("$Id: resizeterm.c,v 1.40 2009/07/04 18:38:49 tom Exp $") /* * If we're trying to be reentrant, do not want any local statics. @@ -121,7 +119,7 @@ ripped_window(WINDOW *win) ripoff_t *rop; if (win != 0) { -#if NCURSES_SP_FUNCS +#ifdef USE_SP_RIPOFF SCREEN *sp = _nc_screen_of(win); #endif for (each_ripoff(rop)) { @@ -145,7 +143,7 @@ ripped_bottom(WINDOW *win) ripoff_t *rop; if (win != 0) { -#if NCURSES_SP_FUNCS +#ifdef USE_SP_RIPOFF SCREEN *sp = _nc_screen_of(win); #endif for (each_ripoff(rop)) { @@ -169,7 +167,7 @@ child_depth(WINDOW *cmp) int depth = 0; if (cmp != 0) { -#if NCURSES_SP_FUNCS +#ifdef USE_SP_WINDOWLIST SCREEN *sp = _nc_screen_of(cmp); #endif WINDOWLIST *wp; @@ -229,6 +227,12 @@ adjust_window(WINDOW *win, int ToLines, int ToCols, int stolen EXTRA_DCLS) * move it to the same relative position. */ win->_begy = ToLines - ripped_bottom(win) - 0 - win->_yoffset; + if (rop->hook == _nc_slk_initialize) + _nc_format_slks( +#if NCURSES_SP_FUNCS + _nc_screen_of(win), +#endif + ToCols); } else if (win->_begy >= bottom) { /* * If it is below the bottom of the new screen, move up by the same @@ -379,10 +383,17 @@ NCURSES_SP_NAME(resize_term) (NCURSES_SP_DCLx int ToLines, int ToCols) decrease_size(NCURSES_SP_ARGx ToLines, ToCols, was_stolen EXTRA_ARGS); } - screen_lines(SP_PARM) = lines = ToLines; - screen_columns(SP_PARM) = columns = ToCols; + screen_lines(SP_PARM) = ToLines; + screen_columns(SP_PARM) = ToCols; + +#ifdef USE_TERM_DRIVER + CallDriver_2(SP_PARM, setsize, ToLines, ToCols); +#else + lines = ToLines; + columns = ToCols; +#endif - SP_PARM->_lines_avail = lines - was_stolen; + SP_PARM->_lines_avail = ToLines - was_stolen; if (SP_PARM->oldhash) { FreeAndNull(SP_PARM->oldhash);