1 /* src/client/windows.c */
4 #include <ncurses.h> /* chtype, getmaxx(), getmaxy(), erase(), werase(),
5 * endwin(), delwin(), wnoutrefresh(), pnoutrefresh(),
6 * doupdate(), refresh(), delwin(), newpad(), mvwaddch(),
7 * mvwaddstr(), wresize()
9 #include <stddef.h> /* NULL */
10 #include <stdlib.h> /* free(), atoi() */
11 #include <stdint.h> /* uint8_t, uint16_t, uint32_t, UINT16_MAX */
12 #include <stdio.h> /* sprintf() */
13 #include <string.h> /* memcpy(), strlen(), strnlen(), strchr(), memset() */
14 #include "../common/err_try_fgets.h" /* err_try_fgets(), err_line() */
15 #include "../common/readwrite.h" /* try_fputc(), try_write(), try_fgetc() */
16 #include "../common/rexit.h" /* exit_trouble(), exit_err() */
17 #include "../common/try_malloc.h" /* try_malloc() */
18 #include "../common/yx_uint16.h" /* struct yx_uint16 */
19 #include "draw_wins.h" /* draw_winconf_geometry(), draw_winconf_keybindings(),
20 * draw_win_inventory(), draw_win_info(), draw_win_log(),
21 * draw_win_available_keybindings(), draw_win_map(),
22 * draw_win_keybindings_winconf_keybindings(),
23 * draw_win_keybindings_winconf_geometry(),
24 * draw_win_keybindings_global()
26 #include "keybindings.h" /* write_keybidings_to_file(),
27 * read_keybindings_from_file()
29 #include "misc.h" /* array_append() */
30 #include "world.h" /* global world */
34 /* Get position of id "c" in world.winDB.order or return Win before/after (or
35 * NULL if there is no window before/after).
37 static uint8_t get_pos_in_order(char c);
38 static struct Win * get_win_after(char c);
39 static struct Win * get_win_before(char c);
41 /* Calculate "id"'s window's size from v_screen size and .target_(height/width).
42 * A .target_width == 0 makes the window as wide as .t_screen. .target_height ==
43 * 0 sets the maximum allowed height: one cell smaller than that of .v_screen.
44 * Negative values make width/height so many cells smaller than what 0 would
45 * set. Values that would reduce the window height or width to less than 1 cell
46 * according to the aforementioned rules set the height/width as if they were 0.
48 static void init_win_size_from_winconf_and_v_screen_size(char id);
50 /* Get (Win->draw) function identified by "c"; NULL if c not mapped to one.
51 * match_func() is just a little helper to it.
53 static uint8_t match_func(char c, void (** f) (), char c_m, void (* f_m) ());
54 static void (* get_drawfunc_by_char(char c)) ();
56 /* Write "win"'s size back to .target_(height/width) as per .target_*_type. */
57 static void set_win_target_size(struct Win * win);
59 /* Iterate over chars of world.winDB.ids array / string. Restart after \0.*/
60 static char get_next_win_id();
62 /* Make .v_screen just wide enough to contain all visible windows. */
63 static void refit_v_screen();
65 /* Update geometry (sizes, positions) of window "w" and its successors in the
66 * window chain. Use place_win() for the positioning algorithm.
68 static void update_wins(struct Win * w);
69 static void place_win(struct Win * w);
71 /* Draw scroll hint (a line saying that there are "dist" more elements of "unit"
72 * further into the direction symbolized by "dir") into .v_screen, onto an
73 * appropriate edge of a window or .v_screen; the left/right edge if "dir" is
74 * "<"/">", or the top/bottom edge if it is "^"/"v". Use "start" as the start
75 * coordinate of the frame that is to contain the scroll hints. winscroll_hint()
76 * is a wrapper that uses the border of window "w" as this frame.
78 static void scroll_hint(struct yx_uint16 fsize, char dir, uint16_t dist,
79 char * unit, struct yx_uint16 start);
80 static void winscroll_hint(struct Win * w, char dir, uint16_t dist);
82 /* draw_win_borderlines() draws vertical/horizontal borders of window "w" sans
83 * corners into .v_screen. It draws the top border line as the windows' title
84 * bar (highlighted if the window is selected as active). It is called
85 * recursively by draw_wins_borderlines() on all windows from "w" on.
86 * draw_wins_bordercorners() draws the border corners of "w" and its successors.
88 static void draw_win_borderlines(struct Win * w);
89 static void draw_wins_borderlines(struct Win * w);
90 static void draw_wins_bordercorners(struct Win * w);
92 /* Draw contents of all windows in window chain from window "w" onwards. */
93 static void draw_wins(struct Win * w);
95 /* Append/suspend window "w" to/from chain of visible windows. Appended windows
96 * will become active. Suspended active windows will move the active window
97 * selection to their successor in the window chain or, failing that, their
98 * predecessor, or, failing that, to 0 (no window active).
100 static void append_win(struct Win * w);
101 static void suspend_win(struct Win * w);
105 static uint8_t get_pos_in_order(char c)
108 for (i = 0; c != world.winDB.order[i]; i++);
114 static struct Win * get_win_after(char c)
116 return get_win_by_id(world.winDB.order[get_pos_in_order(c) + 1]);
121 static struct Win * get_win_before(char c)
123 uint8_t i = get_pos_in_order(c);
126 return get_win_by_id(world.winDB.order[i - 1]);
133 static void init_win_size_from_winconf_and_v_screen_size(char id)
135 struct Win * w = get_win_by_id(id);
136 w->frame_size.y = world.winDB.v_screen_size.y - 1;
137 if ( 0 < w->target_height
138 && w->target_height <= world.winDB.v_screen_size.y - 1)
140 w->frame_size.y = w->target_height;
142 else if ( 0 > w->target_height
143 && world.winDB.v_screen_size.y + (w->target_height - 1) > 0)
145 w->frame_size.y = world.winDB.v_screen_size.y + (w->target_height - 1);
147 w->frame_size.x = world.winDB.v_screen_size.x;
148 if (0 < w->target_width)
150 w->frame_size.x = w->target_width;
152 else if ( 0 > w->target_width
153 && world.winDB.v_screen_size.x + w->target_width > 0)
155 w->frame_size.x = world.winDB.v_screen_size.x + w->target_width;
161 static uint8_t match_func(char c, void (** f) (), char c_m, void (* f_m) ())
173 static void (* get_drawfunc_by_char(char c)) ()
175 void (* f) (struct Win *) = NULL;
176 if ( match_func(c, &f, 'c', draw_win_inventory)
177 || match_func(c, &f, 'i', draw_win_info)
178 || match_func(c, &f, 'l', draw_win_log)
179 || match_func(c, &f, 'k', draw_win_available_keybindings)
180 || match_func(c, &f, 'm', draw_win_map)
181 || match_func(c, &f, '0', draw_win_keybindings_global)
182 || match_func(c, &f, '1', draw_win_keybindings_winconf_geometry)
183 || match_func(c, &f, '2', draw_win_keybindings_winconf_keybindings))
192 static void set_win_target_size(struct Win * wcp)
194 if (0 == wcp->target_height_type)
196 wcp->target_height = wcp->frame_size.y;
198 else if (1 == wcp->target_height_type)
200 wcp->target_height = wcp->frame_size.y - world.winDB.v_screen_size.y +1;
202 if (0 == wcp->target_width_type)
204 wcp->target_width = wcp->frame_size.x;
206 else if (1 == wcp->target_width_type)
208 wcp->target_width = wcp->frame_size.x - world.winDB.v_screen_size.x;
214 static char get_next_win_id()
216 static uint8_t i = 0;
217 char c = world.winDB.ids[i];
229 static void refit_v_screen()
231 /* Determine rightmost window column. */
232 uint32_t lastwcol = 0;
233 struct Win * wp = get_win_by_id(world.winDB.order[0]);
236 if ((uint32_t) wp->start.x + (uint32_t) wp->frame_size.x > lastwcol + 1)
238 lastwcol = (uint32_t) wp->start.x + (uint32_t) wp->frame_size.x - 1;
240 wp = get_win_after(wp->id);
243 /* Only resize .v_screen if the rightmost window column has changed. */
244 char * err_s = "refit_v_screen() grows virtual screen beyond legal sizes.";
245 char * err_m = "refit_v_screen() triggers memory alloc error in wresize().";
246 if ((uint32_t) getmaxx(world.winDB.v_screen) + 1 != lastwcol)
248 uint8_t t = (lastwcol + 2 > UINT16_MAX);
250 t = wresize(world.winDB.v_screen, getmaxy(world.winDB.v_screen),
258 static void update_wins(struct Win * w)
262 struct Win * next = get_win_after(w->id);
271 static void place_win(struct Win * w)
273 /* If w is first window, it goes into the top left corner. */
275 w->start.y = 1; /* Leave space for title bar. */
276 struct Win * w_prev = get_win_before(w->id);
280 /* If not, fit w's top left to top right of last top predecessor. */
281 struct Win * w_top = w_prev;
284 w_top = get_win_before(w_top->id));
285 w->start.x = w_top->start.x + w_top->frame_size.x + 1;
287 /* Fit w's top left to bottom left of its ->prev if enough space. */
288 uint16_t w_prev_maxy = w_prev->start.y + w_prev->frame_size.y;
289 if ( w->frame_size.x <= w_prev->frame_size.x
290 && w->frame_size.y < world.winDB.v_screen_size.y - w_prev_maxy)
292 w->start.x = w_prev->start.x;
293 w->start.y = w_prev_maxy + 1;
297 /* Failing that, try to fit w' top left to the top right of the last
298 * predecessor w_test 1) not followed by windows with a left corner
299 * further rightwards than its own 2) with enough space rightwards for w
300 * until the bottom right of w_thr directly throning over it 3) and with
301 * this same space extending far enough to the bottom for fitting in w.
303 struct Win * w_test = w_prev;
305 while (w_test != w_top)
307 for (w_thr = get_win_before(w_test->id);
308 w_test->start.y <= w_thr->start.y;
309 w_thr = get_win_before(w_thr->id));
310 uint16_t w_thr_bottom = w_thr->start.y + w_thr->frame_size.y;
311 uint16_t free_width = (w_thr->start.x + w_thr->frame_size.x)
312 - (w_test->start.x + w_test->frame_size.x);
313 if ( w->frame_size.y < world.winDB.v_screen_size.y - w_thr_bottom
314 && w->frame_size.x < free_width)
316 w->start.x = w_test->start.x + w_test->frame_size.x + 1;
317 w->start.y = w_thr_bottom + 1;
327 static void scroll_hint(struct yx_uint16 fsize, char dir, uint16_t dist,
328 char * unit, struct yx_uint16 start)
330 /* Decide on alignment (vertical/horizontal?), thereby hint text space. */
331 char * more = "more";
332 uint16_t dsc_space = fsize.x;
333 if ('<' == dir || '>' == dir)
336 } /* vv-- 10 = max strlen for uint16_t */
337 char scrolldsc[1 + strlen(more) + 1 + 10 + 1 + strlen(unit) + 1 + 1];
338 sprintf(scrolldsc, " %d %s %s ", dist, more, unit);
340 /* Decide on offset of the description text inside the scroll hint line. */
341 uint16_t dsc_offset = 1;
342 if (dsc_space > strlen(scrolldsc) + 1)
344 dsc_offset = (dsc_space - strlen(scrolldsc)) / 2;
347 /* Draw scroll hint line as dir symbols bracketing description text. */
348 uint16_t draw_offset = 0;
351 draw_offset = fsize.x - 1;
355 draw_offset = fsize.y - 1;
358 for (; q < dsc_space; q++)
360 chtype c = dir | A_REVERSE;
361 if (q >= dsc_offset && q < strlen(scrolldsc) + dsc_offset)
363 c = scrolldsc[q - dsc_offset] | A_REVERSE;
365 if ('<' == dir || '>' == dir)
367 mvwaddch(world.winDB.v_screen, start.y+q, start.x+draw_offset, c);
370 mvwaddch(world.winDB.v_screen, start.y + draw_offset, start.x + q, c);
376 static void winscroll_hint(struct Win * w, char dir, uint16_t dist)
378 char * unit = "lines";
379 if ('<' == dir || '>' == dir)
383 struct yx_uint16 start = w->start;
384 scroll_hint(w->frame_size, dir, dist, unit, start);
389 static void draw_win_borderlines(struct Win * w)
391 /* Draw vertical and horizontal border lines. */
393 for (y = w->start.y; y <= w->start.y + w->frame_size.y; y++)
395 mvwaddch(world.winDB.v_screen, y, w->start.x - 1, '|');
396 mvwaddch(world.winDB.v_screen, y, w->start.x + w->frame_size.x, '|');
398 for (x = w->start.x; x <= w->start.x + w->frame_size.x; x++)
400 mvwaddch(world.winDB.v_screen, w->start.y - 1, x, '-');
401 mvwaddch(world.winDB.v_screen, w->start.y + w->frame_size.y, x, '-');
404 /* Draw as much as possible of the title into center of top border line. */
405 uint8_t min_title_length_visible = 3;/* min. 1 char +2 padding/decoration*/
406 if (w->frame_size.x >= min_title_length_visible)
409 if (w->frame_size.x > strlen(w->title) + 2)
411 offset = (w->frame_size.x - (strlen(w->title) + 2)) / 2;
412 } /* +2 is for padding/decoration */
413 uint16_t length_visible = strnlen(w->title, w->frame_size.x - 2);
414 char title[length_visible + 3];
415 char decoration = ' ';
416 if (w->id == world.winDB.active)
420 memcpy(title + 1, w->title, length_visible);
421 title[0] = title[length_visible + 1] = decoration;
422 title[length_visible + 2] = '\0';
423 mvwaddstr(world.winDB.v_screen, w->start.y-1, w->start.x+offset, title);
429 static void draw_wins_borderlines(struct Win * w)
431 draw_win_borderlines(w);
432 struct Win * next = get_win_after(w->id);
435 draw_wins_borderlines(next);
441 static void draw_wins_bordercorners(struct Win * w)
443 mvwaddch(world.winDB.v_screen,
444 w->start.y - 1, w->start.x - 1, '+');
445 mvwaddch(world.winDB.v_screen,
446 w->start.y - 1, w->start.x + w->frame_size.x, '+');
447 mvwaddch(world.winDB.v_screen,
448 w->start.y + w->frame_size.y, w->start.x - 1, '+');
449 mvwaddch(world.winDB.v_screen, w->start.y + w->frame_size.y,
450 w->start.x + w->frame_size.x, '+');
451 struct Win * next = get_win_after(w->id);
454 draw_wins_bordercorners(next);
460 static void draw_wins(struct Win * w)
462 void (* drawfunc) (struct Win *) = get_drawfunc_by_char(w->id);
465 drawfunc = draw_winconf_geometry;
467 else if (2 == w->view)
469 drawfunc = draw_winconf_keybindings;
472 uint16_t size_y = w->winmap_size.y;
473 uint16_t size_x = w->winmap_size.x;
474 uint16_t offset_y = center_offset(w->center.y, size_y, w->frame_size.y);
475 uint16_t offset_x = center_offset(w->center.x, size_x, w->frame_size.x);
477 for (y = offset_y; y < w->frame_size.y + offset_y && y < size_y; y++)
479 for (x = offset_x; x < w->frame_size.x + offset_x && x < size_x; x++)
481 chtype ch = w->winmap[(y * w->winmap_size.x) + x];
482 mvwaddch(world.winDB.v_screen, w->start.y + (y - offset_y),
483 w->start.x + (x - offset_x), ch);
486 free(w->winmap); /* NULL so draw_wins.c's try_resize_winmap() may always */
487 w->winmap = NULL;/* free() it before (re-)allocation, even the first time.*/
488 memset(&w->winmap_size, 0, sizeof(struct yx_uint16));
491 winscroll_hint(w, '^', offset_y + 1);
493 if (size_y > offset_y + w->frame_size.y)
495 winscroll_hint(w, 'v', size_y - ((offset_y + w->frame_size.y) - 1));
499 winscroll_hint(w, '<', offset_x + 1);
501 if (size_x > offset_x + w->frame_size.x)
503 winscroll_hint(w, '>', size_x - ((offset_x + w->frame_size.x) - 1));
505 struct Win * next = get_win_after(w->id);
514 static void append_win(struct Win * w)
516 char * f_name = "append_win()";
517 uint8_t old_size = strlen(world.winDB.order) + 1;
518 char * new_order = try_malloc(old_size + 1, f_name);
519 memcpy(new_order, world.winDB.order, old_size - 1);
520 new_order[old_size - 1] = w->id;
521 new_order[old_size] = '\0';
522 free(world.winDB.order);
523 world.winDB.order = new_order;
524 world.winDB.active = w->id;
530 static void suspend_win(struct Win * w)
532 char * f_name = "suspend_win()";
533 uint8_t new_size = strlen(world.winDB.order);
534 char * new_order = try_malloc(new_size, f_name);
535 uint8_t i = get_pos_in_order(w->id);
536 char next_char = world.winDB.order[i + 1];
537 world.winDB.order[i] = '\0';
538 char * second_part = &world.winDB.order[i + 1];
539 sprintf(new_order, "%s%s", world.winDB.order, second_part);
540 free(world.winDB.order);
541 world.winDB.order = new_order;
542 world.winDB.active = world.winDB.order[i];
543 if (!world.winDB.order[i] && 0 < i)
545 world.winDB.active = world.winDB.order[i - 1];
547 if (world.winDB.order[i])
549 update_wins(get_win_by_id(next_char)); /* Already calls */
550 return; /* refit_v_screen(), so leave. */
557 extern uint16_t center_offset(uint16_t position, uint32_t mapsize,
561 if (mapsize > frame_size)
563 if (position > frame_size / 2)
565 if (position < mapsize - (frame_size / 2))
567 offset = position - (frame_size / 2);
571 offset = mapsize - frame_size;
580 extern struct Win * get_win_by_id(char id)
583 while ('\0' != world.winDB.ids[i])
585 if (id == world.winDB.ids[i])
587 return &world.winDB.wins[i];
596 extern uint8_t read_winconf_from_file(char * line, uint32_t linemax,
599 char * f_name = "read_winconf_from_file()";
600 char * context = "Failed reading individual window's configuration from "
601 "interface config file. ";
602 char * err_id = "Illegal ID(s) selected.";
603 char * err_2 = "Double-initialized window.";
604 char * err_brk = "Illegal line break type index.";
605 int test_for_end = try_fgetc(file, f_name);
606 if (EOF == test_for_end || '\n' == test_for_end)
610 exit_trouble(EOF == ungetc(test_for_end, file), f_name, "ungetc()");
611 err_try_fgets(line, linemax, file, context, "ns");
612 err_line(NULL == strchr(world.winDB.legal_ids, line[0]), line, context,
614 exit_err(world.winDB.ids && NULL!=strchr(world.winDB.ids, line[0]), err_2);
616 memset(&win, 0, sizeof(struct Win));
617 win.id = (char) line[0];
618 err_try_fgets(line, linemax, file, context, "0n");
619 win.title = try_malloc(strlen(line), f_name);
620 memcpy(win.title, line, strlen(line) - 1); /* Eliminate newline char */
621 win.title[strlen(line) - 1] = '\0'; /* char at end of string. */
622 err_try_fgets(line, linemax, file, context, "0nsi");
623 err_line(atoi(line) > 2, line, context, err_brk);
624 win.linebreak = atoi(line);
625 err_try_fgets(line, linemax, file, context, "0ni");
626 win.target_height = atoi(line);
627 win.target_height_type = (0 >= win.target_height);
628 err_try_fgets(line, linemax, file, context, "0ni");
629 win.target_width = atoi(line);
630 win.target_width_type = (0 >= win.target_width);
631 read_keybindings_from_file(line, linemax, file, &win.kb);
634 uint8_t old_ids_size = strlen(world.winDB.ids);
635 char * new_ids = try_malloc(old_ids_size + 1 + 1, f_name);
636 sprintf(new_ids, "%s%c", world.winDB.ids, win.id);
637 free(world.winDB.ids);
638 world.winDB.ids = new_ids;
639 array_append(old_ids_size, sizeof(struct Win), (void *) &win,
640 (void **) &world.winDB.wins);
643 world.winDB.ids = try_malloc(2, f_name);
644 sprintf(world.winDB.ids, "%c", win.id);
645 world.winDB.wins = try_malloc(sizeof(struct Win), f_name);
646 world.winDB.wins[0] = win;
652 extern void write_winconf_of_id_to_file(FILE * file, char c)
654 char * f_name = "write_winconf_of_id_to_file()";
655 struct Win * wc = get_win_by_id(c);
656 uint8_t size = strlen(wc->title) + 2;
657 if (size < 7) /* Ensure that at least 5 + 2 char fit into line so that */
658 { /* the digit representation of any uint16_t may be stored. */
662 sprintf(line, "%c\n", wc->id);
663 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
664 sprintf(line, "%s\n", wc->title);
665 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
666 sprintf(line, "%d\n", wc->linebreak);
667 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
668 sprintf(line, "%d\n", wc->target_height);
669 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
670 sprintf(line, "%d\n", wc->target_width);
671 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
672 write_keybindings_to_file(file, &wc->kb);
677 extern void read_order_wins_visible_active(char * line, uint32_t linemax,
678 FILE * file, char ** tmp_order,
681 char * f_name = "read_order_wins_visible_active()";
682 char * context = "Failed reading order and activation of visible windows "
683 "from interface config file. ";
684 char * err_id = "Illegal ID(s) selected.";
685 err_try_fgets(line, linemax, file, context, "01");
687 for (; i < strlen(line) - 1; i++)
689 char * test = strchr(world.winDB.legal_ids, line[i]);
690 err_line(!test, line, context, err_id);
692 line[strlen(line) - 1] = '\0';
693 *tmp_order = try_malloc(strlen(line) + 1, f_name);
694 sprintf(*tmp_order, "%s", line);
697 err_try_fgets(line, linemax, file, context, "0nfs");
698 err_line(NULL == strchr(*tmp_order, line[0]), line, context, err_id);
699 *tmp_active = line[0];
703 err_try_fgets(line, linemax, file, context, "0ne");
706 err_try_fgets(line, linemax, file, context, "d");
711 extern void write_order_wins_visible_active(FILE * file)
713 char * f_name = "write_order_wins_visible_active()";
714 try_fwrite(world.winDB.order, strlen(world.winDB.order), 1, file, f_name);
715 try_fputc('\n', file, f_name);
716 try_fputc(world.winDB.active, file, f_name);
717 try_fputc('\n', file, f_name);
718 try_fwrite(world.delim, strlen(world.delim), 1, file, f_name);
723 extern void make_v_screen_and_init_win_sizes()
725 char * f_name = "make_v_screen_and_init_win_sizes()";
726 char * err_s = "creating an illegaly large virtual screen";
727 char * err_m = "triggering a memory allocation error via newpad()";
728 uint32_t maxy_test = getmaxy(world.winDB.t_screen);
729 uint32_t maxx_test = getmaxx(world.winDB.t_screen);
730 exit_trouble(maxy_test>UINT16_MAX || maxx_test>UINT16_MAX, f_name, err_s);
731 world.winDB.v_screen_size.y = maxy_test;
732 world.winDB.v_screen_size.x = maxx_test;
733 world.winDB.v_screen = newpad(world.winDB.v_screen_size.y, 1);
734 exit_trouble(NULL == world.winDB.v_screen, f_name, err_m);
736 while (0 != (id = get_next_win_id()))
738 init_win_size_from_winconf_and_v_screen_size(id);
744 extern void free_winDB()
747 while (0 != (id = get_next_win_id()))
749 struct Win * wc = get_win_by_id(id);
754 free(world.winDB.ids); /* NULL this too since add_win_to_winDB() checks */
755 world.winDB.ids = NULL; /* for it to detect its first post-DB-purge round.*/
756 free(world.winDB.wins);
757 free(world.winDB.order);
762 extern void winch_called()
769 extern void reset_windows_on_winch()
771 endwin(); /* "[S]tandard way" to recalibrate ncurses post SIGWINCH, says */
772 refresh(); /* <http://invisible-island.net/ncurses/ncurses-intro.html>. */
773 char tmp_order[strlen(world.winDB.order) + 1];
774 sprintf(tmp_order, "%s", world.winDB.order);
776 char tmp_active = world.winDB.active;
777 for (i = 0; i < strlen(tmp_order); toggle_window(tmp_order[i]), i++);
778 delwin(world.winDB.v_screen);
779 make_v_screen_and_init_win_sizes();
780 for (i = 0; i < strlen(tmp_order); toggle_window(tmp_order[i]), i++);
781 world.winDB.active = tmp_active;
786 extern void draw_all_wins()
788 /* Empty everything before filling it a-new. */
790 wnoutrefresh(world.winDB.t_screen);
791 werase(world.winDB.v_screen);
792 if (world.winDB.active)
795 /* Draw borders, wins. Order matters: corners should overwrite lines. */
796 draw_wins_borderlines(get_win_by_id(world.winDB.order[0]));
797 draw_wins_bordercorners(get_win_by_id(world.winDB.order[0]));
798 draw_wins(get_win_by_id(world.winDB.order[0]));
800 /* Draw .v_screen scroll hints. */
801 struct yx_uint16 start;
803 start.x = world.winDB.v_screen_offset;
804 char * cols_string = "columns";
805 if (world.winDB.v_screen_offset > 0)
807 scroll_hint(world.winDB.v_screen_size, '<',
808 world.winDB.v_screen_offset + 1, cols_string, start);
810 uint16_t size_x = getmaxx(world.winDB.v_screen);
811 uint16_t right_edge = world.winDB.v_screen_offset
812 + world.winDB.v_screen_size.x;
813 if (right_edge < size_x - 1)
815 scroll_hint(world.winDB.v_screen_size, '>',
816 size_x - right_edge, cols_string, start);
819 /* Put .v_screen segment to be shown on .t_screen to .t_screen buffer.*/
820 pnoutrefresh(world.winDB.v_screen, 0, world.winDB.v_screen_offset, 0, 0,
821 world.winDB.v_screen_size.y,
822 world.winDB.v_screen_size.x - 1);
825 /* Only at the end write accumulated changes to .t_screen. */
831 extern void toggle_window(char id)
833 struct Win * win = get_win_by_id(id);
834 if (NULL == strchr(world.winDB.order, id))
844 extern void toggle_winconfig()
846 if (!world.winDB.active)
850 struct Win * w = get_win_by_id(world.winDB.active);
854 w->target_center = w->center;
855 memset(&w->center, 0, sizeof(struct yx_uint16));
858 else if (1 == w->view)
865 w->center = w->target_center;
870 extern void toggle_win_size_type(char axis)
872 struct Win * w = get_win_by_id(world.winDB.active);
875 w->target_height_type = (0 == w->target_height_type);
876 set_win_target_size(w);
879 w->target_width_type = ( 0 == w->target_width_type
880 && w->frame_size.x <= world.winDB.v_screen_size.x);
881 set_win_target_size(w);
886 extern void toggle_linebreak_type()
888 struct Win * w = get_win_by_id(world.winDB.active);
889 if (0 == w->linebreak)
893 else if (1 == w->linebreak)
897 else if (2 == w->linebreak)
905 extern void resize_active_win(char change)
907 if (world.winDB.active)
909 struct Win * w = get_win_by_id(world.winDB.active);
910 if (change == '-' && w->frame_size.y > 1)
914 else if (change == '_' && w->frame_size.x > 1)
918 else if ( change == '+'
919 && w->frame_size.y < world.winDB.v_screen_size.y - 1)
923 else if (change == '*' && w->frame_size.y < UINT16_MAX)
927 if ( 1 == w->target_width_type
928 && w->frame_size.x > world.winDB.v_screen_size.x)
930 w->target_width_type = 0;
932 set_win_target_size(w);
939 extern void shift_active_win(char dir)
941 uint8_t len_order = strlen(world.winDB.order);
944 char tmp[len_order + 1];
945 tmp[len_order] = '\0';
946 uint8_t pos = get_pos_in_order(world.winDB.active);
949 if (pos == len_order - 1)
951 memcpy(tmp + 1, world.winDB.order, len_order - 1);
952 tmp[0] = world.winDB.active;
953 memcpy(world.winDB.order, tmp, len_order + 1);
957 world.winDB.order[pos] = world.winDB.order[pos + 1];
958 world.winDB.order[pos + 1] = world.winDB.active;
965 memcpy(tmp, world.winDB.order + 1, len_order - 1);
966 tmp[len_order - 1] = world.winDB.active;
967 memcpy(world.winDB.order, tmp, len_order + 1);
971 world.winDB.order[pos] = world.winDB.order[pos - 1];
972 world.winDB.order[pos - 1] = world.winDB.active;
975 update_wins(get_win_by_id(world.winDB.order[0]));
981 extern void scroll_v_screen(char dir)
984 && world.winDB.v_screen_offset + world.winDB.v_screen_size.x + 1
985 < getmaxx(world.winDB.v_screen))
987 world.winDB.v_screen_offset++;
990 && world.winDB.v_screen_offset > 0)
992 world.winDB.v_screen_offset--;
998 extern void cycle_active_win(char dir)
1000 uint8_t len_order = strlen(world.winDB.order);
1003 uint8_t pos = get_pos_in_order(world.winDB.active);
1006 world.winDB.active = world.winDB.order[pos + 1];
1007 if ('\0' == world.winDB.active)
1009 world.winDB.active = world.winDB.order[0];
1015 world.winDB.active = world.winDB.order[pos - 1];
1018 world.winDB.active = world.winDB.order[len_order - 1];