From 1403b519de59bafc12b3a9e45cb074a48aabb97e Mon Sep 17 00:00:00 2001 From: Stephane Carrez Date: Sat, 21 Jul 2001 22:24:44 +0000 Subject: [PATCH] * tui.h (tui_show_assembly): Declare. (tui_is_window_visible): Declare. * tui.c (tui_show_assembly): New function. (tui_is_window_visible): New function. (tui_get_command_dimension): New function. --- gdb/tui/ChangeLog | 8 ++++++++ gdb/tui/tui.c | 32 ++++++++++++++++++++++++++++++++ gdb/tui/tui.h | 3 +++ 3 files changed, 43 insertions(+) diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog index f34da3deaf..f00e8389ce 100644 --- a/gdb/tui/ChangeLog +++ b/gdb/tui/ChangeLog @@ -1,3 +1,11 @@ +2001-07-22 Stephane Carrez + + * tui.h (tui_show_assembly): Declare. + (tui_is_window_visible): Declare. + * tui.c (tui_show_assembly): New function. + (tui_is_window_visible): New function. + (tui_get_command_dimension): New function. + 2001-07-21 Stephane Carrez * tuiWin.c (tuiRefreshAll): Use clearok to force a refresh. diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 370afb43be..6c1dea0d1e 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -385,3 +385,35 @@ _tuiReset (void) } /* _tuiReset */ #endif + +void +tui_show_assembly (CORE_ADDR addr) +{ + tuiAddWinToLayout (DISASSEM_WIN); + tuiUpdateSourceWindowsWithAddr (addr); +} + +int +tui_is_window_visible (TuiWinType type) +{ + if (tui_version == 0) + return 0; + + if (winList[type] == 0) + return 0; + + return winList[type]->generic.isVisible; +} + +int +tui_get_command_dimension (int *width, int *height) +{ + if (!tui_version || !m_winPtrNotNull (cmdWin)) + { + return 0; + } + + *width = cmdWin->generic.width; + *height = cmdWin->generic.height; + return 1; +} diff --git a/gdb/tui/tui.h b/gdb/tui/tui.h index afcbe8a932..c26802bc6a 100644 --- a/gdb/tui/tui.h +++ b/gdb/tui/tui.h @@ -92,6 +92,9 @@ TuiPoint, *TuiPointPtr; /* tui.c */ extern void tuiFree (char *); extern CORE_ADDR tuiGetLowDisassemblyAddress (CORE_ADDR, CORE_ADDR); +extern void tui_show_assembly (CORE_ADDR addr); +extern int tui_is_window_visible (TuiWinType type); +extern int tui_get_command_dimension (int *width, int *height); /* Initialize readline and configure the keymap for the switching key shortcut. */ -- 2.34.1