96fa8012c82bd43b231cb17803706348ddbafebd
[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
36 #include "tui/tui.h"
37 #include "tui/tui-data.h"
38 #include "tui/tui-wingeneral.h"
39 #include "tui/tui-stack.h"
40 #include "tui/tui-regs.h"
41 #include "tui/tui-disasm.h"
42 #include "tui/tui-source.h"
43 #include "tui/tui-winsource.h"
44 #include "tui/tui-windata.h"
45 #include "tui/tui-win.h"
46
47 #include "gdb_curses.h"
48 #include <ctype.h>
49 #include "readline/readline.h"
50
51 #include <signal.h>
52
53 /*******************************
54 ** Static Local Decls
55 ********************************/
56 static void make_visible_with_new_height (struct tui_win_info *);
57 static void make_invisible_and_set_new_height (struct tui_win_info *,
58 int);
59 static enum tui_status tui_adjust_win_heights (struct tui_win_info *,
60 int);
61 static int new_height_ok (struct tui_win_info *, int);
62 static void tui_set_tab_width_command (char *, int);
63 static void tui_refresh_all_command (char *, int);
64 static void tui_set_win_height_command (char *, int);
65 static void tui_xdb_set_win_height_command (char *, int);
66 static void tui_all_windows_info (char *, int);
67 static void tui_set_focus_command (char *, int);
68 static void tui_scroll_forward_command (char *, int);
69 static void tui_scroll_backward_command (char *, int);
70 static void tui_scroll_left_command (char *, int);
71 static void tui_scroll_right_command (char *, int);
72 static void parse_scrolling_args (char *,
73 struct tui_win_info **,
74 int *);
75
76
77 /***************************************
78 ** DEFINITIONS
79 ***************************************/
80 #define WIN_HEIGHT_USAGE "Usage: winheight <win_name> [+ | -] <#lines>\n"
81 #define XDBWIN_HEIGHT_USAGE "Usage: w <#lines>\n"
82 #define FOCUS_USAGE "Usage: focus {<win> | next | prev}\n"
83
84 /***************************************
85 ** PUBLIC FUNCTIONS
86 ***************************************/
87
88 #ifndef ACS_LRCORNER
89 # define ACS_LRCORNER '+'
90 #endif
91 #ifndef ACS_LLCORNER
92 # define ACS_LLCORNER '+'
93 #endif
94 #ifndef ACS_ULCORNER
95 # define ACS_ULCORNER '+'
96 #endif
97 #ifndef ACS_URCORNER
98 # define ACS_URCORNER '+'
99 #endif
100 #ifndef ACS_HLINE
101 # define ACS_HLINE '-'
102 #endif
103 #ifndef ACS_VLINE
104 # define ACS_VLINE '|'
105 #endif
106
107 /* Possible values for tui-border-kind variable. */
108 static const char *const tui_border_kind_enums[] = {
109 "space",
110 "ascii",
111 "acs",
112 NULL
113 };
114
115 /* Possible values for tui-border-mode and tui-active-border-mode. */
116 static const char *const tui_border_mode_enums[] = {
117 "normal",
118 "standout",
119 "reverse",
120 "half",
121 "half-standout",
122 "bold",
123 "bold-standout",
124 NULL
125 };
126
127 struct tui_translate
128 {
129 const char *name;
130 int value;
131 };
132
133 /* Translation table for border-mode variables.
134 The list of values must be terminated by a NULL.
135 After the NULL value, an entry defines the default. */
136 struct tui_translate tui_border_mode_translate[] = {
137 { "normal", A_NORMAL },
138 { "standout", A_STANDOUT },
139 { "reverse", A_REVERSE },
140 { "half", A_DIM },
141 { "half-standout", A_DIM | A_STANDOUT },
142 { "bold", A_BOLD },
143 { "bold-standout", A_BOLD | A_STANDOUT },
144 { 0, 0 },
145 { "normal", A_NORMAL }
146 };
147
148 /* Translation tables for border-kind, one for each border
149 character (see wborder, border curses operations).
150 -1 is used to indicate the ACS because ACS characters
151 are determined at run time by curses (depends on terminal). */
152 struct tui_translate tui_border_kind_translate_vline[] = {
153 { "space", ' ' },
154 { "ascii", '|' },
155 { "acs", -1 },
156 { 0, 0 },
157 { "ascii", '|' }
158 };
159
160 struct tui_translate tui_border_kind_translate_hline[] = {
161 { "space", ' ' },
162 { "ascii", '-' },
163 { "acs", -1 },
164 { 0, 0 },
165 { "ascii", '-' }
166 };
167
168 struct tui_translate tui_border_kind_translate_ulcorner[] = {
169 { "space", ' ' },
170 { "ascii", '+' },
171 { "acs", -1 },
172 { 0, 0 },
173 { "ascii", '+' }
174 };
175
176 struct tui_translate tui_border_kind_translate_urcorner[] = {
177 { "space", ' ' },
178 { "ascii", '+' },
179 { "acs", -1 },
180 { 0, 0 },
181 { "ascii", '+' }
182 };
183
184 struct tui_translate tui_border_kind_translate_llcorner[] = {
185 { "space", ' ' },
186 { "ascii", '+' },
187 { "acs", -1 },
188 { 0, 0 },
189 { "ascii", '+' }
190 };
191
192 struct tui_translate tui_border_kind_translate_lrcorner[] = {
193 { "space", ' ' },
194 { "ascii", '+' },
195 { "acs", -1 },
196 { 0, 0 },
197 { "ascii", '+' }
198 };
199
200
201 /* Tui configuration variables controlled with set/show command. */
202 const char *tui_active_border_mode = "bold-standout";
203 static void
204 show_tui_active_border_mode (struct ui_file *file,
205 int from_tty,
206 struct cmd_list_element *c,
207 const char *value)
208 {
209 fprintf_filtered (file, _("\
210 The attribute mode to use for the active TUI window border is \"%s\".\n"),
211 value);
212 }
213
214 const char *tui_border_mode = "normal";
215 static void
216 show_tui_border_mode (struct ui_file *file,
217 int from_tty,
218 struct cmd_list_element *c,
219 const char *value)
220 {
221 fprintf_filtered (file, _("\
222 The attribute mode to use for the TUI window borders is \"%s\".\n"),
223 value);
224 }
225
226 const char *tui_border_kind = "acs";
227 static void
228 show_tui_border_kind (struct ui_file *file,
229 int from_tty,
230 struct cmd_list_element *c,
231 const char *value)
232 {
233 fprintf_filtered (file, _("The kind of border for TUI windows is \"%s\".\n"),
234 value);
235 }
236
237
238 /* Tui internal configuration variables. These variables are updated
239 by tui_update_variables to reflect the tui configuration
240 variables. */
241 chtype tui_border_vline;
242 chtype tui_border_hline;
243 chtype tui_border_ulcorner;
244 chtype tui_border_urcorner;
245 chtype tui_border_llcorner;
246 chtype tui_border_lrcorner;
247
248 int tui_border_attrs;
249 int tui_active_border_attrs;
250
251 /* Identify the item in the translation table.
252 When the item is not recognized, use the default entry. */
253 static struct tui_translate *
254 translate (const char *name, struct tui_translate *table)
255 {
256 while (table->name)
257 {
258 if (name && strcmp (table->name, name) == 0)
259 return table;
260 table++;
261 }
262
263 /* Not found, return default entry. */
264 table++;
265 return table;
266 }
267
268 /* Update the tui internal configuration according to gdb settings.
269 Returns 1 if the configuration has changed and the screen should
270 be redrawn. */
271 int
272 tui_update_variables (void)
273 {
274 int need_redraw = 0;
275 struct tui_translate *entry;
276
277 entry = translate (tui_border_mode, tui_border_mode_translate);
278 if (tui_border_attrs != entry->value)
279 {
280 tui_border_attrs = entry->value;
281 need_redraw = 1;
282 }
283 entry = translate (tui_active_border_mode, tui_border_mode_translate);
284 if (tui_active_border_attrs != entry->value)
285 {
286 tui_active_border_attrs = entry->value;
287 need_redraw = 1;
288 }
289
290 /* If one corner changes, all characters are changed.
291 Only check the first one. The ACS characters are determined at
292 run time by curses terminal management. */
293 entry = translate (tui_border_kind, tui_border_kind_translate_lrcorner);
294 if (tui_border_lrcorner != (chtype) entry->value)
295 {
296 tui_border_lrcorner = (entry->value < 0) ? ACS_LRCORNER : entry->value;
297 need_redraw = 1;
298 }
299 entry = translate (tui_border_kind, tui_border_kind_translate_llcorner);
300 tui_border_llcorner = (entry->value < 0) ? ACS_LLCORNER : entry->value;
301
302 entry = translate (tui_border_kind, tui_border_kind_translate_ulcorner);
303 tui_border_ulcorner = (entry->value < 0) ? ACS_ULCORNER : entry->value;
304
305 entry = translate (tui_border_kind, tui_border_kind_translate_urcorner);
306 tui_border_urcorner = (entry->value < 0) ? ACS_URCORNER : entry->value;
307
308 entry = translate (tui_border_kind, tui_border_kind_translate_hline);
309 tui_border_hline = (entry->value < 0) ? ACS_HLINE : entry->value;
310
311 entry = translate (tui_border_kind, tui_border_kind_translate_vline);
312 tui_border_vline = (entry->value < 0) ? ACS_VLINE : entry->value;
313
314 return need_redraw;
315 }
316
317 static void
318 set_tui_cmd (char *args, int from_tty)
319 {
320 }
321
322 static void
323 show_tui_cmd (char *args, int from_tty)
324 {
325 }
326
327 static struct cmd_list_element *tuilist;
328
329 static void
330 tui_command (char *args, int from_tty)
331 {
332 printf_unfiltered (_("\"tui\" must be followed by the name of a "
333 "tui command.\n"));
334 help_list (tuilist, "tui ", all_commands, gdb_stdout);
335 }
336
337 struct cmd_list_element **
338 tui_get_cmd_list (void)
339 {
340 if (tuilist == 0)
341 add_prefix_cmd ("tui", class_tui, tui_command,
342 _("Text User Interface commands."),
343 &tuilist, "tui ", 0, &cmdlist);
344 return &tuilist;
345 }
346
347 /* Function to initialize gdb commands, for tui window
348 manipulation. */
349
350 /* Provide a prototype to silence -Wmissing-prototypes. */
351 extern initialize_file_ftype _initialize_tui_win;
352
353 void
354 _initialize_tui_win (void)
355 {
356 static struct cmd_list_element *tui_setlist;
357 static struct cmd_list_element *tui_showlist;
358
359 /* Define the classes of commands.
360 They will appear in the help list in the reverse of this order. */
361 add_prefix_cmd ("tui", class_tui, set_tui_cmd,
362 _("TUI configuration variables"),
363 &tui_setlist, "set tui ",
364 0 /* allow-unknown */, &setlist);
365 add_prefix_cmd ("tui", class_tui, show_tui_cmd,
366 _("TUI configuration variables"),
367 &tui_showlist, "show tui ",
368 0 /* allow-unknown */, &showlist);
369
370 add_com ("refresh", class_tui, tui_refresh_all_command,
371 _("Refresh the terminal display.\n"));
372 if (xdb_commands)
373 add_com_alias ("U", "refresh", class_tui, 0);
374 add_com ("tabset", class_tui, tui_set_tab_width_command, _("\
375 Set the width (in characters) of tab stops.\n\
376 Usage: tabset <n>\n"));
377 add_com ("winheight", class_tui, tui_set_win_height_command, _("\
378 Set the height of a specified window.\n\
379 Usage: winheight <win_name> [+ | -] <#lines>\n\
380 Window names are:\n\
381 src : the source window\n\
382 cmd : the command window\n\
383 asm : the disassembly window\n\
384 regs : the register display\n"));
385 add_com_alias ("wh", "winheight", class_tui, 0);
386 add_info ("win", tui_all_windows_info,
387 _("List of all displayed windows.\n"));
388 add_com ("focus", class_tui, tui_set_focus_command, _("\
389 Set focus to named window or next/prev window.\n\
390 Usage: focus {<win> | next | prev}\n\
391 Valid Window names are:\n\
392 src : the source window\n\
393 asm : the disassembly window\n\
394 regs : the register display\n\
395 cmd : the command window\n"));
396 add_com_alias ("fs", "focus", class_tui, 0);
397 add_com ("+", class_tui, tui_scroll_forward_command, _("\
398 Scroll window forward.\n\
399 Usage: + [win] [n]\n"));
400 add_com ("-", class_tui, tui_scroll_backward_command, _("\
401 Scroll window backward.\n\
402 Usage: - [win] [n]\n"));
403 add_com ("<", class_tui, tui_scroll_left_command, _("\
404 Scroll window text to the left.\n\
405 Usage: < [win] [n]\n"));
406 add_com (">", class_tui, tui_scroll_right_command, _("\
407 Scroll window text to the right.\n\
408 Usage: > [win] [n]\n"));
409 if (xdb_commands)
410 add_com ("w", class_xdb, tui_xdb_set_win_height_command, _("\
411 XDB compatibility command for setting the height of a command window.\n\
412 Usage: w <#lines>\n"));
413
414 /* Define the tui control variables. */
415 add_setshow_enum_cmd ("border-kind", no_class, tui_border_kind_enums,
416 &tui_border_kind, _("\
417 Set the kind of border for TUI windows."), _("\
418 Show the kind of border for TUI windows."), _("\
419 This variable controls the border of TUI windows:\n\
420 space use a white space\n\
421 ascii use ascii characters + - | for the border\n\
422 acs use the Alternate Character Set"),
423 NULL,
424 show_tui_border_kind,
425 &tui_setlist, &tui_showlist);
426
427 add_setshow_enum_cmd ("border-mode", no_class, tui_border_mode_enums,
428 &tui_border_mode, _("\
429 Set the attribute mode to use for the TUI window borders."), _("\
430 Show the attribute mode to use for the TUI window borders."), _("\
431 This variable controls the attributes to use for the window borders:\n\
432 normal normal display\n\
433 standout use highlight mode of terminal\n\
434 reverse use reverse video mode\n\
435 half use half bright\n\
436 half-standout use half bright and standout mode\n\
437 bold use extra bright or bold\n\
438 bold-standout use extra bright or bold with standout mode"),
439 NULL,
440 show_tui_border_mode,
441 &tui_setlist, &tui_showlist);
442
443 add_setshow_enum_cmd ("active-border-mode", no_class, tui_border_mode_enums,
444 &tui_active_border_mode, _("\
445 Set the attribute mode to use for the active TUI window border."), _("\
446 Show the attribute mode to use for the active TUI window border."), _("\
447 This variable controls the attributes to use for the active window border:\n\
448 normal normal display\n\
449 standout use highlight mode of terminal\n\
450 reverse use reverse video mode\n\
451 half use half bright\n\
452 half-standout use half bright and standout mode\n\
453 bold use extra bright or bold\n\
454 bold-standout use extra bright or bold with standout mode"),
455 NULL,
456 show_tui_active_border_mode,
457 &tui_setlist, &tui_showlist);
458 }
459
460 /* Update gdb's knowledge of the terminal size. */
461 void
462 tui_update_gdb_sizes (void)
463 {
464 char cmd[50];
465
466 /* Set to TUI command window dimension or use readline values. */
467 xsnprintf (cmd, sizeof (cmd), "set width %d",
468 tui_active ? TUI_CMD_WIN->generic.width : tui_term_width());
469 execute_command (cmd, 0);
470 xsnprintf (cmd, sizeof (cmd), "set height %d",
471 tui_active ? TUI_CMD_WIN->generic.height : tui_term_height());
472 execute_command (cmd, 0);
473 }
474
475
476 /* Set the logical focus to win_info. */
477 void
478 tui_set_win_focus_to (struct tui_win_info *win_info)
479 {
480 if (win_info != NULL)
481 {
482 struct tui_win_info *win_with_focus = tui_win_with_focus ();
483
484 if (win_with_focus != NULL
485 && win_with_focus->generic.type != CMD_WIN)
486 tui_unhighlight_win (win_with_focus);
487 tui_set_win_with_focus (win_info);
488 if (win_info->generic.type != CMD_WIN)
489 tui_highlight_win (win_info);
490 }
491 }
492
493
494 void
495 tui_scroll_forward (struct tui_win_info *win_to_scroll,
496 int num_to_scroll)
497 {
498 if (win_to_scroll != TUI_CMD_WIN)
499 {
500 int _num_to_scroll = num_to_scroll;
501
502 if (num_to_scroll == 0)
503 _num_to_scroll = win_to_scroll->generic.height - 3;
504
505 /* If we are scrolling the source or disassembly window, do a
506 "psuedo" scroll since not all of the source is in memory,
507 only what is in the viewport. If win_to_scroll is the
508 command window do nothing since the term should handle
509 it. */
510 if (win_to_scroll == TUI_SRC_WIN)
511 tui_vertical_source_scroll (FORWARD_SCROLL, _num_to_scroll);
512 else if (win_to_scroll == TUI_DISASM_WIN)
513 tui_vertical_disassem_scroll (FORWARD_SCROLL, _num_to_scroll);
514 else if (win_to_scroll == TUI_DATA_WIN)
515 tui_vertical_data_scroll (FORWARD_SCROLL, _num_to_scroll);
516 }
517 }
518
519 void
520 tui_scroll_backward (struct tui_win_info *win_to_scroll,
521 int num_to_scroll)
522 {
523 if (win_to_scroll != TUI_CMD_WIN)
524 {
525 int _num_to_scroll = num_to_scroll;
526
527 if (num_to_scroll == 0)
528 _num_to_scroll = win_to_scroll->generic.height - 3;
529
530 /* If we are scrolling the source or disassembly window, do a
531 "psuedo" scroll since not all of the source is in memory,
532 only what is in the viewport. If win_to_scroll is the
533 command window do nothing since the term should handle
534 it. */
535 if (win_to_scroll == TUI_SRC_WIN)
536 tui_vertical_source_scroll (BACKWARD_SCROLL, _num_to_scroll);
537 else if (win_to_scroll == TUI_DISASM_WIN)
538 tui_vertical_disassem_scroll (BACKWARD_SCROLL, _num_to_scroll);
539 else if (win_to_scroll == TUI_DATA_WIN)
540 tui_vertical_data_scroll (BACKWARD_SCROLL, _num_to_scroll);
541 }
542 }
543
544
545 void
546 tui_scroll_left (struct tui_win_info *win_to_scroll,
547 int num_to_scroll)
548 {
549 if (win_to_scroll != TUI_CMD_WIN)
550 {
551 int _num_to_scroll = num_to_scroll;
552
553 if (_num_to_scroll == 0)
554 _num_to_scroll = 1;
555
556 /* If we are scrolling the source or disassembly window, do a
557 "psuedo" scroll since not all of the source is in memory,
558 only what is in the viewport. If win_to_scroll is the command
559 window do nothing since the term should handle it. */
560 if (win_to_scroll == TUI_SRC_WIN
561 || win_to_scroll == TUI_DISASM_WIN)
562 tui_horizontal_source_scroll (win_to_scroll, LEFT_SCROLL,
563 _num_to_scroll);
564 }
565 }
566
567
568 void
569 tui_scroll_right (struct tui_win_info *win_to_scroll,
570 int num_to_scroll)
571 {
572 if (win_to_scroll != TUI_CMD_WIN)
573 {
574 int _num_to_scroll = num_to_scroll;
575
576 if (_num_to_scroll == 0)
577 _num_to_scroll = 1;
578
579 /* If we are scrolling the source or disassembly window, do a
580 "psuedo" scroll since not all of the source is in memory,
581 only what is in the viewport. If win_to_scroll is the command
582 window do nothing since the term should handle it. */
583 if (win_to_scroll == TUI_SRC_WIN
584 || win_to_scroll == TUI_DISASM_WIN)
585 tui_horizontal_source_scroll (win_to_scroll, RIGHT_SCROLL,
586 _num_to_scroll);
587 }
588 }
589
590
591 /* Scroll a window. Arguments are passed through a va_list. */
592 void
593 tui_scroll (enum tui_scroll_direction direction,
594 struct tui_win_info *win_to_scroll,
595 int num_to_scroll)
596 {
597 switch (direction)
598 {
599 case FORWARD_SCROLL:
600 tui_scroll_forward (win_to_scroll, num_to_scroll);
601 break;
602 case BACKWARD_SCROLL:
603 tui_scroll_backward (win_to_scroll, num_to_scroll);
604 break;
605 case LEFT_SCROLL:
606 tui_scroll_left (win_to_scroll, num_to_scroll);
607 break;
608 case RIGHT_SCROLL:
609 tui_scroll_right (win_to_scroll, num_to_scroll);
610 break;
611 default:
612 break;
613 }
614 }
615
616
617 void
618 tui_refresh_all_win (void)
619 {
620 enum tui_win_type type;
621
622 clearok (curscr, TRUE);
623 tui_refresh_all (tui_win_list);
624 for (type = SRC_WIN; type < MAX_MAJOR_WINDOWS; type++)
625 {
626 if (tui_win_list[type]
627 && tui_win_list[type]->generic.is_visible)
628 {
629 switch (type)
630 {
631 case SRC_WIN:
632 case DISASSEM_WIN:
633 tui_show_source_content (tui_win_list[type]);
634 tui_check_and_display_highlight_if_needed (tui_win_list[type]);
635 tui_erase_exec_info_content (tui_win_list[type]);
636 tui_update_exec_info (tui_win_list[type]);
637 break;
638 case DATA_WIN:
639 tui_refresh_data_win ();
640 break;
641 default:
642 break;
643 }
644 }
645 }
646 tui_show_locator_content ();
647 }
648
649
650 /* Resize all the windows based on the terminal size. This function
651 gets called from within the readline sinwinch handler. */
652 void
653 tui_resize_all (void)
654 {
655 int height_diff, width_diff;
656 int screenheight, screenwidth;
657
658 rl_get_screen_size (&screenheight, &screenwidth);
659 width_diff = screenwidth - tui_term_width ();
660 height_diff = screenheight - tui_term_height ();
661 if (height_diff || width_diff)
662 {
663 enum tui_layout_type cur_layout = tui_current_layout ();
664 struct tui_win_info *win_with_focus = tui_win_with_focus ();
665 struct tui_win_info *first_win;
666 struct tui_win_info *second_win;
667 struct tui_gen_win_info *locator = tui_locator_win_info_ptr ();
668 enum tui_win_type win_type;
669 int new_height, split_diff, cmd_split_diff, num_wins_displayed = 2;
670
671 #ifdef HAVE_RESIZE_TERM
672 resize_term (screenheight, screenwidth);
673 #endif
674 /* Turn keypad off while we resize. */
675 if (win_with_focus != TUI_CMD_WIN)
676 keypad (TUI_CMD_WIN->generic.handle, FALSE);
677 tui_update_gdb_sizes ();
678 tui_set_term_height_to (screenheight);
679 tui_set_term_width_to (screenwidth);
680 if (cur_layout == SRC_DISASSEM_COMMAND
681 || cur_layout == SRC_DATA_COMMAND
682 || cur_layout == DISASSEM_DATA_COMMAND)
683 num_wins_displayed++;
684 split_diff = height_diff / num_wins_displayed;
685 cmd_split_diff = split_diff;
686 if (height_diff % num_wins_displayed)
687 {
688 if (height_diff < 0)
689 cmd_split_diff--;
690 else
691 cmd_split_diff++;
692 }
693 /* Now adjust each window. */
694 /* erase + clearok are used instead of a straightforward clear as
695 AIX 5.3 does not define clear. */
696 erase ();
697 clearok (curscr, TRUE);
698 refresh ();
699 switch (cur_layout)
700 {
701 case SRC_COMMAND:
702 case DISASSEM_COMMAND:
703 first_win = (struct tui_win_info *) (tui_source_windows ())->list[0];
704 first_win->generic.width += width_diff;
705 locator->width += width_diff;
706 /* Check for invalid heights. */
707 if (height_diff == 0)
708 new_height = first_win->generic.height;
709 else if ((first_win->generic.height + split_diff) >=
710 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
711 new_height = screenheight - MIN_CMD_WIN_HEIGHT - 1;
712 else if ((first_win->generic.height + split_diff) <= 0)
713 new_height = MIN_WIN_HEIGHT;
714 else
715 new_height = first_win->generic.height + split_diff;
716
717 locator->origin.y = new_height + 1;
718 make_invisible_and_set_new_height (first_win, new_height);
719 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
720 TUI_CMD_WIN->generic.width += width_diff;
721 new_height = screenheight - TUI_CMD_WIN->generic.origin.y;
722 make_invisible_and_set_new_height (TUI_CMD_WIN, new_height);
723 make_visible_with_new_height (first_win);
724 make_visible_with_new_height (TUI_CMD_WIN);
725 if (first_win->generic.content_size <= 0)
726 tui_erase_source_content (first_win, EMPTY_SOURCE_PROMPT);
727 break;
728 default:
729 if (cur_layout == SRC_DISASSEM_COMMAND)
730 {
731 first_win = TUI_SRC_WIN;
732 first_win->generic.width += width_diff;
733 second_win = TUI_DISASM_WIN;
734 second_win->generic.width += width_diff;
735 }
736 else
737 {
738 first_win = TUI_DATA_WIN;
739 first_win->generic.width += width_diff;
740 second_win = (struct tui_win_info *)
741 (tui_source_windows ())->list[0];
742 second_win->generic.width += width_diff;
743 }
744 /* Change the first window's height/width. */
745 /* Check for invalid heights. */
746 if (height_diff == 0)
747 new_height = first_win->generic.height;
748 else if ((first_win->generic.height +
749 second_win->generic.height + (split_diff * 2)) >=
750 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
751 new_height = (screenheight - MIN_CMD_WIN_HEIGHT - 1) / 2;
752 else if ((first_win->generic.height + split_diff) <= 0)
753 new_height = MIN_WIN_HEIGHT;
754 else
755 new_height = first_win->generic.height + split_diff;
756 make_invisible_and_set_new_height (first_win, new_height);
757
758 locator->width += width_diff;
759
760 /* Change the second window's height/width. */
761 /* Check for invalid heights. */
762 if (height_diff == 0)
763 new_height = second_win->generic.height;
764 else if ((first_win->generic.height +
765 second_win->generic.height + (split_diff * 2)) >=
766 (screenheight - MIN_CMD_WIN_HEIGHT - 1))
767 {
768 new_height = screenheight - MIN_CMD_WIN_HEIGHT - 1;
769 if (new_height % 2)
770 new_height = (new_height / 2) + 1;
771 else
772 new_height /= 2;
773 }
774 else if ((second_win->generic.height + split_diff) <= 0)
775 new_height = MIN_WIN_HEIGHT;
776 else
777 new_height = second_win->generic.height + split_diff;
778 second_win->generic.origin.y = first_win->generic.height - 1;
779 make_invisible_and_set_new_height (second_win, new_height);
780
781 /* Change the command window's height/width. */
782 TUI_CMD_WIN->generic.origin.y = locator->origin.y + 1;
783 make_invisible_and_set_new_height (TUI_CMD_WIN,
784 TUI_CMD_WIN->generic.height
785 + cmd_split_diff);
786 make_visible_with_new_height (first_win);
787 make_visible_with_new_height (second_win);
788 make_visible_with_new_height (TUI_CMD_WIN);
789 if (first_win->generic.content_size <= 0)
790 tui_erase_source_content (first_win, EMPTY_SOURCE_PROMPT);
791 if (second_win->generic.content_size <= 0)
792 tui_erase_source_content (second_win, EMPTY_SOURCE_PROMPT);
793 break;
794 }
795 /* Now remove all invisible windows, and their content so that
796 they get created again when called for with the new size. */
797 for (win_type = SRC_WIN; (win_type < MAX_MAJOR_WINDOWS); win_type++)
798 {
799 if (win_type != CMD_WIN
800 && (tui_win_list[win_type] != NULL)
801 && !tui_win_list[win_type]->generic.is_visible)
802 {
803 tui_free_window (tui_win_list[win_type]);
804 tui_win_list[win_type] = (struct tui_win_info *) NULL;
805 }
806 }
807 /* Turn keypad back on, unless focus is in the command
808 window. */
809 if (win_with_focus != TUI_CMD_WIN)
810 keypad (TUI_CMD_WIN->generic.handle, TRUE);
811 }
812 }
813
814 #ifdef SIGWINCH
815 /* SIGWINCH signal handler for the tui. This signal handler is always
816 called, even when the readline package clears signals because it is
817 set as the old_sigwinch() (TUI only). */
818 static void
819 tui_sigwinch_handler (int signal)
820 {
821 /* Say that a resize was done so that the readline can do it later
822 when appropriate. */
823 tui_set_win_resized_to (TRUE);
824 }
825 #endif
826
827 /* Initializes SIGWINCH signal handler for the tui. */
828 void
829 tui_initialize_win (void)
830 {
831 #ifdef SIGWINCH
832 #ifdef HAVE_SIGACTION
833 struct sigaction old_winch;
834
835 memset (&old_winch, 0, sizeof (old_winch));
836 old_winch.sa_handler = &tui_sigwinch_handler;
837 #ifdef SA_RESTART
838 old_winch.sa_flags = SA_RESTART;
839 #endif
840 sigaction (SIGWINCH, &old_winch, NULL);
841 #else
842 signal (SIGWINCH, &tui_sigwinch_handler);
843 #endif
844 #endif
845 }
846
847
848 /*************************
849 ** STATIC LOCAL FUNCTIONS
850 **************************/
851
852
853 static void
854 tui_scroll_forward_command (char *arg, int from_tty)
855 {
856 int num_to_scroll = 1;
857 struct tui_win_info *win_to_scroll;
858
859 /* Make sure the curses mode is enabled. */
860 tui_enable ();
861 if (arg == (char *) NULL)
862 parse_scrolling_args (arg, &win_to_scroll, (int *) NULL);
863 else
864 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
865 tui_scroll (FORWARD_SCROLL, win_to_scroll, num_to_scroll);
866 }
867
868
869 static void
870 tui_scroll_backward_command (char *arg, int from_tty)
871 {
872 int num_to_scroll = 1;
873 struct tui_win_info *win_to_scroll;
874
875 /* Make sure the curses mode is enabled. */
876 tui_enable ();
877 if (arg == (char *) NULL)
878 parse_scrolling_args (arg, &win_to_scroll, (int *) NULL);
879 else
880 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
881 tui_scroll (BACKWARD_SCROLL, win_to_scroll, num_to_scroll);
882 }
883
884
885 static void
886 tui_scroll_left_command (char *arg, int from_tty)
887 {
888 int num_to_scroll;
889 struct tui_win_info *win_to_scroll;
890
891 /* Make sure the curses mode is enabled. */
892 tui_enable ();
893 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
894 tui_scroll (LEFT_SCROLL, win_to_scroll, num_to_scroll);
895 }
896
897
898 static void
899 tui_scroll_right_command (char *arg, int from_tty)
900 {
901 int num_to_scroll;
902 struct tui_win_info *win_to_scroll;
903
904 /* Make sure the curses mode is enabled. */
905 tui_enable ();
906 parse_scrolling_args (arg, &win_to_scroll, &num_to_scroll);
907 tui_scroll (RIGHT_SCROLL, win_to_scroll, num_to_scroll);
908 }
909
910
911 /* Set focus to the window named by 'arg'. */
912 static void
913 tui_set_focus (char *arg, int from_tty)
914 {
915 if (arg != (char *) NULL)
916 {
917 char *buf_ptr = (char *) xstrdup (arg);
918 int i;
919 struct tui_win_info *win_info = (struct tui_win_info *) NULL;
920
921 for (i = 0; (i < strlen (buf_ptr)); i++)
922 buf_ptr[i] = toupper (arg[i]);
923
924 if (subset_compare (buf_ptr, "NEXT"))
925 win_info = tui_next_win (tui_win_with_focus ());
926 else if (subset_compare (buf_ptr, "PREV"))
927 win_info = tui_prev_win (tui_win_with_focus ());
928 else
929 win_info = tui_partial_win_by_name (buf_ptr);
930
931 if (win_info == (struct tui_win_info *) NULL
932 || !win_info->generic.is_visible)
933 warning (_("Invalid window specified. \n\
934 The window name specified must be valid and visible.\n"));
935 else
936 {
937 tui_set_win_focus_to (win_info);
938 keypad (TUI_CMD_WIN->generic.handle, (win_info != TUI_CMD_WIN));
939 }
940
941 if (TUI_DATA_WIN && TUI_DATA_WIN->generic.is_visible)
942 tui_refresh_data_win ();
943 xfree (buf_ptr);
944 printf_filtered (_("Focus set to %s window.\n"),
945 tui_win_name ((struct tui_gen_win_info *)
946 tui_win_with_focus ()));
947 }
948 else
949 warning (_("Incorrect Number of Arguments.\n%s"), FOCUS_USAGE);
950 }
951
952 static void
953 tui_set_focus_command (char *arg, int from_tty)
954 {
955 /* Make sure the curses mode is enabled. */
956 tui_enable ();
957 tui_set_focus (arg, from_tty);
958 }
959
960
961 static void
962 tui_all_windows_info (char *arg, int from_tty)
963 {
964 enum tui_win_type type;
965 struct tui_win_info *win_with_focus = tui_win_with_focus ();
966
967 for (type = SRC_WIN; (type < MAX_MAJOR_WINDOWS); type++)
968 if (tui_win_list[type]
969 && tui_win_list[type]->generic.is_visible)
970 {
971 if (win_with_focus == tui_win_list[type])
972 printf_filtered (" %s\t(%d lines) <has focus>\n",
973 tui_win_name (&tui_win_list[type]->generic),
974 tui_win_list[type]->generic.height);
975 else
976 printf_filtered (" %s\t(%d lines)\n",
977 tui_win_name (&tui_win_list[type]->generic),
978 tui_win_list[type]->generic.height);
979 }
980 }
981
982
983 static void
984 tui_refresh_all_command (char *arg, int from_tty)
985 {
986 /* Make sure the curses mode is enabled. */
987 tui_enable ();
988
989 tui_refresh_all_win ();
990 }
991
992
993 /* Set the height of the specified window. */
994 static void
995 tui_set_tab_width_command (char *arg, int from_tty)
996 {
997 /* Make sure the curses mode is enabled. */
998 tui_enable ();
999 if (arg != (char *) NULL)
1000 {
1001 int ts;
1002
1003 ts = atoi (arg);
1004 if (ts > 0)
1005 {
1006 tui_set_default_tab_len (ts);
1007 /* We don't really change the height of any windows, but
1008 calling these 2 functions causes a complete regeneration
1009 and redisplay of the window's contents, which will take
1010 the new tab width into account. */
1011 if (tui_win_list[SRC_WIN]
1012 && tui_win_list[SRC_WIN]->generic.is_visible)
1013 {
1014 make_invisible_and_set_new_height (TUI_SRC_WIN,
1015 TUI_SRC_WIN->generic.height);
1016 make_visible_with_new_height (TUI_SRC_WIN);
1017 }
1018 if (tui_win_list[DISASSEM_WIN]
1019 && tui_win_list[DISASSEM_WIN]->generic.is_visible)
1020 {
1021 make_invisible_and_set_new_height (TUI_DISASM_WIN,
1022 TUI_DISASM_WIN->generic.height);
1023 make_visible_with_new_height (TUI_DISASM_WIN);
1024 }
1025 }
1026 else
1027 warning (_("Tab widths greater than 0 must be specified."));
1028 }
1029 }
1030
1031
1032 /* Set the height of the specified window. */
1033 static void
1034 tui_set_win_height (char *arg, int from_tty)
1035 {
1036 /* Make sure the curses mode is enabled. */
1037 tui_enable ();
1038 if (arg != (char *) NULL)
1039 {
1040 char *buf = xstrdup (arg);
1041 char *buf_ptr = buf;
1042 char *wname = (char *) NULL;
1043 int new_height, i;
1044 struct tui_win_info *win_info;
1045
1046 wname = buf_ptr;
1047 buf_ptr = strchr (buf_ptr, ' ');
1048 if (buf_ptr != (char *) NULL)
1049 {
1050 *buf_ptr = (char) 0;
1051
1052 /* Validate the window name. */
1053 for (i = 0; i < strlen (wname); i++)
1054 wname[i] = toupper (wname[i]);
1055 win_info = tui_partial_win_by_name (wname);
1056
1057 if (win_info == (struct tui_win_info *) NULL
1058 || !win_info->generic.is_visible)
1059 warning (_("Invalid window specified. \n\
1060 The window name specified must be valid and visible.\n"));
1061 else
1062 {
1063 /* Process the size. */
1064 while (*(++buf_ptr) == ' ')
1065 ;
1066
1067 if (*buf_ptr != (char) 0)
1068 {
1069 int negate = FALSE;
1070 int fixed_size = TRUE;
1071 int input_no;;
1072
1073 if (*buf_ptr == '+' || *buf_ptr == '-')
1074 {
1075 if (*buf_ptr == '-')
1076 negate = TRUE;
1077 fixed_size = FALSE;
1078 buf_ptr++;
1079 }
1080 input_no = atoi (buf_ptr);
1081 if (input_no > 0)
1082 {
1083 if (negate)
1084 input_no *= (-1);
1085 if (fixed_size)
1086 new_height = input_no;
1087 else
1088 new_height = win_info->generic.height + input_no;
1089
1090 /* Now change the window's height, and adjust
1091 all other windows around it. */
1092 if (tui_adjust_win_heights (win_info,
1093 new_height) == TUI_FAILURE)
1094 warning (_("Invalid window height specified.\n%s"),
1095 WIN_HEIGHT_USAGE);
1096 else
1097 tui_update_gdb_sizes ();
1098 }
1099 else
1100 warning (_("Invalid window height specified.\n%s"),
1101 WIN_HEIGHT_USAGE);
1102 }
1103 }
1104 }
1105 else
1106 printf_filtered (WIN_HEIGHT_USAGE);
1107
1108 if (buf != (char *) NULL)
1109 xfree (buf);
1110 }
1111 else
1112 printf_filtered (WIN_HEIGHT_USAGE);
1113 }
1114
1115 /* Set the height of the specified window, with va_list. */
1116 static void
1117 tui_set_win_height_command (char *arg, int from_tty)
1118 {
1119 /* Make sure the curses mode is enabled. */
1120 tui_enable ();
1121 tui_set_win_height (arg, from_tty);
1122 }
1123
1124
1125 /* XDB Compatibility command for setting the window height. This will
1126 increase or decrease the command window by the specified
1127 amount. */
1128 static void
1129 tui_xdb_set_win_height (char *arg, int from_tty)
1130 {
1131 /* Make sure the curses mode is enabled. */
1132 tui_enable ();
1133 if (arg != (char *) NULL)
1134 {
1135 int input_no = atoi (arg);
1136
1137 if (input_no > 0)
1138 { /* Add 1 for the locator. */
1139 int new_height = tui_term_height () - (input_no + 1);
1140
1141 if (!new_height_ok (tui_win_list[CMD_WIN], new_height)
1142 || tui_adjust_win_heights (tui_win_list[CMD_WIN],
1143 new_height) == TUI_FAILURE)
1144 warning (_("Invalid window height specified.\n%s"),
1145 XDBWIN_HEIGHT_USAGE);
1146 }
1147 else
1148 warning (_("Invalid window height specified.\n%s"),
1149 XDBWIN_HEIGHT_USAGE);
1150 }
1151 else
1152 warning (_("Invalid window height specified.\n%s"), XDBWIN_HEIGHT_USAGE);
1153 }
1154
1155 /* Set the height of the specified window, with va_list. */
1156 static void
1157 tui_xdb_set_win_height_command (char *arg, int from_tty)
1158 {
1159 tui_xdb_set_win_height (arg, from_tty);
1160 }
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.063342 seconds and 3 git commands to generate.