Remove --xdb
[deliverable/binutils-gdb.git] / gdb / tui / tui-win.c
1 /* TUI window generic functions.
2
3 Copyright (C) 1998-2015 Free Software Foundation, Inc.
4
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 /* This module contains procedures for handling tui window functions
23 like resize, scrolling, scrolling, changing focus, etc.
24
25 Author: Susan B. Macchia */
26
27 #include "defs.h"
28 #include "command.h"
29 #include "symtab.h"
30 #include "breakpoint.h"
31 #include "frame.h"
32 #include "cli/cli-cmds.h"
33 #include "top.h"
34 #include "source.h"
35 #include "event-loop.h"
36
37 #include "tui/tui.h"
38 #include "tui/tui-io.h"
39 #include "tui/tui-data.h"
40 #include "tui/tui-wingeneral.h"
41 #include "tui/tui-stack.h"
42 #include "tui/tui-regs.h"
43 #include "tui/tui-disasm.h"
44 #include "tui/tui-source.h"
45 #include "tui/tui-winsource.h"
46 #include "tui/tui-windata.h"
47 #include "tui/tui-win.h"
48
49 #include "gdb_curses.h"
50 #include <ctype.h>
51 #include "readline/readline.h"
52
53 #include <signal.h>
54
55 /*******************************
56 ** Static Local Decls
57 ********************************/
58 static void make_visible_with_new_height (struct tui_win_info *);
59 static void make_invisible_and_set_new_height (struct tui_win_info *,
60 int);
61 static enum tui_status tui_adjust_win_heights (struct tui_win_info *,
62 int);
63 static int new_height_ok (struct tui_win_info *, int);
64 static void tui_set_tab_width_command (char *, int);
65 static void tui_refresh_all_command (char *, int);
66 static void tui_set_win_height_command (char *, int);
67 static void tui_all_windows_info (char *, int);
68 static void tui_set_focus_command (char *, int);
69 static void tui_scroll_forward_command (char *, int);
70 static void tui_scroll_backward_command (char *, int);
71 static void tui_scroll_left_command (char *, int);
72 static void tui_scroll_right_command (char *, int);
73 static void parse_scrolling_args (char *,
74 struct tui_win_info **,
75 int *);
76
77
78 /***************************************
79 ** DEFINITIONS
80 ***************************************/
81 #define WIN_HEIGHT_USAGE "Usage: winheight <win_name> [+ | -] <#lines>\n"
82 #define XDBWIN_HEIGHT_USAGE "Usage: w <#lines>\n"
83 #define FOCUS_USAGE "Usage: focus {<win> | next | prev}\n"
84
85 /***************************************
86 ** PUBLIC FUNCTIONS
87 ***************************************/
88
89 #ifndef ACS_LRCORNER
90 # define ACS_LRCORNER '+'
91 #endif
92 #ifndef ACS_LLCORNER
93 # define ACS_LLCORNER '+'
94 #endif
95 #ifndef ACS_ULCORNER
96 # define ACS_ULCORNER '+'
97 #endif
98 #ifndef ACS_URCORNER
99 # define ACS_URCORNER '+'
100 #endif
101 #ifndef ACS_HLINE
102 # define ACS_HLINE '-'
103 #endif
104 #ifndef ACS_VLINE
105 # define ACS_VLINE '|'
106 #endif
107
108 /* Possible values for tui-border-kind variable. */
109 static const char *const tui_border_kind_enums[] = {
110 "space",
111 "ascii",
112 "acs",
113 NULL
114 };
115
116 /* Possible values for tui-border-mode and tui-active-border-mode. */
117 static const char *const tui_border_mode_enums[] = {
118 "normal",
119 "standout",
120 "reverse",
121 "half",
122 "half-standout",
123 "bold",
124 "bold-standout",
125 NULL
126 };
127
128 struct tui_translate
129 {
130 const char *name;
131 int value;
132 };
133
134 /* Translation table for border-mode variables.
135 The list of values must be terminated by a NULL.
136 After the NULL value, an entry defines the default. */
137 struct tui_translate tui_border_mode_translate[] = {
138 { "normal", A_NORMAL },
139 { "standout", A_STANDOUT },
140 { "reverse", A_REVERSE },
141 { "half", A_DIM },
142 { "half-standout", A_DIM | A_STANDOUT },
143 { "bold", A_BOLD },
144 { "bold-standout", A_BOLD | A_STANDOUT },
145 { 0, 0 },
146 { "normal", A_NORMAL }
147 };
148
149 /* Translation tables for border-kind, one for each border
150 character (see wborder, border curses operations).
151 -1 is used to indicate the ACS because ACS characters
152 are determined at run time by curses (depends on terminal). */
153 struct tui_translate tui_border_kind_translate_vline[] = {
154 { "space", ' ' },
155 { "ascii", '|' },
156 { "acs", -1 },
157 { 0, 0 },
158 { "ascii", '|' }
159 };
160
161 struct tui_translate tui_border_kind_translate_hline[] = {
162 { "space", ' ' },
163 { "ascii", '-' },
164 { "acs", -1 },
165 { 0, 0 },
166 { "ascii", '-' }
167 };
168
169 struct tui_translate tui_border_kind_translate_ulcorner[] = {
170 { "space", ' ' },
171 { "ascii", '+' },
172 { "acs", -1 },
173 { 0, 0 },
174 { "ascii", '+' }
175 };
176
177 struct tui_translate tui_border_kind_translate_urcorner[] = {
178 { "space", ' ' },
179 { "ascii", '+' },
180 { "acs", -1 },
181 { 0, 0 },
182 { "ascii", '+' }
183 };
184
185 struct tui_translate tui_border_kind_translate_llcorner[] = {
186 { "space", ' ' },
187 { "ascii", '+' },
188 { "acs", -1 },
189 { 0, 0 },
190 { "ascii", '+' }
191 };
192
193 struct tui_translate tui_border_kind_translate_lrcorner[] = {
194 { "space", ' ' },
195 { "ascii", '+' },
196 { "acs", -1 },
197 { 0, 0 },
198 { "ascii", '+' }
199 };
200
201
202 /* Tui configuration variables controlled with set/show command. */
203 const char *tui_active_border_mode = "bold-standout";
204 static void
205 show_tui_active_border_mode (struct ui_file *file,
206 int from_tty,
207 struct cmd_list_element *c,
208 const char *value)
209 {
210 fprintf_filtered (file, _("\
211 The attribute mode to use for the active TUI window border is \"%s\".\n"),
212 value);
213 }
214
215 const char *tui_border_mode = "normal";
216 static void
217 show_tui_border_mode (struct ui_file *file,
218 int from_tty,
219 struct cmd_list_element *c,
220 const char *value)
221 {
222 fprintf_filtered (file, _("\
223 The attribute mode to use for the TUI window borders is \"%s\".\n"),
224 value);
225 }
226
227 const char *tui_border_kind = "acs";
228 static void
229 show_tui_border_kind (struct ui_file *file,
230 int from_tty,
231 struct cmd_list_element *c,
232 const char *value)
233 {
234 fprintf_filtered (file, _("The kind of border for TUI windows is \"%s\".\n"),
235 value);
236 }
237
238
239 /* Tui internal configuration variables. These variables are updated
240 by tui_update_variables to reflect the tui configuration
241 variables. */
242 chtype tui_border_vline;
243 chtype tui_border_hline;
244 chtype tui_border_ulcorner;
245 chtype tui_border_urcorner;
246 chtype tui_border_llcorner;
247 chtype tui_border_lrcorner;
248
249 int tui_border_attrs;
250 int tui_active_border_attrs;
251
252 /* Identify the item in the translation table.
253 When the item is not recognized, use the default entry. */
254 static struct tui_translate *
255 translate (const char *name, struct tui_translate *table)
256 {
257 while (table->name)
258 {
259 if (name && strcmp (table->name, name) == 0)
260 return table;
261 table++;
262 }
263
264 /* Not found, return default entry. */
265 table++;
266 return table;
267 }
268
269 /* Update the tui internal configuration according to gdb settings.
270 Returns 1 if the configuration has changed and the screen should
271 be redrawn. */
272 int
273 tui_update_variables (void)
274 {
275 int need_redraw = 0;
276 struct tui_translate *entry;
277
278 entry = translate (tui_border_mode, tui_border_mode_translate);
279 if (tui_border_attrs != entry->value)
280 {
281 tui_border_attrs = entry->value;
282 need_redraw = 1;
283 }
284 entry = translate (tui_active_border_mode, tui_border_mode_translate);
285 if (tui_active_border_attrs != entry->value)
286 {
287 tui_active_border_attrs = entry->value;
288 need_redraw = 1;
289 }
290
291 /* If one corner changes, all characters are changed.
292 Only check the first one. The ACS characters are determined at
293 run time by curses terminal management. */
294 entry = translate (tui_border_kind, tui_border_kind_translate_lrcorner);
295 if (tui_border_lrcorner != (chtype) entry->value)
296 {
297 tui_border_lrcorner = (entry->value < 0) ? ACS_LRCORNER : entry->value;
298 need_redraw = 1;
299 }
300 entry = translate (tui_border_kind, tui_border_kind_translate_llcorner);
301 tui_border_llcorner = (entry->value < 0) ? ACS_LLCORNER : entry->value;
302
303 entry = translate (tui_border_kind, tui_border_kind_translate_ulcorner);
304 tui_border_ulcorner = (entry->value < 0) ? ACS_ULCORNER : entry->value;
305
306 entry = translate (tui_border_kind, tui_border_kind_translate_urcorner);
307 tui_border_urcorner = (entry->value < 0) ? ACS_URCORNER : entry->value;
308
309 entry = translate (tui_border_kind, tui_border_kind_translate_hline);
310 tui_border_hline = (entry->value < 0) ? ACS_HLINE : entry->value;
311
312 entry = translate (tui_border_kind, tui_border_kind_translate_vline);
313 tui_border_vline = (entry->value < 0) ? ACS_VLINE : entry->value;
314
315 return need_redraw;
316 }
317
318 static void
319 set_tui_cmd (char *args, int from_tty)
320 {
321 }
322
323 static void
324 show_tui_cmd (char *args, int from_tty)
325 {
326 }
327
328 static struct cmd_list_element *tuilist;
329
330 static void
331 tui_command (char *args, int from_tty)
332 {
333 printf_unfiltered (_("\"tui\" must be followed by the name of a "
334 "tui command.\n"));
335 help_list (tuilist, "tui ", all_commands, gdb_stdout);
336 }
337
338 struct cmd_list_element **
339 tui_get_cmd_list (void)
340 {
341 if (tuilist == 0)
342 add_prefix_cmd ("tui", class_tui, tui_command,
343 _("Text User Interface commands."),
344 &tuilist, "tui ", 0, &cmdlist);
345 return &tuilist;
346 }
347
348 /* The set_func hook of "set tui ..." commands that affect the window
349 borders on the TUI display. */
350 void
351 tui_set_var_cmd (char *null_args, int from_tty, struct cmd_list_element *c)
352 {
353 if (tui_update_variables () && tui_active)
354 tui_rehighlight_all ();
355 }
356
357 /* Function to initialize gdb commands, for tui window
358 manipulation. */
359
360 /* Provide a prototype to silence -Wmissing-prototypes. */
361 extern initialize_file_ftype _initialize_tui_win;
362
363 void
364 _initialize_tui_win (void)
365 {
366 static struct cmd_list_element *tui_setlist;
367 static struct cmd_list_element *tui_showlist;
368
369 /* Define the classes of commands.
370 They will appear in the help list in the reverse of this order. */
371 add_prefix_cmd ("tui", class_tui, set_tui_cmd,
372 _("TUI configuration variables"),
373 &tui_setlist, "set tui ",
374 0 /* allow-unknown */, &setlist);
375 add_prefix_cmd ("tui", class_tui, show_tui_cmd,
376 _("TUI configuration variables"),
377 &tui_showlist, "show tui ",
378 0 /* allow-unknown */, &showlist);
379
380 add_com ("refresh", class_tui, tui_refresh_all_command,
381 _("Refresh the terminal display.\n"));
382 add_com ("tabset", class_tui, tui_set_tab_width_command, _("\
383 Set the width (in characters) of tab stops.\n\
384 Usage: tabset <n>\n"));
385 add_com ("winheight", class_tui, tui_set_win_height_command, _("\
386 Set the height of a specified window.\n\
387 Usage: winheight <win_name> [+ | -] <#lines>\n\
388 Window names are:\n\
389 src : the source window\n\
390 cmd : the command window\n\
391 asm : the disassembly window\n\
392 regs : the register display\n"));
393 add_com_alias ("wh", "winheight", class_tui, 0);
394 add_info ("win", tui_all_windows_info,
395 _("List of all displayed windows.\n"));
396 add_com ("focus", class_tui, tui_set_focus_command, _("\
397 Set focus to named window or next/prev window.\n\
398 Usage: focus {<win> | next | prev}\n\
399 Valid Window names are:\n\
400 src : the source window\n\
401 asm : the disassembly window\n\
402 regs : the register display\n\
403 cmd : the command window\n"));
404 add_com_alias ("fs", "focus", class_tui, 0);
405 add_com ("+", class_tui, tui_scroll_forward_command, _("\
406 Scroll window forward.\n\
407 Usage: + [win] [n]\n"));
408 add_com ("-", class_tui, tui_scroll_backward_command, _("\
409 Scroll window backward.\n\
410 Usage: - [win] [n]\n"));
411 add_com ("<", class_tui, tui_scroll_left_command, _("\
412 Scroll window text to the left.\n\
413 Usage: < [win] [n]\n"));
414 add_com (">", class_tui, tui_scroll_right_command, _("\
415 Scroll window text to the right.\n\
416 Usage: > [win] [n]\n"));
417
418 /* Define the tui control variables. */
419 add_setshow_enum_cmd ("border-kind", no_class, tui_border_kind_enums,
420 &tui_border_kind, _("\
421 Set the kind of border for TUI windows."), _("\
422 Show the kind of border for TUI windows."), _("\
423 This variable controls the border of TUI windows:\n\
424 space use a white space\n\
425 ascii use ascii characters + - | for the border\n\
426 acs use the Alternate Character Set"),
427 tui_set_var_cmd,
428 show_tui_border_kind,
429 &tui_setlist, &tui_showlist);
430
431 add_setshow_enum_cmd ("border-mode", no_class, tui_border_mode_enums,
432 &tui_border_mode, _("\
433 Set the attribute mode to use for the TUI window borders."), _("\
434 Show the attribute mode to use for the TUI window borders."), _("\
435 This variable controls the attributes to use for the window borders:\n\
436 normal normal display\n\
437 standout use highlight mode of terminal\n\
438 reverse use reverse video mode\n\
439 half use half bright\n\
440 half-standout use half bright and standout mode\n\
441 bold use extra bright or bold\n\
442 bold-standout use extra bright or bold with standout mode"),
443 tui_set_var_cmd,
444 show_tui_border_mode,
445 &tui_setlist, &tui_showlist);
446
447 add_setshow_enum_cmd ("active-border-mode", no_class, tui_border_mode_enums,
448 &tui_active_border_mode, _("\
449 Set the attribute mode to use for the active TUI window border."), _("\
450 Show the attribute mode to use for the active TUI window border."), _("\
451 This variable controls the attributes to use for the active window border:\n\
452 normal normal display\n\
453 standout use highlight mode of terminal\n\
454 reverse use reverse video mode\n\
455 half use half bright\n\
456 half-standout use half bright and standout mode\n\
457 bold use extra bright or bold\n\
458 bold-standout use extra bright or bold with standout mode"),
459 tui_set_var_cmd,
460 show_tui_active_border_mode,
461 &tui_setlist, &tui_showlist);
462 }
463
464 /* Update gdb's knowledge of the terminal size. */
465 void
466 tui_update_gdb_sizes (void)
467 {
468 char cmd[50];
469
470 /* Set to TUI command window dimension or use readline values. */
471 xsnprintf (cmd, sizeof (cmd), "set width %d",
472 tui_active ? TUI_CMD_WIN->generic.width : tui_term_width());
473 execute_command (cmd, 0);
474 xsnprintf (cmd, sizeof (cmd), "set height %d",
475 tui_active ? TUI_CMD_WIN->generic.height : tui_term_height());
476 execute_command (cmd, 0);
477 }
478
479
480 /* Set the logical focus to win_info. */
481 void
482 tui_set_win_focus_to (struct tui_win_info *win_info)
483 {
484 if (win_info != NULL)
485 {
486 struct tui_win_info *win_with_focus = tui_win_with_focus ();
487
488 if (win_with_focus != NULL
489 && win_with_focus->generic.type != CMD_WIN)
490 tui_unhighlight_win (win_with_focus);
491 tui_set_win_with_focus (win_info);
492 if (win_info->generic.type != CMD_WIN)
493 tui_highlight_win (win_info);
494 }
495 }
496
497
498 void
499 tui_scroll_forward (struct tui_win_info *win_to_scroll,
500 int num_to_scroll)
501 {
502 if (win_to_scroll != TUI_CMD_WIN)
503 {
504 int _num_to_scroll = num_to_scroll;
505
506 if (num_to_scroll == 0)
507 _num_to_scroll = win_to_scroll->generic.height - 3;
508
509 /* If we are scrolling the source or disassembly window, do a
510 "psuedo" scroll since not all of the source is in memory,
511 only what is in the viewport. If win_to_scroll is the
512 command window do nothing since the term should handle
513 it. */
514 if (win_to_scroll == TUI_SRC_WIN)
515 tui_vertical_source_scroll (FORWARD_SCROLL, _num_to_scroll);
516 else if (win_to_scroll == TUI_DISASM_WIN)
517 tui_vertical_disassem_scroll (FORWARD_SCROLL, _num_to_scroll);
518 else if (win_to_scroll == TUI_DATA_WIN)
519 tui_vertical_data_scroll (FORWARD_SCROLL, _num_to_scroll);
520 }
521 }
522
523 void
524 tui_scroll_backward (struct tui_win_info *win_to_scroll,
525 int num_to_scroll)
526 {
527 if (win_to_scroll != TUI_CMD_WIN)
528 {
529 int _num_to_scroll = num_to_scroll;
530
531 if (num_to_scroll == 0)
532 _num_to_scroll = win_to_scroll->generic.height - 3;
533
534 /* If we are scrolling the source or disassembly window, do a
535 "psuedo" scroll since not all of the source is in memory,
536 only what is in the viewport. If win_to_scroll is the
537 command window do nothing since the term should handle
538 it. */
539 if (win_to_scroll == TUI_SRC_WIN)
540 tui_vertical_source_scroll (BACKWARD_SCROLL, _num_to_scroll);
541 else if (win_to_scroll == TUI_DISASM_WIN)
542 tui_vertical_disassem_scroll (BACKWARD_SCROLL, _num_to_scroll);
543 else if (win_to_scroll == TUI_DATA_WIN)
544 tui_vertical_data_scroll (BACKWARD_SCROLL, _num_to_scroll);
545 }
546 }
547
548
549 void
550 tui_scroll_left (struct tui_win_info *win_to_scroll,
551 int num_to_scroll)
552 {
553 if (win_to_scroll != TUI_CMD_WIN)
554 {
555 int _num_to_scroll = num_to_scroll;
556
557 if (_num_to_scroll == 0)
558 _num_to_scroll = 1;
559
560 /* If we are scrolling the source or disassembly window, do a
561 "psuedo" scroll since not all of the source is in memory,
562 only what is in the viewport. If win_to_scroll is the command
563 window do nothing since the term should handle it. */
564 if (win_to_scroll == TUI_SRC_WIN
565 || win_to_scroll == TUI_DISASM_WIN)
566 tui_horizontal_source_scroll (win_to_scroll, LEFT_SCROLL,
567 _num_to_scroll);
568 }
569 }
570
571
572 void
573 tui_scroll_right (struct tui_win_info *win_to_scroll,
574 int num_to_scroll)
575 {
576 if (win_to_scroll != TUI_CMD_WIN)
577 {
578 int _num_to_scroll = num_to_scroll;
579
580 if (_num_to_scroll == 0)
581 _num_to_scroll = 1;
582
583 /* If we are scrolling the source or disassembly window, do a
584 "psuedo" scroll since not all of the source is in memory,
585 only what is in the viewport. If win_to_scroll is the command
586 window do nothing since the term should handle it. */
587 if (win_to_scroll == TUI_SRC_WIN
588 || win_to_scroll == TUI_DISASM_WIN)
589 tui_horizontal_source_scroll (win_to_scroll, RIGHT_SCROLL,
590 _num_to_scroll);
591 }
592 }
593
594
595 /* Scroll a window. Arguments are passed through a va_list. */
596 void
597 tui_scroll (enum tui_scroll_direction direction,
598 struct tui_win_info *win_to_scroll,
599 int num_to_scroll)
600 {
601 switch (direction)
602 {
603 case FORWARD_SCROLL:
604 tui_scroll_forward (win_to_scroll, num_to_scroll);
605 break;
606 case BACKWARD_SCROLL:
607 tui_scroll_backward (win_to_scroll, num_to_scroll);
608 break;
609 case LEFT_SCROLL:
610 tui_scroll_left (win_to_scroll, num_to_scroll);
611 break;
612 case RIGHT_SCROLL:
613 tui_scroll_right (win_to_scroll, num_to_scroll);
614 break;
615 default:
616 break;
617 }
618 }
619
620
621 void
622 tui_refresh_all_win (void)
623 {
624 int type;
625
626 clearok (curscr, TRUE);
627 tui_refresh_all (tui_win_list);
628 for (type = SRC_WIN; type < MAX_MAJOR_WINDOWS; type++)
629 {
630 if (tui_win_list[type]
631 && tui_win_list[type]->generic.is_visible)
632 {
633 switch (type)
634 {
635 case SRC_WIN:
636 case DISASSEM_WIN:
637 tui_show_source_content (tui_win_list[type]);
638 tui_check_and_display_highlight_if_needed (tui_win_list[type]);
639 tui_erase_exec_info_content (tui_win_list[type]);
640 tui_update_exec_info (tui_win_list[type]);
641 break;
642 case DATA_WIN:
643 tui_refresh_data_win ();
644 break;
645 default:
646 break;
647 }
648 }
649 }
650 tui_show_locator_content ();
651 }
652
653 void
654 tui_rehighlight_all (void)
655 {
656 int type;
657
658 for (type = SRC_WIN; type < MAX_MAJOR_WINDOWS; type++)
659 tui_check_and_display_highlight_if_needed (tui_win_list[type]);
660 }
661
662 /* Resize all the windows based on the terminal size. This function
663 gets called from within the readline sinwinch handler. */
664 void
665 tui_resize_all (void)
666 {
667 int height_diff, width_diff;
668 int screenheight, screenwidth;
669
670 rl_get_screen_size (&screenheight, &screenwidth);
671 width_diff = screenwidth - tui_term_width ();
672 height_diff = screenheight - tui_term_height ();
673 if (height_diff || width_diff)
674 {
675 enum tui_layout_type cur_layout = tui_current_layout ();
676 struct tui_win_info *win_with_focus = tui_win_with_focus ();
677 struct tui_win_info *first_win;
678 struct tui_win_info *second_win;
679 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
680 int win_type;
681 int new_height, split_diff, cmd_split_diff, num_wins_displayed = 2;
682
683 #ifdef HAVE_RESIZE_TERM
684 resize_term (screenheight, screenwidth);
685 #endif
686 /* Turn keypad off while we resize. */
687 if (win_with_focus != TUI_CMD_WIN)
688 keypad (TUI_CMD_WIN->generic.handle, FALSE);
689 tui_update_gdb_sizes ();
690 tui_set_term_height_to (screenheight);
691 tui_set_term_width_to (screenwidth);
692 if (cur_layout == SRC_DISASSEM_COMMAND
693 || cur_layout == SRC_DATA_COMMAND
694 || cur_layout == DISASSEM_DATA_COMMAND)
695 num_wins_displayed++;
696 split_diff = height_diff / num_wins_displayed;
697 cmd_split_diff = split_diff;
698 if (height_diff % num_wins_displayed)
699 {
700 if (height_diff < 0)
701 cmd_split_diff--;
702 else
703 cmd_split_diff++;
704 }
705 /* Now adjust each window. */
706 /* erase + clearok are used instead of a straightforward clear as
707 AIX 5.3 does not define clear. */
708 erase ();
709 clearok (curscr, TRUE);
710 refresh ();
711 switch (cur_layout)
712 {
713 case SRC_COMMAND:
714 case DISASSEM_COMMAND:
715 first_win = (struct tui_win_info *) (tui_source_windows ())->list[0];
716 first_win->generic.width += width_diff;
717 locator->width += width_diff;
718 /* Check for invalid heights. */
719 if (height_diff == 0)
720 new_height = first_win->generic.height;
721 else if ((first_win->generic.height + split_diff) >=
722 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
723 new_height = screenheight - MIN_CMD_WIN_HEIGHT - 1;
724 else if ((first_win->generic.height + split_diff) <= 0)
725 new_height = MIN_WIN_HEIGHT;
726 else
727 new_height = first_win->generic.height + split_diff;
728
729 locator->origin.y = new_height + 1;
730 make_invisible_and_set_new_height (first_win, new_height);
731 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
732 TUI_CMD_WIN->generic.width += width_diff;
733 new_height = screenheight - TUI_CMD_WIN->generic.origin.y;
734 make_invisible_and_set_new_height (TUI_CMD_WIN, new_height);
735 make_visible_with_new_height (first_win);
736 make_visible_with_new_height (TUI_CMD_WIN);
737 if (first_win->generic.content_size <= 0)
738 tui_erase_source_content (first_win, EMPTY_SOURCE_PROMPT);
739 break;
740 default:
741 if (cur_layout == SRC_DISASSEM_COMMAND)
742 {
743 first_win = TUI_SRC_WIN;
744 first_win->generic.width += width_diff;
745 second_win = TUI_DISASM_WIN;
746 second_win->generic.width += width_diff;
747 }
748 else
749 {
750 first_win = TUI_DATA_WIN;
751 first_win->generic.width += width_diff;
752 second_win = (struct tui_win_info *)
753 (tui_source_windows ())->list[0];
754 second_win->generic.width += width_diff;
755 }
756 /* Change the first window's height/width. */
757 /* Check for invalid heights. */
758 if (height_diff == 0)
759 new_height = first_win->generic.height;
760 else if ((first_win->generic.height +
761 second_win->generic.height + (split_diff * 2)) >=
762 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
763 new_height = (screenheight - MIN_CMD_WIN_HEIGHT - 1) / 2;
764 else if ((first_win->generic.height + split_diff) <= 0)
765 new_height = MIN_WIN_HEIGHT;
766 else
767 new_height = first_win->generic.height + split_diff;
768 make_invisible_and_set_new_height (first_win, new_height);
769
770 locator->width += width_diff;
771
772 /* Change the second window's height/width. */
773 /* Check for invalid heights. */
774 if (height_diff == 0)
775 new_height = second_win->generic.height;
776 else if ((first_win->generic.height +
777 second_win->generic.height + (split_diff * 2)) >=
778 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
779 {
780 new_height = screenheight - MIN_CMD_WIN_HEIGHT - 1;
781 if (new_height % 2)
782 new_height = (new_height / 2) + 1;
783 else
784 new_height /= 2;
785 }
786 else if ((second_win->generic.height + split_diff) <= 0)
787 new_height = MIN_WIN_HEIGHT;
788 else
789 new_height = second_win->generic.height + split_diff;
790 second_win->generic.origin.y = first_win->generic.height - 1;
791 make_invisible_and_set_new_height (second_win, new_height);
792
793 /* Change the command window's height/width. */
794 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
795 make_invisible_and_set_new_height (TUI_CMD_WIN,
796 TUI_CMD_WIN->generic.height
797 + cmd_split_diff);
798 make_visible_with_new_height (first_win);
799 make_visible_with_new_height (second_win);
800 make_visible_with_new_height (TUI_CMD_WIN);
801 if (first_win->generic.content_size <= 0)
802 tui_erase_source_content (first_win, EMPTY_SOURCE_PROMPT);
803 if (second_win->generic.content_size <= 0)
804 tui_erase_source_content (second_win, EMPTY_SOURCE_PROMPT);
805 break;
806 }
807 /* Now remove all invisible windows, and their content so that
808 they get created again when called for with the new size. */
809 for (win_type = SRC_WIN; (win_type < MAX_MAJOR_WINDOWS); win_type++)
810 {
811 if (win_type != CMD_WIN
812 && (tui_win_list[win_type] != NULL)
813 && !tui_win_list[win_type]->generic.is_visible)
814 {
815 tui_free_window (tui_win_list[win_type]);
816 tui_win_list[win_type] = (struct tui_win_info *) NULL;
817 }
818 }
819 /* Turn keypad back on, unless focus is in the command
820 window. */
821 if (win_with_focus != TUI_CMD_WIN)
822 keypad (TUI_CMD_WIN->generic.handle, TRUE);
823 }
824 }
825
826 #ifdef SIGWINCH
827 /* Token for use by TUI's asynchronous SIGWINCH handler. */
828 static struct async_signal_handler *tui_sigwinch_token;
829
830 /* TUI's SIGWINCH signal handler. */
831 static void
832 tui_sigwinch_handler (int signal)
833 {
834 /* Set win_resized to TRUE and asynchronously invoke our resize callback. If
835 the callback is invoked while TUI is active then it ought to successfully
836 resize the screen, resetting win_resized to FALSE. Of course, if the
837 callback is invoked while TUI is inactive then it will do nothing; in that
838 case, win_resized will remain TRUE until we get a chance to synchronously
839 resize the screen from tui_enable(). */
840 mark_async_signal_handler (tui_sigwinch_token);
841 tui_set_win_resized_to (TRUE);
842 }
843
844 /* Callback for asynchronously resizing TUI following a SIGWINCH signal. */
845 static void
846 tui_async_resize_screen (gdb_client_data arg)
847 {
848 if (!tui_active)
849 return;
850
851 tui_resize_all ();
852 tui_refresh_all_win ();
853 tui_update_gdb_sizes ();
854 tui_set_win_resized_to (FALSE);
855 tui_redisplay_readline ();
856 }
857 #endif
858
859 /* Initialize TUI's SIGWINCH signal handler. Note that the handler is not
860 uninstalled when we exit TUI, so the handler should not assume that TUI is
861 always active. */
862 void
863 tui_initialize_win (void)
864 {
865 #ifdef SIGWINCH
866 tui_sigwinch_token
867 = create_async_signal_handler (tui_async_resize_screen, NULL);
868
869 {
870 #ifdef HAVE_SIGACTION
871 struct sigaction old_winch;
872
873 memset (&old_winch, 0, sizeof (old_winch));
874 old_winch.sa_handler = &tui_sigwinch_handler;
875 #ifdef SA_RESTART
876 old_winch.sa_flags = SA_RESTART;
877 #endif
878 sigaction (SIGWINCH, &old_winch, NULL);
879 #else
880 signal (SIGWINCH, &tui_sigwinch_handler);
881 #endif
882 }
883 #endif
884 }
885
886
887 /*************************
888 ** STATIC LOCAL FUNCTIONS
889 **************************/
890
891
892 static void
893 tui_scroll_forward_command (char *arg, int from_tty)
894 {
895 int num_to_scroll = 1;
896 struct tui_win_info *win_to_scroll;
897
898 /* Make sure the curses mode is enabled. */
899 tui_enable ();
900 if (arg == (char *) NULL)
901 parse_scrolling_args (arg, &win_to_scroll, (int *) NULL);
902 else
903 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
904 tui_scroll (FORWARD_SCROLL, win_to_scroll, num_to_scroll);
905 }
906
907
908 static void
909 tui_scroll_backward_command (char *arg, int from_tty)
910 {
911 int num_to_scroll = 1;
912 struct tui_win_info *win_to_scroll;
913
914 /* Make sure the curses mode is enabled. */
915 tui_enable ();
916 if (arg == (char *) NULL)
917 parse_scrolling_args (arg, &win_to_scroll, (int *) NULL);
918 else
919 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
920 tui_scroll (BACKWARD_SCROLL, win_to_scroll, num_to_scroll);
921 }
922
923
924 static void
925 tui_scroll_left_command (char *arg, int from_tty)
926 {
927 int num_to_scroll;
928 struct tui_win_info *win_to_scroll;
929
930 /* Make sure the curses mode is enabled. */
931 tui_enable ();
932 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
933 tui_scroll (LEFT_SCROLL, win_to_scroll, num_to_scroll);
934 }
935
936
937 static void
938 tui_scroll_right_command (char *arg, int from_tty)
939 {
940 int num_to_scroll;
941 struct tui_win_info *win_to_scroll;
942
943 /* Make sure the curses mode is enabled. */
944 tui_enable ();
945 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
946 tui_scroll (RIGHT_SCROLL, win_to_scroll, num_to_scroll);
947 }
948
949
950 /* Set focus to the window named by 'arg'. */
951 static void
952 tui_set_focus (char *arg, int from_tty)
953 {
954 if (arg != (char *) NULL)
955 {
956 char *buf_ptr = (char *) xstrdup (arg);
957 int i;
958 struct tui_win_info *win_info = (struct tui_win_info *) NULL;
959
960 for (i = 0; (i < strlen (buf_ptr)); i++)
961 buf_ptr[i] = toupper (arg[i]);
962
963 if (subset_compare (buf_ptr, "NEXT"))
964 win_info = tui_next_win (tui_win_with_focus ());
965 else if (subset_compare (buf_ptr, "PREV"))
966 win_info = tui_prev_win (tui_win_with_focus ());
967 else
968 win_info = tui_partial_win_by_name (buf_ptr);
969
970 if (win_info == (struct tui_win_info *) NULL
971 || !win_info->generic.is_visible)
972 warning (_("Invalid window specified. \n\
973 The window name specified must be valid and visible.\n"));
974 else
975 {
976 tui_set_win_focus_to (win_info);
977 keypad (TUI_CMD_WIN->generic.handle, (win_info != TUI_CMD_WIN));
978 }
979
980 if (TUI_DATA_WIN && TUI_DATA_WIN->generic.is_visible)
981 tui_refresh_data_win ();
982 xfree (buf_ptr);
983 printf_filtered (_("Focus set to %s window.\n"),
984 tui_win_name ((struct tui_gen_win_info *)
985 tui_win_with_focus ()));
986 }
987 else
988 warning (_("Incorrect Number of Arguments.\n%s"), FOCUS_USAGE);
989 }
990
991 static void
992 tui_set_focus_command (char *arg, int from_tty)
993 {
994 /* Make sure the curses mode is enabled. */
995 tui_enable ();
996 tui_set_focus (arg, from_tty);
997 }
998
999
1000 static void
1001 tui_all_windows_info (char *arg, int from_tty)
1002 {
1003 int type;
1004 struct tui_win_info *win_with_focus = tui_win_with_focus ();
1005
1006 for (type = SRC_WIN; (type < MAX_MAJOR_WINDOWS); type++)
1007 if (tui_win_list[type]
1008 && tui_win_list[type]->generic.is_visible)
1009 {
1010 if (win_with_focus == tui_win_list[type])
1011 printf_filtered (" %s\t(%d lines) <has focus>\n",
1012 tui_win_name (&tui_win_list[type]->generic),
1013 tui_win_list[type]->generic.height);
1014 else
1015 printf_filtered (" %s\t(%d lines)\n",
1016 tui_win_name (&tui_win_list[type]->generic),
1017 tui_win_list[type]->generic.height);
1018 }
1019 }
1020
1021
1022 static void
1023 tui_refresh_all_command (char *arg, int from_tty)
1024 {
1025 /* Make sure the curses mode is enabled. */
1026 tui_enable ();
1027
1028 tui_refresh_all_win ();
1029 }
1030
1031
1032 /* Set the tab width of the specified window. */
1033 static void
1034 tui_set_tab_width_command (char *arg, int from_tty)
1035 {
1036 /* Make sure the curses mode is enabled. */
1037 tui_enable ();
1038 if (arg != (char *) NULL)
1039 {
1040 int ts;
1041
1042 ts = atoi (arg);
1043 if (ts > 0)
1044 {
1045 tui_set_default_tab_len (ts);
1046 /* We don't really change the height of any windows, but
1047 calling these 2 functions causes a complete regeneration
1048 and redisplay of the window's contents, which will take
1049 the new tab width into account. */
1050 if (tui_win_list[SRC_WIN]
1051 && tui_win_list[SRC_WIN]->generic.is_visible)
1052 {
1053 make_invisible_and_set_new_height (TUI_SRC_WIN,
1054 TUI_SRC_WIN->generic.height);
1055 make_visible_with_new_height (TUI_SRC_WIN);
1056 }
1057 if (tui_win_list[DISASSEM_WIN]
1058 && tui_win_list[DISASSEM_WIN]->generic.is_visible)
1059 {
1060 make_invisible_and_set_new_height (TUI_DISASM_WIN,
1061 TUI_DISASM_WIN->generic.height);
1062 make_visible_with_new_height (TUI_DISASM_WIN);
1063 }
1064 }
1065 else
1066 warning (_("Tab widths greater than 0 must be specified."));
1067 }
1068 }
1069
1070
1071 /* Set the height of the specified window. */
1072 static void
1073 tui_set_win_height (char *arg, int from_tty)
1074 {
1075 /* Make sure the curses mode is enabled. */
1076 tui_enable ();
1077 if (arg != (char *) NULL)
1078 {
1079 char *buf = xstrdup (arg);
1080 char *buf_ptr = buf;
1081 char *wname = (char *) NULL;
1082 int new_height, i;
1083 struct tui_win_info *win_info;
1084
1085 wname = buf_ptr;
1086 buf_ptr = strchr (buf_ptr, ' ');
1087 if (buf_ptr != (char *) NULL)
1088 {
1089 *buf_ptr = (char) 0;
1090
1091 /* Validate the window name. */
1092 for (i = 0; i < strlen (wname); i++)
1093 wname[i] = toupper (wname[i]);
1094 win_info = tui_partial_win_by_name (wname);
1095
1096 if (win_info == (struct tui_win_info *) NULL
1097 || !win_info->generic.is_visible)
1098 warning (_("Invalid window specified. \n\
1099 The window name specified must be valid and visible.\n"));
1100 else
1101 {
1102 /* Process the size. */
1103 while (*(++buf_ptr) == ' ')
1104 ;
1105
1106 if (*buf_ptr != (char) 0)
1107 {
1108 int negate = FALSE;
1109 int fixed_size = TRUE;
1110 int input_no;;
1111
1112 if (*buf_ptr == '+' || *buf_ptr == '-')
1113 {
1114 if (*buf_ptr == '-')
1115 negate = TRUE;
1116 fixed_size = FALSE;
1117 buf_ptr++;
1118 }
1119 input_no = atoi (buf_ptr);
1120 if (input_no > 0)
1121 {
1122 if (negate)
1123 input_no *= (-1);
1124 if (fixed_size)
1125 new_height = input_no;
1126 else
1127 new_height = win_info->generic.height + input_no;
1128
1129 /* Now change the window's height, and adjust
1130 all other windows around it. */
1131 if (tui_adjust_win_heights (win_info,
1132 new_height) == TUI_FAILURE)
1133 warning (_("Invalid window height specified.\n%s"),
1134 WIN_HEIGHT_USAGE);
1135 else
1136 tui_update_gdb_sizes ();
1137 }
1138 else
1139 warning (_("Invalid window height specified.\n%s"),
1140 WIN_HEIGHT_USAGE);
1141 }
1142 }
1143 }
1144 else
1145 printf_filtered (WIN_HEIGHT_USAGE);
1146
1147 if (buf != (char *) NULL)
1148 xfree (buf);
1149 }
1150 else
1151 printf_filtered (WIN_HEIGHT_USAGE);
1152 }
1153
1154 /* Set the height of the specified window, with va_list. */
1155 static void
1156 tui_set_win_height_command (char *arg, int from_tty)
1157 {
1158 /* Make sure the curses mode is enabled. */
1159 tui_enable ();
1160 tui_set_win_height (arg, from_tty);
1161 }
1162
1163 /* Function to adjust all window heights around the primary. */
1164 static enum tui_status
1165 tui_adjust_win_heights (struct tui_win_info *primary_win_info,
1166 int new_height)
1167 {
1168 enum tui_status status = TUI_FAILURE;
1169
1170 if (new_height_ok (primary_win_info, new_height))
1171 {
1172 status = TUI_SUCCESS;
1173 if (new_height != primary_win_info->generic.height)
1174 {
1175 int diff;
1176 struct tui_win_info *win_info;
1177 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
1178 enum tui_layout_type cur_layout = tui_current_layout ();
1179
1180 diff = (new_height - primary_win_info->generic.height) * (-1);
1181 if (cur_layout == SRC_COMMAND
1182 || cur_layout == DISASSEM_COMMAND)
1183 {
1184 struct tui_win_info *src_win_info;
1185
1186 make_invisible_and_set_new_height (primary_win_info, new_height);
1187 if (primary_win_info->generic.type == CMD_WIN)
1188 {
1189 win_info = (tui_source_windows ())->list[0];
1190 src_win_info = win_info;
1191 }
1192 else
1193 {
1194 win_info = tui_win_list[CMD_WIN];
1195 src_win_info = primary_win_info;
1196 }
1197 make_invisible_and_set_new_height (win_info,
1198 win_info->generic.height + diff);
1199 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
1200 make_visible_with_new_height (win_info);
1201 make_visible_with_new_height (primary_win_info);
1202 if (src_win_info->generic.content_size <= 0)
1203 tui_erase_source_content (src_win_info, EMPTY_SOURCE_PROMPT);
1204 }
1205 else
1206 {
1207 struct tui_win_info *first_win;
1208 struct tui_win_info *second_win;
1209
1210 if (cur_layout == SRC_DISASSEM_COMMAND)
1211 {
1212 first_win = TUI_SRC_WIN;
1213 second_win = TUI_DISASM_WIN;
1214 }
1215 else
1216 {
1217 first_win = TUI_DATA_WIN;
1218 second_win = (tui_source_windows ())->list[0];
1219 }
1220 if (primary_win_info == TUI_CMD_WIN)
1221 { /* Split the change in height accross the 1st & 2nd
1222 windows, adjusting them as well. */
1223 /* Subtract the locator. */
1224 int first_split_diff = diff / 2;
1225 int second_split_diff = first_split_diff;
1226
1227 if (diff % 2)
1228 {
1229 if (first_win->generic.height >
1230 second_win->generic.height)
1231 if (diff < 0)
1232 first_split_diff--;
1233 else
1234 first_split_diff++;
1235 else
1236 {
1237 if (diff < 0)
1238 second_split_diff--;
1239 else
1240 second_split_diff++;
1241 }
1242 }
1243 /* Make sure that the minimum hieghts are
1244 honored. */
1245 while ((first_win->generic.height + first_split_diff) < 3)
1246 {
1247 first_split_diff++;
1248 second_split_diff--;
1249 }
1250 while ((second_win->generic.height + second_split_diff) < 3)
1251 {
1252 second_split_diff++;
1253 first_split_diff--;
1254 }
1255 make_invisible_and_set_new_height (
1256 first_win,
1257 first_win->generic.height + first_split_diff);
1258 second_win->generic.origin.y = first_win->generic.height - 1;
1259 make_invisible_and_set_new_height (second_win,
1260 second_win->generic.height
1261 + second_split_diff);
1262 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
1263 make_invisible_and_set_new_height (TUI_CMD_WIN, new_height);
1264 }
1265 else
1266 {
1267 if ((TUI_CMD_WIN->generic.height + diff) < 1)
1268 { /* If there is no way to increase the command
1269 window take real estate from the 1st or 2nd
1270 window. */
1271 if ((TUI_CMD_WIN->generic.height + diff) < 1)
1272 {
1273 int i;
1274
1275 for (i = TUI_CMD_WIN->generic.height + diff;
1276 (i < 1); i++)
1277 if (primary_win_info == first_win)
1278 second_win->generic.height--;
1279 else
1280 first_win->generic.height--;
1281 }
1282 }
1283 if (primary_win_info == first_win)
1284 make_invisible_and_set_new_height (first_win, new_height);
1285 else
1286 make_invisible_and_set_new_height (
1287 first_win,
1288 first_win->generic.height);
1289 second_win->generic.origin.y = first_win->generic.height - 1;
1290 if (primary_win_info == second_win)
1291 make_invisible_and_set_new_height (second_win, new_height);
1292 else
1293 make_invisible_and_set_new_height (
1294 second_win, second_win->generic.height);
1295 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
1296 if ((TUI_CMD_WIN->generic.height + diff) < 1)
1297 make_invisible_and_set_new_height (TUI_CMD_WIN, 1);
1298 else
1299 make_invisible_and_set_new_height (TUI_CMD_WIN,
1300 TUI_CMD_WIN->generic.height + diff);
1301 }
1302 make_visible_with_new_height (TUI_CMD_WIN);
1303 make_visible_with_new_height (second_win);
1304 make_visible_with_new_height (first_win);
1305 if (first_win->generic.content_size <= 0)
1306 tui_erase_source_content (first_win, EMPTY_SOURCE_PROMPT);
1307 if (second_win->generic.content_size <= 0)
1308 tui_erase_source_content (second_win, EMPTY_SOURCE_PROMPT);
1309 }
1310 }
1311 }
1312
1313 return status;
1314 }
1315
1316
1317 /* Function make the target window (and auxillary windows associated
1318 with the targer) invisible, and set the new height and
1319 location. */
1320 static void
1321 make_invisible_and_set_new_height (struct tui_win_info *win_info,
1322 int height)
1323 {
1324 int i;
1325 struct tui_gen_win_info *gen_win_info;
1326
1327 tui_make_invisible (&win_info->generic);
1328 win_info->generic.height = height;
1329 if (height > 1)
1330 win_info->generic.viewport_height = height - 1;
1331 else
1332 win_info->generic.viewport_height = height;
1333 if (win_info != TUI_CMD_WIN)
1334 win_info->generic.viewport_height--;
1335
1336 /* Now deal with the auxillary windows associated with win_info. */
1337 switch (win_info->generic.type)
1338 {
1339 case SRC_WIN:
1340 case DISASSEM_WIN:
1341 gen_win_info = win_info->detail.source_info.execution_info;
1342 tui_make_invisible (gen_win_info);
1343 gen_win_info->height = height;
1344 gen_win_info->origin.y = win_info->generic.origin.y;
1345 if (height > 1)
1346 gen_win_info->viewport_height = height - 1;
1347 else
1348 gen_win_info->viewport_height = height;
1349 if (win_info != TUI_CMD_WIN)
1350 gen_win_info->viewport_height--;
1351
1352 if (tui_win_has_locator (win_info))
1353 {
1354 gen_win_info = tui_locator_win_info_ptr ();
1355 tui_make_invisible (gen_win_info);
1356 gen_win_info->origin.y = win_info->generic.origin.y + height;
1357 }
1358 break;
1359 case DATA_WIN:
1360 /* Delete all data item windows. */
1361 for (i = 0; i < win_info->generic.content_size; i++)
1362 {
1363 gen_win_info = (struct tui_gen_win_info *)
1364 &((struct tui_win_element *)
1365 win_info->generic.content[i])->which_element.data_window;
1366 tui_delete_win (gen_win_info->handle);
1367 gen_win_info->handle = (WINDOW *) NULL;
1368 }
1369 break;
1370 default:
1371 break;
1372 }
1373 }
1374
1375
1376 /* Function to make the windows with new heights visible. This means
1377 re-creating the windows' content since the window had to be
1378 destroyed to be made invisible. */
1379 static void
1380 make_visible_with_new_height (struct tui_win_info *win_info)
1381 {
1382 struct symtab *s;
1383
1384 tui_make_visible (&win_info->generic);
1385 tui_check_and_display_highlight_if_needed (win_info);
1386 switch (win_info->generic.type)
1387 {
1388 case SRC_WIN:
1389 case DISASSEM_WIN:
1390 tui_free_win_content (win_info->detail.source_info.execution_info);
1391 tui_make_visible (win_info->detail.source_info.execution_info);
1392 if (win_info->generic.content != NULL)
1393 {
1394 struct gdbarch *gdbarch = win_info->detail.source_info.gdbarch;
1395 struct tui_line_or_address line_or_addr;
1396 struct symtab_and_line cursal
1397 = get_current_source_symtab_and_line ();
1398
1399 line_or_addr = win_info->detail.source_info.start_line_or_addr;
1400 tui_free_win_content (&win_info->generic);
1401 tui_update_source_window (win_info, gdbarch,
1402 cursal.symtab, line_or_addr, TRUE);
1403 }
1404 else if (deprecated_safe_get_selected_frame () != NULL)
1405 {
1406 struct tui_line_or_address line;
1407 struct symtab_and_line cursal
1408 = get_current_source_symtab_and_line ();
1409 struct frame_info *frame = deprecated_safe_get_selected_frame ();
1410 struct gdbarch *gdbarch = get_frame_arch (frame);
1411
1412 s = find_pc_line_symtab (get_frame_pc (frame));
1413 if (win_info->generic.type == SRC_WIN)
1414 {
1415 line.loa = LOA_LINE;
1416 line.u.line_no = cursal.line;
1417 }
1418 else
1419 {
1420 line.loa = LOA_ADDRESS;
1421 find_line_pc (s, cursal.line, &line.u.addr);
1422 }
1423 tui_update_source_window (win_info, gdbarch, s, line, TRUE);
1424 }
1425 if (tui_win_has_locator (win_info))
1426 {
1427 tui_make_visible (tui_locator_win_info_ptr ());
1428 tui_show_locator_content ();
1429 }
1430 break;
1431 case DATA_WIN:
1432 tui_display_all_data ();
1433 break;
1434 case CMD_WIN:
1435 win_info->detail.command_info.cur_line = 0;
1436 win_info->detail.command_info.curch = 0;
1437 #ifdef HAVE_WRESIZE
1438 wresize (TUI_CMD_WIN->generic.handle,
1439 TUI_CMD_WIN->generic.height,
1440 TUI_CMD_WIN->generic.width);
1441 #endif
1442 mvwin (TUI_CMD_WIN->generic.handle,
1443 TUI_CMD_WIN->generic.origin.y,
1444 TUI_CMD_WIN->generic.origin.x);
1445 wmove (win_info->generic.handle,
1446 win_info->detail.command_info.cur_line,
1447 win_info->detail.command_info.curch);
1448 break;
1449 default:
1450 break;
1451 }
1452 }
1453
1454
1455 static int
1456 new_height_ok (struct tui_win_info *primary_win_info,
1457 int new_height)
1458 {
1459 int ok = (new_height < tui_term_height ());
1460
1461 if (ok)
1462 {
1463 int diff;
1464 enum tui_layout_type cur_layout = tui_current_layout ();
1465
1466 diff = (new_height - primary_win_info->generic.height) * (-1);
1467 if (cur_layout == SRC_COMMAND || cur_layout == DISASSEM_COMMAND)
1468 {
1469 ok = ((primary_win_info->generic.type == CMD_WIN
1470 && new_height <= (tui_term_height () - 4)
1471 && new_height >= MIN_CMD_WIN_HEIGHT)
1472 || (primary_win_info->generic.type != CMD_WIN
1473 && new_height <= (tui_term_height () - 2)
1474 && new_height >= MIN_WIN_HEIGHT));
1475 if (ok)
1476 { /* Check the total height. */
1477 struct tui_win_info *win_info;
1478
1479 if (primary_win_info == TUI_CMD_WIN)
1480 win_info = (tui_source_windows ())->list[0];
1481 else
1482 win_info = TUI_CMD_WIN;
1483 ok = ((new_height +
1484 (win_info->generic.height + diff)) <= tui_term_height ());
1485 }
1486 }
1487 else
1488 {
1489 int cur_total_height, total_height, min_height = 0;
1490 struct tui_win_info *first_win;
1491 struct tui_win_info *second_win;
1492
1493 if (cur_layout == SRC_DISASSEM_COMMAND)
1494 {
1495 first_win = TUI_SRC_WIN;
1496 second_win = TUI_DISASM_WIN;
1497 }
1498 else
1499 {
1500 first_win = TUI_DATA_WIN;
1501 second_win = (tui_source_windows ())->list[0];
1502 }
1503 /* We could simply add all the heights to obtain the same
1504 result but below is more explicit since we subtract 1 for
1505 the line that the first and second windows share, and add
1506 one for the locator. */
1507 total_height = cur_total_height =
1508 (first_win->generic.height + second_win->generic.height - 1)
1509 + TUI_CMD_WIN->generic.height + 1; /* Locator. */
1510 if (primary_win_info == TUI_CMD_WIN)
1511 {
1512 /* Locator included since first & second win share a line. */
1513 ok = ((first_win->generic.height +
1514 second_win->generic.height + diff) >=
1515 (MIN_WIN_HEIGHT * 2)
1516 && new_height >= MIN_CMD_WIN_HEIGHT);
1517 if (ok)
1518 {
1519 total_height = new_height +
1520 (first_win->generic.height +
1521 second_win->generic.height + diff);
1522 min_height = MIN_CMD_WIN_HEIGHT;
1523 }
1524 }
1525 else
1526 {
1527 min_height = MIN_WIN_HEIGHT;
1528
1529 /* First see if we can increase/decrease the command
1530 window. And make sure that the command window is at
1531 least 1 line. */
1532 ok = ((TUI_CMD_WIN->generic.height + diff) > 0);
1533 if (!ok)
1534 { /* Looks like we have to increase/decrease one of
1535 the other windows. */
1536 if (primary_win_info == first_win)
1537 ok = (second_win->generic.height + diff) >= min_height;
1538 else
1539 ok = (first_win->generic.height + diff) >= min_height;
1540 }
1541 if (ok)
1542 {
1543 if (primary_win_info == first_win)
1544 total_height = new_height +
1545 second_win->generic.height +
1546 TUI_CMD_WIN->generic.height + diff;
1547 else
1548 total_height = new_height +
1549 first_win->generic.height +
1550 TUI_CMD_WIN->generic.height + diff;
1551 }
1552 }
1553 /* Now make sure that the proposed total height doesn't
1554 exceed the old total height. */
1555 if (ok)
1556 ok = (new_height >= min_height
1557 && total_height <= cur_total_height);
1558 }
1559 }
1560
1561 return ok;
1562 }
1563
1564
1565 static void
1566 parse_scrolling_args (char *arg,
1567 struct tui_win_info **win_to_scroll,
1568 int *num_to_scroll)
1569 {
1570 if (num_to_scroll)
1571 *num_to_scroll = 0;
1572 *win_to_scroll = tui_win_with_focus ();
1573
1574 /* First set up the default window to scroll, in case there is no
1575 window name arg. */
1576 if (arg != (char *) NULL)
1577 {
1578 char *buf, *buf_ptr;
1579
1580 /* Process the number of lines to scroll. */
1581 buf = buf_ptr = xstrdup (arg);
1582 if (isdigit (*buf_ptr))
1583 {
1584 char *num_str;
1585
1586 num_str = buf_ptr;
1587 buf_ptr = strchr (buf_ptr, ' ');
1588 if (buf_ptr != (char *) NULL)
1589 {
1590 *buf_ptr = (char) 0;
1591 if (num_to_scroll)
1592 *num_to_scroll = atoi (num_str);
1593 buf_ptr++;
1594 }
1595 else if (num_to_scroll)
1596 *num_to_scroll = atoi (num_str);
1597 }
1598
1599 /* Process the window name if one is specified. */
1600 if (buf_ptr != (char *) NULL)
1601 {
1602 char *wname;
1603 int i;
1604
1605 if (*buf_ptr == ' ')
1606 while (*(++buf_ptr) == ' ')
1607 ;
1608
1609 if (*buf_ptr != (char) 0)
1610 {
1611 wname = buf_ptr;
1612
1613 /* Validate the window name. */
1614 for (i = 0; i < strlen (wname); i++)
1615 wname[i] = toupper (wname[i]);
1616 }
1617 else
1618 wname = "?";
1619
1620 *win_to_scroll = tui_partial_win_by_name (wname);
1621
1622 if (*win_to_scroll == (struct tui_win_info *) NULL
1623 || !(*win_to_scroll)->generic.is_visible)
1624 error (_("Invalid window specified. \n\
1625 The window name specified must be valid and visible.\n"));
1626 else if (*win_to_scroll == TUI_CMD_WIN)
1627 *win_to_scroll = (tui_source_windows ())->list[0];
1628 }
1629 xfree (buf);
1630 }
1631 }
This page took 0.063953 seconds and 4 git commands to generate.