1 /* TUI window generic functions.
3 Copyright (C) 1998-2019 Free Software Foundation, Inc.
5 Contributed by Hewlett-Packard Company.
7 This file is part of GDB.
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.
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.
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/>. */
22 /* This module contains procedures for handling tui window functions
23 like resize, scrolling, scrolling, changing focus, etc.
25 Author: Susan B. Macchia */
30 #include "breakpoint.h"
32 #include "cli/cli-cmds.h"
35 #include "event-loop.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"
49 #include "gdb_curses.h"
51 #include "readline/readline.h"
55 /*******************************
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
*,
61 static enum tui_status
tui_adjust_win_heights (struct tui_win_info
*,
63 static int new_height_ok (struct tui_win_info
*, int);
64 static void tui_set_tab_width_command (const char *, int);
65 static void tui_refresh_all_command (const char *, int);
66 static void tui_set_win_height_command (const char *, int);
67 static void tui_all_windows_info (const char *, int);
68 static void tui_set_focus_command (const char *, int);
69 static void tui_scroll_forward_command (const char *, int);
70 static void tui_scroll_backward_command (const char *, int);
71 static void tui_scroll_left_command (const char *, int);
72 static void tui_scroll_right_command (const char *, int);
73 static void parse_scrolling_args (const char *,
74 struct tui_win_info
**,
78 /***************************************
80 ***************************************/
81 #define WIN_HEIGHT_USAGE "Usage: winheight WINDOW-NAME [+ | -] NUM-LINES\n"
82 #define FOCUS_USAGE "Usage: focus [WINDOW-NAME | next | prev]\n"
84 /***************************************
86 ***************************************/
89 # define ACS_LRCORNER '+'
92 # define ACS_LLCORNER '+'
95 # define ACS_ULCORNER '+'
98 # define ACS_URCORNER '+'
101 # define ACS_HLINE '-'
104 # define ACS_VLINE '|'
107 /* Possible values for tui-border-kind variable. */
108 static const char *const tui_border_kind_enums
[] = {
115 /* Possible values for tui-border-mode and tui-active-border-mode. */
116 static const char *const tui_border_mode_enums
[] = {
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
},
141 { "half-standout", A_DIM
| A_STANDOUT
},
143 { "bold-standout", A_BOLD
| A_STANDOUT
},
145 { "normal", A_NORMAL
}
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
[] = {
160 struct tui_translate tui_border_kind_translate_hline
[] = {
168 struct tui_translate tui_border_kind_translate_ulcorner
[] = {
176 struct tui_translate tui_border_kind_translate_urcorner
[] = {
184 struct tui_translate tui_border_kind_translate_llcorner
[] = {
192 struct tui_translate tui_border_kind_translate_lrcorner
[] = {
201 /* Tui configuration variables controlled with set/show command. */
202 const char *tui_active_border_mode
= "bold-standout";
204 show_tui_active_border_mode (struct ui_file
*file
,
206 struct cmd_list_element
*c
,
209 fprintf_filtered (file
, _("\
210 The attribute mode to use for the active TUI window border is \"%s\".\n"),
214 const char *tui_border_mode
= "normal";
216 show_tui_border_mode (struct ui_file
*file
,
218 struct cmd_list_element
*c
,
221 fprintf_filtered (file
, _("\
222 The attribute mode to use for the TUI window borders is \"%s\".\n"),
226 const char *tui_border_kind
= "acs";
228 show_tui_border_kind (struct ui_file
*file
,
230 struct cmd_list_element
*c
,
233 fprintf_filtered (file
, _("The kind of border for TUI windows is \"%s\".\n"),
238 /* Tui internal configuration variables. These variables are updated
239 by tui_update_variables to reflect the tui configuration
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
;
248 int tui_border_attrs
;
249 int tui_active_border_attrs
;
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
)
258 if (name
&& strcmp (table
->name
, name
) == 0)
263 /* Not found, return default entry. */
268 /* Update the tui internal configuration according to gdb settings.
269 Returns 1 if the configuration has changed and the screen should
272 tui_update_variables (void)
275 struct tui_translate
*entry
;
277 entry
= translate (tui_border_mode
, tui_border_mode_translate
);
278 if (tui_border_attrs
!= entry
->value
)
280 tui_border_attrs
= entry
->value
;
283 entry
= translate (tui_active_border_mode
, tui_border_mode_translate
);
284 if (tui_active_border_attrs
!= entry
->value
)
286 tui_active_border_attrs
= entry
->value
;
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
)
296 tui_border_lrcorner
= (entry
->value
< 0) ? ACS_LRCORNER
: entry
->value
;
299 entry
= translate (tui_border_kind
, tui_border_kind_translate_llcorner
);
300 tui_border_llcorner
= (entry
->value
< 0) ? ACS_LLCORNER
: entry
->value
;
302 entry
= translate (tui_border_kind
, tui_border_kind_translate_ulcorner
);
303 tui_border_ulcorner
= (entry
->value
< 0) ? ACS_ULCORNER
: entry
->value
;
305 entry
= translate (tui_border_kind
, tui_border_kind_translate_urcorner
);
306 tui_border_urcorner
= (entry
->value
< 0) ? ACS_URCORNER
: entry
->value
;
308 entry
= translate (tui_border_kind
, tui_border_kind_translate_hline
);
309 tui_border_hline
= (entry
->value
< 0) ? ACS_HLINE
: entry
->value
;
311 entry
= translate (tui_border_kind
, tui_border_kind_translate_vline
);
312 tui_border_vline
= (entry
->value
< 0) ? ACS_VLINE
: entry
->value
;
318 set_tui_cmd (const char *args
, int from_tty
)
323 show_tui_cmd (const char *args
, int from_tty
)
327 static struct cmd_list_element
*tuilist
;
330 tui_command (const char *args
, int from_tty
)
332 printf_unfiltered (_("\"tui\" must be followed by the name of a "
334 help_list (tuilist
, "tui ", all_commands
, gdb_stdout
);
337 struct cmd_list_element
**
338 tui_get_cmd_list (void)
341 add_prefix_cmd ("tui", class_tui
, tui_command
,
342 _("Text User Interface commands."),
343 &tuilist
, "tui ", 0, &cmdlist
);
347 /* The set_func hook of "set tui ..." commands that affect the window
348 borders on the TUI display. */
350 tui_set_var_cmd (const char *null_args
,
351 int from_tty
, struct cmd_list_element
*c
)
353 if (tui_update_variables () && tui_active
)
354 tui_rehighlight_all ();
357 /* Generic window name completion function. Complete window name pointed
358 to by TEXT and WORD. If INCLUDE_NEXT_PREV_P is true then the special
359 window names 'next' and 'prev' will also be considered as possible
360 completions of the window name. */
363 window_name_completer (completion_tracker
&tracker
,
364 int include_next_prev_p
,
365 const char *text
, const char *word
)
367 std::vector
<const char *> completion_name_vec
;
370 for (win_type
= SRC_WIN
; win_type
< MAX_MAJOR_WINDOWS
; win_type
++)
372 const char *completion_name
= NULL
;
374 /* We can't focus on an invisible window. */
375 if (tui_win_list
[win_type
] == NULL
376 || !tui_win_list
[win_type
]->generic
.is_visible
)
379 completion_name
= tui_win_name (&tui_win_list
[win_type
]->generic
);
380 gdb_assert (completion_name
!= NULL
);
381 completion_name_vec
.push_back (completion_name
);
384 /* If no windows are considered visible then the TUI has not yet been
385 initialized. But still "focus src" and "focus cmd" will work because
386 invoking the focus command will entail initializing the TUI which sets the
387 default layout to SRC_COMMAND. */
388 if (completion_name_vec
.empty ())
390 completion_name_vec
.push_back (SRC_NAME
);
391 completion_name_vec
.push_back (CMD_NAME
);
394 if (include_next_prev_p
)
396 completion_name_vec
.push_back ("next");
397 completion_name_vec
.push_back ("prev");
401 completion_name_vec
.push_back (NULL
);
402 complete_on_enum (tracker
, completion_name_vec
.data (), text
, word
);
405 /* Complete possible window names to focus on. TEXT is the complete text
406 entered so far, WORD is the word currently being completed. */
409 focus_completer (struct cmd_list_element
*ignore
,
410 completion_tracker
&tracker
,
411 const char *text
, const char *word
)
413 window_name_completer (tracker
, 1, text
, word
);
416 /* Complete possible window names for winheight command. TEXT is the
417 complete text entered so far, WORD is the word currently being
421 winheight_completer (struct cmd_list_element
*ignore
,
422 completion_tracker
&tracker
,
423 const char *text
, const char *word
)
425 /* The first word is the window name. That we can complete. Subsequent
426 words can't be completed. */
430 window_name_completer (tracker
, 0, text
, word
);
433 /* Update gdb's knowledge of the terminal size. */
435 tui_update_gdb_sizes (void)
441 width
= TUI_CMD_WIN
->generic
.width
;
442 height
= TUI_CMD_WIN
->generic
.height
;
446 width
= tui_term_width ();
447 height
= tui_term_height ();
450 set_screen_width_and_height (width
, height
);
454 /* Set the logical focus to win_info. */
456 tui_set_win_focus_to (struct tui_win_info
*win_info
)
458 if (win_info
!= NULL
)
460 struct tui_win_info
*win_with_focus
= tui_win_with_focus ();
462 if (win_with_focus
!= NULL
463 && win_with_focus
->generic
.type
!= CMD_WIN
)
464 tui_unhighlight_win (win_with_focus
);
465 tui_set_win_with_focus (win_info
);
466 if (win_info
->generic
.type
!= CMD_WIN
)
467 tui_highlight_win (win_info
);
473 tui_scroll_forward (struct tui_win_info
*win_to_scroll
,
476 if (win_to_scroll
!= TUI_CMD_WIN
)
478 int _num_to_scroll
= num_to_scroll
;
480 if (num_to_scroll
== 0)
481 _num_to_scroll
= win_to_scroll
->generic
.height
- 3;
483 /* If we are scrolling the source or disassembly window, do a
484 "psuedo" scroll since not all of the source is in memory,
485 only what is in the viewport. If win_to_scroll is the
486 command window do nothing since the term should handle
488 if (win_to_scroll
== TUI_SRC_WIN
)
489 tui_vertical_source_scroll (FORWARD_SCROLL
, _num_to_scroll
);
490 else if (win_to_scroll
== TUI_DISASM_WIN
)
491 tui_vertical_disassem_scroll (FORWARD_SCROLL
, _num_to_scroll
);
492 else if (win_to_scroll
== TUI_DATA_WIN
)
493 tui_vertical_data_scroll (FORWARD_SCROLL
, _num_to_scroll
);
498 tui_scroll_backward (struct tui_win_info
*win_to_scroll
,
501 if (win_to_scroll
!= TUI_CMD_WIN
)
503 int _num_to_scroll
= num_to_scroll
;
505 if (num_to_scroll
== 0)
506 _num_to_scroll
= win_to_scroll
->generic
.height
- 3;
508 /* If we are scrolling the source or disassembly window, do a
509 "psuedo" scroll since not all of the source is in memory,
510 only what is in the viewport. If win_to_scroll is the
511 command window do nothing since the term should handle
513 if (win_to_scroll
== TUI_SRC_WIN
)
514 tui_vertical_source_scroll (BACKWARD_SCROLL
, _num_to_scroll
);
515 else if (win_to_scroll
== TUI_DISASM_WIN
)
516 tui_vertical_disassem_scroll (BACKWARD_SCROLL
, _num_to_scroll
);
517 else if (win_to_scroll
== TUI_DATA_WIN
)
518 tui_vertical_data_scroll (BACKWARD_SCROLL
, _num_to_scroll
);
524 tui_scroll_left (struct tui_win_info
*win_to_scroll
,
527 if (win_to_scroll
!= TUI_CMD_WIN
)
529 int _num_to_scroll
= num_to_scroll
;
531 if (_num_to_scroll
== 0)
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 command
537 window do nothing since the term should handle it. */
538 if (win_to_scroll
== TUI_SRC_WIN
539 || win_to_scroll
== TUI_DISASM_WIN
)
540 tui_horizontal_source_scroll (win_to_scroll
, LEFT_SCROLL
,
547 tui_scroll_right (struct tui_win_info
*win_to_scroll
,
550 if (win_to_scroll
!= TUI_CMD_WIN
)
552 int _num_to_scroll
= num_to_scroll
;
554 if (_num_to_scroll
== 0)
557 /* If we are scrolling the source or disassembly window, do a
558 "psuedo" scroll since not all of the source is in memory,
559 only what is in the viewport. If win_to_scroll is the command
560 window do nothing since the term should handle it. */
561 if (win_to_scroll
== TUI_SRC_WIN
562 || win_to_scroll
== TUI_DISASM_WIN
)
563 tui_horizontal_source_scroll (win_to_scroll
, RIGHT_SCROLL
,
569 /* Scroll a window. Arguments are passed through a va_list. */
571 tui_scroll (enum tui_scroll_direction direction
,
572 struct tui_win_info
*win_to_scroll
,
578 tui_scroll_forward (win_to_scroll
, num_to_scroll
);
580 case BACKWARD_SCROLL
:
581 tui_scroll_backward (win_to_scroll
, num_to_scroll
);
584 tui_scroll_left (win_to_scroll
, num_to_scroll
);
587 tui_scroll_right (win_to_scroll
, num_to_scroll
);
596 tui_refresh_all_win (void)
600 clearok (curscr
, TRUE
);
601 tui_refresh_all (tui_win_list
);
602 for (type
= SRC_WIN
; type
< MAX_MAJOR_WINDOWS
; type
++)
604 if (tui_win_list
[type
]
605 && tui_win_list
[type
]->generic
.is_visible
)
611 tui_show_source_content (tui_win_list
[type
]);
612 tui_check_and_display_highlight_if_needed (tui_win_list
[type
]);
613 tui_erase_exec_info_content (tui_win_list
[type
]);
614 tui_update_exec_info (tui_win_list
[type
]);
617 tui_refresh_data_win ();
624 tui_show_locator_content ();
628 tui_rehighlight_all (void)
632 for (type
= SRC_WIN
; type
< MAX_MAJOR_WINDOWS
; type
++)
633 tui_check_and_display_highlight_if_needed (tui_win_list
[type
]);
636 /* Resize all the windows based on the terminal size. This function
637 gets called from within the readline sinwinch handler. */
639 tui_resize_all (void)
641 int height_diff
, width_diff
;
642 int screenheight
, screenwidth
;
644 rl_get_screen_size (&screenheight
, &screenwidth
);
645 width_diff
= screenwidth
- tui_term_width ();
646 height_diff
= screenheight
- tui_term_height ();
647 if (height_diff
|| width_diff
)
649 enum tui_layout_type cur_layout
= tui_current_layout ();
650 struct tui_win_info
*win_with_focus
= tui_win_with_focus ();
651 struct tui_win_info
*first_win
;
652 struct tui_win_info
*second_win
;
653 struct tui_gen_win_info
*locator
= tui_locator_win_info_ptr ();
655 int new_height
, split_diff
, cmd_split_diff
, num_wins_displayed
= 2;
657 #ifdef HAVE_RESIZE_TERM
658 resize_term (screenheight
, screenwidth
);
660 /* Turn keypad off while we resize. */
661 if (win_with_focus
!= TUI_CMD_WIN
)
662 keypad (TUI_CMD_WIN
->generic
.handle
, FALSE
);
663 tui_update_gdb_sizes ();
664 tui_set_term_height_to (screenheight
);
665 tui_set_term_width_to (screenwidth
);
666 if (cur_layout
== SRC_DISASSEM_COMMAND
667 || cur_layout
== SRC_DATA_COMMAND
668 || cur_layout
== DISASSEM_DATA_COMMAND
)
669 num_wins_displayed
++;
670 split_diff
= height_diff
/ num_wins_displayed
;
671 cmd_split_diff
= split_diff
;
672 if (height_diff
% num_wins_displayed
)
679 /* Now adjust each window. */
680 /* erase + clearok are used instead of a straightforward clear as
681 AIX 5.3 does not define clear. */
683 clearok (curscr
, TRUE
);
688 case DISASSEM_COMMAND
:
689 first_win
= tui_source_windows ()->list
[0];
690 first_win
->generic
.width
+= width_diff
;
691 locator
->width
+= width_diff
;
692 /* Check for invalid heights. */
693 if (height_diff
== 0)
694 new_height
= first_win
->generic
.height
;
695 else if ((first_win
->generic
.height
+ split_diff
) >=
696 (screenheight
- MIN_CMD_WIN_HEIGHT
- 1))
697 new_height
= screenheight
- MIN_CMD_WIN_HEIGHT
- 1;
698 else if ((first_win
->generic
.height
+ split_diff
) <= 0)
699 new_height
= MIN_WIN_HEIGHT
;
701 new_height
= first_win
->generic
.height
+ split_diff
;
703 locator
->origin
.y
= new_height
+ 1;
704 make_invisible_and_set_new_height (first_win
, new_height
);
705 TUI_CMD_WIN
->generic
.origin
.y
= locator
->origin
.y
+ 1;
706 TUI_CMD_WIN
->generic
.width
+= width_diff
;
707 new_height
= screenheight
- TUI_CMD_WIN
->generic
.origin
.y
;
708 make_invisible_and_set_new_height (TUI_CMD_WIN
, new_height
);
709 make_visible_with_new_height (first_win
);
710 make_visible_with_new_height (TUI_CMD_WIN
);
711 if (first_win
->generic
.content_size
<= 0)
712 tui_erase_source_content (first_win
, EMPTY_SOURCE_PROMPT
);
715 if (cur_layout
== SRC_DISASSEM_COMMAND
)
717 first_win
= TUI_SRC_WIN
;
718 first_win
->generic
.width
+= width_diff
;
719 second_win
= TUI_DISASM_WIN
;
720 second_win
->generic
.width
+= width_diff
;
724 first_win
= TUI_DATA_WIN
;
725 first_win
->generic
.width
+= width_diff
;
726 second_win
= tui_source_windows ()->list
[0];
727 second_win
->generic
.width
+= width_diff
;
729 /* Change the first window's height/width. */
730 /* Check for invalid heights. */
731 if (height_diff
== 0)
732 new_height
= first_win
->generic
.height
;
733 else if ((first_win
->generic
.height
+
734 second_win
->generic
.height
+ (split_diff
* 2)) >=
735 (screenheight
- MIN_CMD_WIN_HEIGHT
- 1))
736 new_height
= (screenheight
- MIN_CMD_WIN_HEIGHT
- 1) / 2;
737 else if ((first_win
->generic
.height
+ split_diff
) <= 0)
738 new_height
= MIN_WIN_HEIGHT
;
740 new_height
= first_win
->generic
.height
+ split_diff
;
741 make_invisible_and_set_new_height (first_win
, new_height
);
743 locator
->width
+= width_diff
;
745 /* Change the second window's height/width. */
746 /* Check for invalid heights. */
747 if (height_diff
== 0)
748 new_height
= second_win
->generic
.height
;
749 else if ((first_win
->generic
.height
+
750 second_win
->generic
.height
+ (split_diff
* 2)) >=
751 (screenheight
- MIN_CMD_WIN_HEIGHT
- 1))
753 new_height
= screenheight
- MIN_CMD_WIN_HEIGHT
- 1;
755 new_height
= (new_height
/ 2) + 1;
759 else if ((second_win
->generic
.height
+ split_diff
) <= 0)
760 new_height
= MIN_WIN_HEIGHT
;
762 new_height
= second_win
->generic
.height
+ split_diff
;
763 second_win
->generic
.origin
.y
= first_win
->generic
.height
- 1;
764 make_invisible_and_set_new_height (second_win
, new_height
);
766 /* Change the command window's height/width. */
767 TUI_CMD_WIN
->generic
.origin
.y
= locator
->origin
.y
+ 1;
768 make_invisible_and_set_new_height (TUI_CMD_WIN
,
769 TUI_CMD_WIN
->generic
.height
771 make_visible_with_new_height (first_win
);
772 make_visible_with_new_height (second_win
);
773 make_visible_with_new_height (TUI_CMD_WIN
);
774 if (first_win
->generic
.content_size
<= 0)
775 tui_erase_source_content (first_win
, EMPTY_SOURCE_PROMPT
);
776 if (second_win
->generic
.content_size
<= 0)
777 tui_erase_source_content (second_win
, EMPTY_SOURCE_PROMPT
);
780 /* Now remove all invisible windows, and their content so that
781 they get created again when called for with the new size. */
782 for (win_type
= SRC_WIN
; (win_type
< MAX_MAJOR_WINDOWS
); win_type
++)
784 if (win_type
!= CMD_WIN
785 && (tui_win_list
[win_type
] != NULL
)
786 && !tui_win_list
[win_type
]->generic
.is_visible
)
788 tui_free_window (tui_win_list
[win_type
]);
789 tui_win_list
[win_type
] = NULL
;
792 /* Turn keypad back on, unless focus is in the command
794 if (win_with_focus
!= TUI_CMD_WIN
)
795 keypad (TUI_CMD_WIN
->generic
.handle
, TRUE
);
800 /* Token for use by TUI's asynchronous SIGWINCH handler. */
801 static struct async_signal_handler
*tui_sigwinch_token
;
803 /* TUI's SIGWINCH signal handler. */
805 tui_sigwinch_handler (int signal
)
807 mark_async_signal_handler (tui_sigwinch_token
);
808 tui_set_win_resized_to (TRUE
);
811 /* Callback for asynchronously resizing TUI following a SIGWINCH signal. */
813 tui_async_resize_screen (gdb_client_data arg
)
815 rl_resize_terminal ();
819 int screen_height
, screen_width
;
821 rl_get_screen_size (&screen_height
, &screen_width
);
822 set_screen_width_and_height (screen_width
, screen_height
);
824 /* win_resized is left set so that the next call to tui_enable()
825 resizes the TUI windows. */
829 tui_set_win_resized_to (FALSE
);
831 tui_refresh_all_win ();
832 tui_update_gdb_sizes ();
833 tui_redisplay_readline ();
838 /* Initialize TUI's SIGWINCH signal handler. Note that the handler is not
839 uninstalled when we exit TUI, so the handler should not assume that TUI is
842 tui_initialize_win (void)
846 = create_async_signal_handler (tui_async_resize_screen
, NULL
);
849 #ifdef HAVE_SIGACTION
850 struct sigaction old_winch
;
852 memset (&old_winch
, 0, sizeof (old_winch
));
853 old_winch
.sa_handler
= &tui_sigwinch_handler
;
855 old_winch
.sa_flags
= SA_RESTART
;
857 sigaction (SIGWINCH
, &old_winch
, NULL
);
859 signal (SIGWINCH
, &tui_sigwinch_handler
);
866 /*************************
867 ** STATIC LOCAL FUNCTIONS
868 **************************/
872 tui_scroll_forward_command (const char *arg
, int from_tty
)
874 int num_to_scroll
= 1;
875 struct tui_win_info
*win_to_scroll
;
877 /* Make sure the curses mode is enabled. */
880 parse_scrolling_args (arg
, &win_to_scroll
, (int *) NULL
);
882 parse_scrolling_args (arg
, &win_to_scroll
, &num_to_scroll
);
883 tui_scroll (FORWARD_SCROLL
, win_to_scroll
, num_to_scroll
);
888 tui_scroll_backward_command (const char *arg
, int from_tty
)
890 int num_to_scroll
= 1;
891 struct tui_win_info
*win_to_scroll
;
893 /* Make sure the curses mode is enabled. */
896 parse_scrolling_args (arg
, &win_to_scroll
, (int *) NULL
);
898 parse_scrolling_args (arg
, &win_to_scroll
, &num_to_scroll
);
899 tui_scroll (BACKWARD_SCROLL
, win_to_scroll
, num_to_scroll
);
904 tui_scroll_left_command (const char *arg
, int from_tty
)
907 struct tui_win_info
*win_to_scroll
;
909 /* Make sure the curses mode is enabled. */
911 parse_scrolling_args (arg
, &win_to_scroll
, &num_to_scroll
);
912 tui_scroll (LEFT_SCROLL
, win_to_scroll
, num_to_scroll
);
917 tui_scroll_right_command (const char *arg
, int from_tty
)
920 struct tui_win_info
*win_to_scroll
;
922 /* Make sure the curses mode is enabled. */
924 parse_scrolling_args (arg
, &win_to_scroll
, &num_to_scroll
);
925 tui_scroll (RIGHT_SCROLL
, win_to_scroll
, num_to_scroll
);
929 /* Set focus to the window named by 'arg'. */
931 tui_set_focus (const char *arg
, int from_tty
)
935 char *buf_ptr
= xstrdup (arg
);
937 struct tui_win_info
*win_info
= NULL
;
939 for (i
= 0; (i
< strlen (buf_ptr
)); i
++)
940 buf_ptr
[i
] = tolower (arg
[i
]);
942 if (subset_compare (buf_ptr
, "next"))
943 win_info
= tui_next_win (tui_win_with_focus ());
944 else if (subset_compare (buf_ptr
, "prev"))
945 win_info
= tui_prev_win (tui_win_with_focus ());
947 win_info
= tui_partial_win_by_name (buf_ptr
);
949 if (win_info
== (struct tui_win_info
*) NULL
950 || !win_info
->generic
.is_visible
)
951 warning (_("Invalid window specified. \n\
952 The window name specified must be valid and visible.\n"));
955 tui_set_win_focus_to (win_info
);
956 keypad (TUI_CMD_WIN
->generic
.handle
, (win_info
!= TUI_CMD_WIN
));
959 if (TUI_DATA_WIN
&& TUI_DATA_WIN
->generic
.is_visible
)
960 tui_refresh_data_win ();
962 printf_filtered (_("Focus set to %s window.\n"),
963 tui_win_name (&tui_win_with_focus ()->generic
));
966 warning (_("Incorrect Number of Arguments.\n%s"), FOCUS_USAGE
);
970 tui_set_focus_command (const char *arg
, int from_tty
)
972 /* Make sure the curses mode is enabled. */
974 tui_set_focus (arg
, from_tty
);
979 tui_all_windows_info (const char *arg
, int from_tty
)
982 struct tui_win_info
*win_with_focus
= tui_win_with_focus ();
984 for (type
= SRC_WIN
; (type
< MAX_MAJOR_WINDOWS
); type
++)
985 if (tui_win_list
[type
]
986 && tui_win_list
[type
]->generic
.is_visible
)
988 if (win_with_focus
== tui_win_list
[type
])
989 printf_filtered (" %s\t(%d lines) <has focus>\n",
990 tui_win_name (&tui_win_list
[type
]->generic
),
991 tui_win_list
[type
]->generic
.height
);
993 printf_filtered (" %s\t(%d lines)\n",
994 tui_win_name (&tui_win_list
[type
]->generic
),
995 tui_win_list
[type
]->generic
.height
);
1001 tui_refresh_all_command (const char *arg
, int from_tty
)
1003 /* Make sure the curses mode is enabled. */
1006 tui_refresh_all_win ();
1009 /* The tab width that should be used by the TUI. */
1011 unsigned int tui_tab_width
= DEFAULT_TAB_LEN
;
1013 /* The tab width as set by the user. */
1015 static unsigned int internal_tab_width
= DEFAULT_TAB_LEN
;
1017 /* After the tab width is set, call this to update the relevant
1023 /* We don't really change the height of any windows, but
1024 calling these 2 functions causes a complete regeneration
1025 and redisplay of the window's contents, which will take
1026 the new tab width into account. */
1027 if (tui_win_list
[SRC_WIN
]
1028 && tui_win_list
[SRC_WIN
]->generic
.is_visible
)
1030 make_invisible_and_set_new_height (TUI_SRC_WIN
,
1031 TUI_SRC_WIN
->generic
.height
);
1032 make_visible_with_new_height (TUI_SRC_WIN
);
1034 if (tui_win_list
[DISASSEM_WIN
]
1035 && tui_win_list
[DISASSEM_WIN
]->generic
.is_visible
)
1037 make_invisible_and_set_new_height (TUI_DISASM_WIN
,
1038 TUI_DISASM_WIN
->generic
.height
);
1039 make_visible_with_new_height (TUI_DISASM_WIN
);
1043 /* Callback for "set tui tab-width". */
1046 tui_set_tab_width (const char *ignore
,
1047 int from_tty
, struct cmd_list_element
*c
)
1049 if (internal_tab_width
== 0)
1051 internal_tab_width
= tui_tab_width
;
1052 error (_("Tab width must not be 0"));
1055 tui_tab_width
= internal_tab_width
;
1056 update_tab_width ();
1059 /* Callback for "show tui tab-width". */
1062 tui_show_tab_width (struct ui_file
*file
, int from_tty
,
1063 struct cmd_list_element
*c
, const char *value
)
1065 fprintf_filtered (gdb_stdout
, _("TUI tab width is %s spaces.\n"), value
);
1069 /* Set the tab width of the specified window. */
1071 tui_set_tab_width_command (const char *arg
, int from_tty
)
1073 /* Make sure the curses mode is enabled. */
1081 warning (_("Tab widths greater than 0 must be specified."));
1084 internal_tab_width
= ts
;
1087 update_tab_width ();
1093 /* Set the height of the specified window. */
1095 tui_set_win_height (const char *arg
, int from_tty
)
1097 /* Make sure the curses mode is enabled. */
1101 std::string copy
= arg
;
1102 char *buf
= ©
[0];
1103 char *buf_ptr
= buf
;
1106 struct tui_win_info
*win_info
;
1109 buf_ptr
= strchr (buf_ptr
, ' ');
1110 if (buf_ptr
!= NULL
)
1112 *buf_ptr
= (char) 0;
1114 /* Validate the window name. */
1115 for (i
= 0; i
< strlen (wname
); i
++)
1116 wname
[i
] = tolower (wname
[i
]);
1117 win_info
= tui_partial_win_by_name (wname
);
1119 if (win_info
== (struct tui_win_info
*) NULL
1120 || !win_info
->generic
.is_visible
)
1121 warning (_("Invalid window specified. \n\
1122 The window name specified must be valid and visible.\n"));
1125 /* Process the size. */
1126 while (*(++buf_ptr
) == ' ')
1129 if (*buf_ptr
!= (char) 0)
1132 int fixed_size
= TRUE
;
1135 if (*buf_ptr
== '+' || *buf_ptr
== '-')
1137 if (*buf_ptr
== '-')
1142 input_no
= atoi (buf_ptr
);
1148 new_height
= input_no
;
1150 new_height
= win_info
->generic
.height
+ input_no
;
1152 /* Now change the window's height, and adjust
1153 all other windows around it. */
1154 if (tui_adjust_win_heights (win_info
,
1155 new_height
) == TUI_FAILURE
)
1156 warning (_("Invalid window height specified.\n%s"),
1159 tui_update_gdb_sizes ();
1162 warning (_("Invalid window height specified.\n%s"),
1168 printf_filtered (WIN_HEIGHT_USAGE
);
1171 printf_filtered (WIN_HEIGHT_USAGE
);
1174 /* Set the height of the specified window, with va_list. */
1176 tui_set_win_height_command (const char *arg
, int from_tty
)
1178 /* Make sure the curses mode is enabled. */
1180 tui_set_win_height (arg
, from_tty
);
1183 /* Function to adjust all window heights around the primary. */
1184 static enum tui_status
1185 tui_adjust_win_heights (struct tui_win_info
*primary_win_info
,
1188 enum tui_status status
= TUI_FAILURE
;
1190 if (new_height_ok (primary_win_info
, new_height
))
1192 status
= TUI_SUCCESS
;
1193 if (new_height
!= primary_win_info
->generic
.height
)
1196 struct tui_win_info
*win_info
;
1197 struct tui_gen_win_info
*locator
= tui_locator_win_info_ptr ();
1198 enum tui_layout_type cur_layout
= tui_current_layout ();
1200 diff
= (new_height
- primary_win_info
->generic
.height
) * (-1);
1201 if (cur_layout
== SRC_COMMAND
1202 || cur_layout
== DISASSEM_COMMAND
)
1204 struct tui_win_info
*src_win_info
;
1206 make_invisible_and_set_new_height (primary_win_info
, new_height
);
1207 if (primary_win_info
->generic
.type
== CMD_WIN
)
1209 win_info
= (tui_source_windows ())->list
[0];
1210 src_win_info
= win_info
;
1214 win_info
= tui_win_list
[CMD_WIN
];
1215 src_win_info
= primary_win_info
;
1217 make_invisible_and_set_new_height (win_info
,
1218 win_info
->generic
.height
+ diff
);
1219 TUI_CMD_WIN
->generic
.origin
.y
= locator
->origin
.y
+ 1;
1220 make_visible_with_new_height (win_info
);
1221 make_visible_with_new_height (primary_win_info
);
1222 if (src_win_info
->generic
.content_size
<= 0)
1223 tui_erase_source_content (src_win_info
, EMPTY_SOURCE_PROMPT
);
1227 struct tui_win_info
*first_win
;
1228 struct tui_win_info
*second_win
;
1230 if (cur_layout
== SRC_DISASSEM_COMMAND
)
1232 first_win
= TUI_SRC_WIN
;
1233 second_win
= TUI_DISASM_WIN
;
1237 first_win
= TUI_DATA_WIN
;
1238 second_win
= (tui_source_windows ())->list
[0];
1240 if (primary_win_info
== TUI_CMD_WIN
)
1241 { /* Split the change in height accross the 1st & 2nd
1242 windows, adjusting them as well. */
1243 /* Subtract the locator. */
1244 int first_split_diff
= diff
/ 2;
1245 int second_split_diff
= first_split_diff
;
1249 if (first_win
->generic
.height
>
1250 second_win
->generic
.height
)
1258 second_split_diff
--;
1260 second_split_diff
++;
1263 /* Make sure that the minimum hieghts are
1265 while ((first_win
->generic
.height
+ first_split_diff
) < 3)
1268 second_split_diff
--;
1270 while ((second_win
->generic
.height
+ second_split_diff
) < 3)
1272 second_split_diff
++;
1275 make_invisible_and_set_new_height (
1277 first_win
->generic
.height
+ first_split_diff
);
1278 second_win
->generic
.origin
.y
= first_win
->generic
.height
- 1;
1279 make_invisible_and_set_new_height (second_win
,
1280 second_win
->generic
.height
1281 + second_split_diff
);
1282 TUI_CMD_WIN
->generic
.origin
.y
= locator
->origin
.y
+ 1;
1283 make_invisible_and_set_new_height (TUI_CMD_WIN
, new_height
);
1287 if ((TUI_CMD_WIN
->generic
.height
+ diff
) < 1)
1288 { /* If there is no way to increase the command
1289 window take real estate from the 1st or 2nd
1291 if ((TUI_CMD_WIN
->generic
.height
+ diff
) < 1)
1295 for (i
= TUI_CMD_WIN
->generic
.height
+ diff
;
1297 if (primary_win_info
== first_win
)
1298 second_win
->generic
.height
--;
1300 first_win
->generic
.height
--;
1303 if (primary_win_info
== first_win
)
1304 make_invisible_and_set_new_height (first_win
, new_height
);
1306 make_invisible_and_set_new_height (
1308 first_win
->generic
.height
);
1309 second_win
->generic
.origin
.y
= first_win
->generic
.height
- 1;
1310 if (primary_win_info
== second_win
)
1311 make_invisible_and_set_new_height (second_win
, new_height
);
1313 make_invisible_and_set_new_height (
1314 second_win
, second_win
->generic
.height
);
1315 TUI_CMD_WIN
->generic
.origin
.y
= locator
->origin
.y
+ 1;
1316 if ((TUI_CMD_WIN
->generic
.height
+ diff
) < 1)
1317 make_invisible_and_set_new_height (TUI_CMD_WIN
, 1);
1319 make_invisible_and_set_new_height (TUI_CMD_WIN
,
1320 TUI_CMD_WIN
->generic
.height
+ diff
);
1322 make_visible_with_new_height (TUI_CMD_WIN
);
1323 make_visible_with_new_height (second_win
);
1324 make_visible_with_new_height (first_win
);
1325 if (first_win
->generic
.content_size
<= 0)
1326 tui_erase_source_content (first_win
, EMPTY_SOURCE_PROMPT
);
1327 if (second_win
->generic
.content_size
<= 0)
1328 tui_erase_source_content (second_win
, EMPTY_SOURCE_PROMPT
);
1337 /* Function make the target window (and auxillary windows associated
1338 with the targer) invisible, and set the new height and
1341 make_invisible_and_set_new_height (struct tui_win_info
*win_info
,
1345 struct tui_gen_win_info
*gen_win_info
;
1347 tui_make_invisible (&win_info
->generic
);
1348 win_info
->generic
.height
= height
;
1350 win_info
->generic
.viewport_height
= height
- 1;
1352 win_info
->generic
.viewport_height
= height
;
1353 if (win_info
!= TUI_CMD_WIN
)
1354 win_info
->generic
.viewport_height
--;
1356 /* Now deal with the auxillary windows associated with win_info. */
1357 switch (win_info
->generic
.type
)
1361 gen_win_info
= win_info
->detail
.source_info
.execution_info
;
1362 tui_make_invisible (gen_win_info
);
1363 gen_win_info
->height
= height
;
1364 gen_win_info
->origin
.y
= win_info
->generic
.origin
.y
;
1366 gen_win_info
->viewport_height
= height
- 1;
1368 gen_win_info
->viewport_height
= height
;
1369 if (win_info
!= TUI_CMD_WIN
)
1370 gen_win_info
->viewport_height
--;
1372 if (tui_win_has_locator (win_info
))
1374 gen_win_info
= tui_locator_win_info_ptr ();
1375 tui_make_invisible (gen_win_info
);
1376 gen_win_info
->origin
.y
= win_info
->generic
.origin
.y
+ height
;
1380 /* Delete all data item windows. */
1381 for (i
= 0; i
< win_info
->generic
.content_size
; i
++)
1384 = &win_info
->generic
.content
[i
]->which_element
.data_window
;
1385 tui_delete_win (gen_win_info
->handle
);
1386 gen_win_info
->handle
= NULL
;
1395 /* Function to make the windows with new heights visible. This means
1396 re-creating the windows' content since the window had to be
1397 destroyed to be made invisible. */
1399 make_visible_with_new_height (struct tui_win_info
*win_info
)
1403 tui_make_visible (&win_info
->generic
);
1404 tui_check_and_display_highlight_if_needed (win_info
);
1405 switch (win_info
->generic
.type
)
1409 tui_free_win_content (win_info
->detail
.source_info
.execution_info
);
1410 tui_make_visible (win_info
->detail
.source_info
.execution_info
);
1411 if (win_info
->generic
.content
!= NULL
)
1413 struct gdbarch
*gdbarch
= win_info
->detail
.source_info
.gdbarch
;
1414 struct tui_line_or_address line_or_addr
;
1415 struct symtab_and_line cursal
1416 = get_current_source_symtab_and_line ();
1418 line_or_addr
= win_info
->detail
.source_info
.start_line_or_addr
;
1419 tui_free_win_content (&win_info
->generic
);
1420 tui_update_source_window (win_info
, gdbarch
,
1421 cursal
.symtab
, line_or_addr
, TRUE
);
1423 else if (deprecated_safe_get_selected_frame () != NULL
)
1425 struct tui_line_or_address line
;
1426 struct symtab_and_line cursal
1427 = get_current_source_symtab_and_line ();
1428 struct frame_info
*frame
= deprecated_safe_get_selected_frame ();
1429 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1431 s
= find_pc_line_symtab (get_frame_pc (frame
));
1432 if (win_info
->generic
.type
== SRC_WIN
)
1434 line
.loa
= LOA_LINE
;
1435 line
.u
.line_no
= cursal
.line
;
1439 line
.loa
= LOA_ADDRESS
;
1440 find_line_pc (s
, cursal
.line
, &line
.u
.addr
);
1442 tui_update_source_window (win_info
, gdbarch
, s
, line
, TRUE
);
1444 if (tui_win_has_locator (win_info
))
1446 tui_make_visible (tui_locator_win_info_ptr ());
1447 tui_show_locator_content ();
1451 tui_display_all_data ();
1455 wresize (TUI_CMD_WIN
->generic
.handle
,
1456 TUI_CMD_WIN
->generic
.height
,
1457 TUI_CMD_WIN
->generic
.width
);
1459 mvwin (TUI_CMD_WIN
->generic
.handle
,
1460 TUI_CMD_WIN
->generic
.origin
.y
,
1461 TUI_CMD_WIN
->generic
.origin
.x
);
1462 wmove (win_info
->generic
.handle
, 0, 0);
1471 new_height_ok (struct tui_win_info
*primary_win_info
,
1474 int ok
= (new_height
< tui_term_height ());
1479 enum tui_layout_type cur_layout
= tui_current_layout ();
1481 diff
= (new_height
- primary_win_info
->generic
.height
) * (-1);
1482 if (cur_layout
== SRC_COMMAND
|| cur_layout
== DISASSEM_COMMAND
)
1484 ok
= ((primary_win_info
->generic
.type
== CMD_WIN
1485 && new_height
<= (tui_term_height () - 4)
1486 && new_height
>= MIN_CMD_WIN_HEIGHT
)
1487 || (primary_win_info
->generic
.type
!= CMD_WIN
1488 && new_height
<= (tui_term_height () - 2)
1489 && new_height
>= MIN_WIN_HEIGHT
));
1491 { /* Check the total height. */
1492 struct tui_win_info
*win_info
;
1494 if (primary_win_info
== TUI_CMD_WIN
)
1495 win_info
= (tui_source_windows ())->list
[0];
1497 win_info
= TUI_CMD_WIN
;
1499 (win_info
->generic
.height
+ diff
)) <= tui_term_height ());
1504 int cur_total_height
, total_height
, min_height
= 0;
1505 struct tui_win_info
*first_win
;
1506 struct tui_win_info
*second_win
;
1508 if (cur_layout
== SRC_DISASSEM_COMMAND
)
1510 first_win
= TUI_SRC_WIN
;
1511 second_win
= TUI_DISASM_WIN
;
1515 first_win
= TUI_DATA_WIN
;
1516 second_win
= (tui_source_windows ())->list
[0];
1518 /* We could simply add all the heights to obtain the same
1519 result but below is more explicit since we subtract 1 for
1520 the line that the first and second windows share, and add
1521 one for the locator. */
1522 total_height
= cur_total_height
=
1523 (first_win
->generic
.height
+ second_win
->generic
.height
- 1)
1524 + TUI_CMD_WIN
->generic
.height
+ 1; /* Locator. */
1525 if (primary_win_info
== TUI_CMD_WIN
)
1527 /* Locator included since first & second win share a line. */
1528 ok
= ((first_win
->generic
.height
+
1529 second_win
->generic
.height
+ diff
) >=
1530 (MIN_WIN_HEIGHT
* 2)
1531 && new_height
>= MIN_CMD_WIN_HEIGHT
);
1534 total_height
= new_height
+
1535 (first_win
->generic
.height
+
1536 second_win
->generic
.height
+ diff
);
1537 min_height
= MIN_CMD_WIN_HEIGHT
;
1542 min_height
= MIN_WIN_HEIGHT
;
1544 /* First see if we can increase/decrease the command
1545 window. And make sure that the command window is at
1547 ok
= ((TUI_CMD_WIN
->generic
.height
+ diff
) > 0);
1549 { /* Looks like we have to increase/decrease one of
1550 the other windows. */
1551 if (primary_win_info
== first_win
)
1552 ok
= (second_win
->generic
.height
+ diff
) >= min_height
;
1554 ok
= (first_win
->generic
.height
+ diff
) >= min_height
;
1558 if (primary_win_info
== first_win
)
1559 total_height
= new_height
+
1560 second_win
->generic
.height
+
1561 TUI_CMD_WIN
->generic
.height
+ diff
;
1563 total_height
= new_height
+
1564 first_win
->generic
.height
+
1565 TUI_CMD_WIN
->generic
.height
+ diff
;
1568 /* Now make sure that the proposed total height doesn't
1569 exceed the old total height. */
1571 ok
= (new_height
>= min_height
1572 && total_height
<= cur_total_height
);
1581 parse_scrolling_args (const char *arg
,
1582 struct tui_win_info
**win_to_scroll
,
1587 *win_to_scroll
= tui_win_with_focus ();
1589 /* First set up the default window to scroll, in case there is no
1595 /* Process the number of lines to scroll. */
1596 std::string copy
= arg
;
1598 if (isdigit (*buf_ptr
))
1603 buf_ptr
= strchr (buf_ptr
, ' ');
1604 if (buf_ptr
!= NULL
)
1606 *buf_ptr
= (char) 0;
1608 *num_to_scroll
= atoi (num_str
);
1611 else if (num_to_scroll
)
1612 *num_to_scroll
= atoi (num_str
);
1615 /* Process the window name if one is specified. */
1616 if (buf_ptr
!= NULL
)
1620 if (*buf_ptr
== ' ')
1621 while (*(++buf_ptr
) == ' ')
1624 if (*buf_ptr
!= (char) 0)
1626 /* Validate the window name. */
1627 for (char *p
= buf_ptr
; *p
!= '\0'; p
++)
1635 *win_to_scroll
= tui_partial_win_by_name (wname
);
1637 if (*win_to_scroll
== (struct tui_win_info
*) NULL
1638 || !(*win_to_scroll
)->generic
.is_visible
)
1639 error (_("Invalid window specified. \n\
1640 The window name specified must be valid and visible.\n"));
1641 else if (*win_to_scroll
== TUI_CMD_WIN
)
1642 *win_to_scroll
= (tui_source_windows ())->list
[0];
1647 /* Function to initialize gdb commands, for tui window
1651 _initialize_tui_win (void)
1653 static struct cmd_list_element
*tui_setlist
;
1654 static struct cmd_list_element
*tui_showlist
;
1655 struct cmd_list_element
*cmd
;
1657 /* Define the classes of commands.
1658 They will appear in the help list in the reverse of this order. */
1659 add_prefix_cmd ("tui", class_tui
, set_tui_cmd
,
1660 _("TUI configuration variables"),
1661 &tui_setlist
, "set tui ",
1662 0 /* allow-unknown */, &setlist
);
1663 add_prefix_cmd ("tui", class_tui
, show_tui_cmd
,
1664 _("TUI configuration variables"),
1665 &tui_showlist
, "show tui ",
1666 0 /* allow-unknown */, &showlist
);
1668 add_com ("refresh", class_tui
, tui_refresh_all_command
,
1669 _("Refresh the terminal display.\n"));
1671 cmd
= add_com ("tabset", class_tui
, tui_set_tab_width_command
, _("\
1672 Set the width (in characters) of tab stops.\n\
1673 Usage: tabset N\n"));
1674 deprecate_cmd (cmd
, "set tui tab-width");
1676 cmd
= add_com ("winheight", class_tui
, tui_set_win_height_command
, _("\
1677 Set or modify the height of a specified window.\n"
1679 "Window names are:\n\
1680 src : the source window\n\
1681 cmd : the command window\n\
1682 asm : the disassembly window\n\
1683 regs : the register display\n"));
1684 add_com_alias ("wh", "winheight", class_tui
, 0);
1685 set_cmd_completer (cmd
, winheight_completer
);
1686 add_info ("win", tui_all_windows_info
,
1687 _("List of all displayed windows.\n"));
1688 cmd
= add_com ("focus", class_tui
, tui_set_focus_command
, _("\
1689 Set focus to named window or next/prev window.\n"
1691 "Valid Window names are:\n\
1692 src : the source window\n\
1693 asm : the disassembly window\n\
1694 regs : the register display\n\
1695 cmd : the command window\n"));
1696 add_com_alias ("fs", "focus", class_tui
, 0);
1697 set_cmd_completer (cmd
, focus_completer
);
1698 add_com ("+", class_tui
, tui_scroll_forward_command
, _("\
1699 Scroll window forward.\n\
1700 Usage: + [WIN] [N]\n"));
1701 add_com ("-", class_tui
, tui_scroll_backward_command
, _("\
1702 Scroll window backward.\n\
1703 Usage: - [WIN] [N]\n"));
1704 add_com ("<", class_tui
, tui_scroll_left_command
, _("\
1705 Scroll window text to the left.\n\
1706 Usage: < [WIN] [N]\n"));
1707 add_com (">", class_tui
, tui_scroll_right_command
, _("\
1708 Scroll window text to the right.\n\
1709 Usage: > [WIN] [N]\n"));
1711 /* Define the tui control variables. */
1712 add_setshow_enum_cmd ("border-kind", no_class
, tui_border_kind_enums
,
1713 &tui_border_kind
, _("\
1714 Set the kind of border for TUI windows."), _("\
1715 Show the kind of border for TUI windows."), _("\
1716 This variable controls the border of TUI windows:\n\
1717 space use a white space\n\
1718 ascii use ascii characters + - | for the border\n\
1719 acs use the Alternate Character Set"),
1721 show_tui_border_kind
,
1722 &tui_setlist
, &tui_showlist
);
1724 add_setshow_enum_cmd ("border-mode", no_class
, tui_border_mode_enums
,
1725 &tui_border_mode
, _("\
1726 Set the attribute mode to use for the TUI window borders."), _("\
1727 Show the attribute mode to use for the TUI window borders."), _("\
1728 This variable controls the attributes to use for the window borders:\n\
1729 normal normal display\n\
1730 standout use highlight mode of terminal\n\
1731 reverse use reverse video mode\n\
1732 half use half bright\n\
1733 half-standout use half bright and standout mode\n\
1734 bold use extra bright or bold\n\
1735 bold-standout use extra bright or bold with standout mode"),
1737 show_tui_border_mode
,
1738 &tui_setlist
, &tui_showlist
);
1740 add_setshow_enum_cmd ("active-border-mode", no_class
, tui_border_mode_enums
,
1741 &tui_active_border_mode
, _("\
1742 Set the attribute mode to use for the active TUI window border."), _("\
1743 Show the attribute mode to use for the active TUI window border."), _("\
1744 This variable controls the attributes to use for the active window border:\n\
1745 normal normal display\n\
1746 standout use highlight mode of terminal\n\
1747 reverse use reverse video mode\n\
1748 half use half bright\n\
1749 half-standout use half bright and standout mode\n\
1750 bold use extra bright or bold\n\
1751 bold-standout use extra bright or bold with standout mode"),
1753 show_tui_active_border_mode
,
1754 &tui_setlist
, &tui_showlist
);
1756 add_setshow_zuinteger_cmd ("tab-width", no_class
,
1757 &internal_tab_width
, _("\
1758 Set the tab width, in characters, for the TUI."), _("\
1759 Show the tab witdh, in characters, for the TUI"), _("\
1760 This variable controls how many spaces are used to display a tab character."),
1761 tui_set_tab_width
, tui_show_tab_width
,
1762 &tui_setlist
, &tui_showlist
);