X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=windows.c;h=d3a895c4d0091f82932a80363418315bc5638897;hb=de3f09afccf9f14f00785a164f2d21b8c4f12f74;hp=47c1a44b9d1f8950b286f23a4ad2d0f0f1f34c1e;hpb=154ade9490933893ea32781e9571a6817fec7a1c;p=plomrogue diff --git a/windows.c b/windows.c index 47c1a44..d3a895c 100644 --- a/windows.c +++ b/windows.c @@ -49,23 +49,34 @@ void append_window (struct WinMeta * win_meta, struct Win * win) { update_windows(win_meta, win); } void suspend_window (struct WinMeta * win_meta, struct Win * win) { -// Destroy win, suspend from window chain. Update geometry of following rows, as well as activity selection. +// Destroy win, suspend from chain. Update geometry of following rows and pad, as well as activity selection. destroy_window(win); if (win_meta->chain_start != win) // Give win's position in the chain to element next to it in the chain. win->prev->next = win->next; else win_meta->chain_start = win->next; + char pad_refitted = 0; if (win_meta->chain_end != win) { // Let chain element next to win know its new predecessor. win->next->prev = win->prev; if (win_meta->active == win) // If win was active, shift active window pointer to win_meta->active = win->next; // the next chain element, if that is a window ... - update_windows(win_meta, win->next); } + update_windows(win_meta, win->next); + pad_refitted = 1; } else { win_meta->chain_end = win->prev; if (win_meta->active == win) // ... or else to the previous element. win_meta->active = win->prev; } win->prev = 0; - win->next = 0; } + win->next = 0; + if (0 == pad_refitted) { // Refit pad if necessary. + uint16_t lastwincol = 0; + struct Win * win_p = win_meta->chain_start; + while (win_p != 0) { + if (getbegx(win_p->curses) + win_p->width > lastwincol + 1) + lastwincol = getbegx(win_p->curses) + win_p->width - 1; + win_p = win_p->next; } + if (getmaxx(win_meta->pad) != lastwincol) + wresize(win_meta->pad, getmaxy(win_meta->pad), lastwincol + 2); } } struct yx place_window (struct WinMeta * win_meta, struct Win * win) { // Based on position and sizes of previous window, find fitting place for current window. @@ -113,8 +124,8 @@ void update_windows (struct WinMeta * win_meta, struct Win * win) { else if (win_p == win && startyx.x + win->width > lastwincol + 1) lastwincol = startyx.x + win->width - 1; win_p = win_p->next; } - if (getmaxx(win_meta->pad) != lastwincol) { - wresize(win_meta->pad, getmaxy(win_meta->pad), lastwincol + 2); } + if (getmaxx(win_meta->pad) != lastwincol) + wresize(win_meta->pad, getmaxy(win_meta->pad), lastwincol + 2); win->curses = subpad(win_meta->pad, win->height, win->width, startyx.y, startyx.x); if (0 != win->next) update_windows (win_meta, win->next); } @@ -215,7 +226,7 @@ void draw_all_windows (struct WinMeta * win_meta) { if (win_meta->pad_offset + win_meta->width < getmaxx(win_meta->pad) - 1) for (y = 0; y < win_meta->height; y++) draw_vertical_scroll_hint(win_meta, win_meta->pad_offset + win_meta->width - 1, - getmaxx(win_meta->pad) - (win_meta->pad_offset + win_meta->width + 1), '>'); + getmaxx(win_meta->pad) - (win_meta->pad_offset + win_meta->width), '>'); pnoutrefresh(win_meta->pad, 0, win_meta->pad_offset, 0, 0, win_meta->height, win_meta->width - 1); } doupdate(); }