X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fwindows.c;h=af710dd34657e6c06ae2b9fdcdd61b2adbbb6b6a;hb=f8325a4ea617b15315183d7a8027c0b913c91034;hp=64e610847a270313b21990660a3cec081ef4e95f;hpb=45b98ea91cf2075e33dc2bfd302a701a959feb36;p=plomrogue diff --git a/src/windows.c b/src/windows.c index 64e6108..af710dd 100644 --- a/src/windows.c +++ b/src/windows.c @@ -365,57 +365,69 @@ static void shift_win_backward(struct WinMeta * wmeta) extern uint8_t init_win_meta(WINDOW * screen, struct WinMeta * wmeta) { wmeta->_screen = screen; - wmeta->padframe.size.y = getmaxy(screen); - wmeta->padframe.size.x = getmaxx(screen); - if ( wmeta->padframe.size.y > UINT16_MAX - || wmeta->padframe.size.x > UINT16_MAX) + uint32_t maxy_test = getmaxy(screen); + uint32_t maxx_test = getmaxx(screen); + if (maxy_test > UINT16_MAX || maxx_test > UINT16_MAX) { return 2; } + wmeta->padframe.size.y = maxy_test; + wmeta->padframe.size.x = maxx_test; wmeta->_chain_start = 0; wmeta->_chain_end = 0; wmeta->pad_offset = 0; - WINDOW * test; - test = newpad(wmeta->padframe.size.y, 1); - if (NULL == test) + WINDOW * pad_test = newpad(wmeta->padframe.size.y, 1); + if (NULL == pad_test) { return 1; } - wmeta->padframe.curses_win = test; + wmeta->padframe.curses_win = pad_test; wmeta->active = 0; return 0; } -extern struct Win init_win(struct WinMeta * wmeta, char * title, - uint16_t height, uint16_t width, - void * data, void * func) +extern uint8_t init_win(struct WinMeta * wmeta, struct Win * w, char * title, + int16_t height, int16_t width, + void * data, void * func) { - struct Win w; - w._prev = 0; - w._next = 0; - w.frame.curses_win = 0; - w._title = title; - w.data = data; - w._draw = func; - if (width > 0) + w->_prev = 0; + w->_next = 0; + w->frame.curses_win = 0; + w->_title = malloc(strlen(title) + 1); + if (NULL == w->_title) { - w.frame.size.x = width; + return 1; + } + sprintf(w->_title, title, strlen(title)); + w->data = data; + w->_draw = func; + if (0 < width) + { + w->frame.size.x = width; + } + else if (0 > width) + { + w->frame.size.x = wmeta->padframe.size.x + width; } else { - w.frame.size.x = 1; + w->frame.size.x = wmeta->padframe.size.x; } - if (height > 0 && height <= wmeta->padframe.size.y - 1) + if (0 < height && height <= wmeta->padframe.size.y - 1) { - w.frame.size.y = height; + w->frame.size.y = height; + } + else if (0 > height && wmeta->padframe.size.y + (height - 1) > 0) + { + w->frame.size.y = wmeta->padframe.size.y + (height - 1); } else { - w.frame.size.y = wmeta->padframe.size.y - 1; + w->frame.size.y = wmeta->padframe.size.y - 1; } - return w; + return 0; } @@ -506,11 +518,11 @@ extern uint8_t resize_active_win(struct WinMeta * wmeta, struct yx_uint16 size) && size.y < wmeta->padframe.size.y) { wmeta->active->frame.size = size; - return update_wins(wmeta, wmeta->_chain_start); /* Following windows' */ - } /* positioning may be */ - return 0; /* affected. */ -} /* TODO: Why start at */ - /* chain_start then? */ + return update_wins(wmeta, wmeta->active); /* Positioning of following */ + } /* windows may be affected. */ + return 0; +} + extern void cycle_active_win(struct WinMeta * wmeta, char dir)