diff options
author | Tom Tromey <tom@tromey.com> | 2019-07-05 12:13:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-08-13 14:52:09 -0600 |
commit | 62cf57fee7d72d0c2df2be4d999d63ea3bfafa43 (patch) | |
tree | b2e802d94bb244fb4aa6b34bf242c46f519075fb | |
parent | 2afade5dbe1bf99db3f6ab625ca540be030e0e41 (diff) | |
download | fsf-binutils-gdb-62cf57fee7d72d0c2df2be4d999d63ea3bfafa43.zip fsf-binutils-gdb-62cf57fee7d72d0c2df2be4d999d63ea3bfafa43.tar.gz fsf-binutils-gdb-62cf57fee7d72d0c2df2be4d999d63ea3bfafa43.tar.bz2 |
Move current_layout to tui-layout.c
This moves the current_layout global to tui-layout.c. This allows for
the removal of an accessor function; but also it just seems clearer to
have it here.
gdb/ChangeLog
2019-08-13 Tom Tromey <tom@tromey.com>
* tui/tui-layout.c (current_layout, tui_current_layout): Move from
tui-data.c.
(show_source_disasm_command, show_data)
(show_source_or_disasm_and_command): Don't use
tui_set_current_layout_to.
* tui/tui-data.h (tui_set_current_layout_to): Don't declare.
* tui/tui-data.c (current_layout, tui_current_layout): Move to
tui-layout.c.
(tui_set_current_layout_to): Remove.
-rw-r--r-- | gdb/ChangeLog | 12 | ||||
-rw-r--r-- | gdb/tui/tui-data.c | 17 | ||||
-rw-r--r-- | gdb/tui/tui-data.h | 1 | ||||
-rw-r--r-- | gdb/tui/tui-layout.c | 15 |
4 files changed, 24 insertions, 21 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c0429ec..4276b33 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,17 @@ 2019-08-13 Tom Tromey <tom@tromey.com> + * tui/tui-layout.c (current_layout, tui_current_layout): Move from + tui-data.c. + (show_source_disasm_command, show_data) + (show_source_or_disasm_and_command): Don't use + tui_set_current_layout_to. + * tui/tui-data.h (tui_set_current_layout_to): Don't declare. + * tui/tui-data.c (current_layout, tui_current_layout): Move to + tui-layout.c. + (tui_set_current_layout_to): Remove. + +2019-08-13 Tom Tromey <tom@tromey.com> + * tui/tui-layout.c (tui_set_layout): Update. * tui/tui-data.h (struct tui_layout_def): Remove. (tui_layout_def): Don't declare. diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c index af5e509..fd7649b 100644 --- a/gdb/tui/tui-data.c +++ b/gdb/tui/tui-data.c @@ -35,7 +35,6 @@ struct tui_win_info *tui_win_list[MAX_MAJOR_WINDOWS]; /*************************** ** Private data ****************************/ -static enum tui_layout_type current_layout = UNDEFINED_LAYOUT; static int term_height, term_width; static struct tui_locator_window _locator; static std::vector<tui_source_window_base *> source_windows; @@ -170,22 +169,6 @@ tui_set_term_width_to (int w) } -/* Accessor for the current layout. */ -enum tui_layout_type -tui_current_layout (void) -{ - return current_layout; -} - - -/* Mutator for the current layout. */ -void -tui_set_current_layout_to (enum tui_layout_type new_layout) -{ - current_layout = new_layout; -} - - /***************************** ** OTHER PUBLIC FUNCTIONS *****************************/ diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h index 7451810..dbae2fb 100644 --- a/gdb/tui/tui-data.h +++ b/gdb/tui/tui-data.h @@ -382,7 +382,6 @@ struct all_tui_windows extern void tui_initialize_static_data (void); extern struct tui_win_info *tui_partial_win_by_name (const char *); extern enum tui_layout_type tui_current_layout (void); -extern void tui_set_current_layout_to (enum tui_layout_type); extern int tui_term_height (void); extern void tui_set_term_height_to (int); extern int tui_term_width (void); diff --git a/gdb/tui/tui-layout.c b/gdb/tui/tui-layout.c index 93687f3..2b25e7a 100644 --- a/gdb/tui/tui-layout.c +++ b/gdb/tui/tui-layout.c @@ -55,6 +55,15 @@ static void tui_layout_command (const char *, int); static void extract_display_start_addr (struct gdbarch **, CORE_ADDR *); +static enum tui_layout_type current_layout = UNDEFINED_LAYOUT; + +/* Accessor for the current layout. */ +enum tui_layout_type +tui_current_layout (void) +{ + return current_layout; +} + /*************************************** ** DEFINITIONS ***************************************/ @@ -543,7 +552,7 @@ show_source_disasm_command (void) /* FIXME tui_cmd_window won't recreate the handle on make_visible, so we need this instead. */ tui_make_window (TUI_CMD_WIN, DONT_BOX_WINDOW); - tui_set_current_layout_to (SRC_DISASSEM_COMMAND); + current_layout = SRC_DISASSEM_COMMAND; } } @@ -597,7 +606,7 @@ show_data (enum tui_layout_type new_layout) locator->make_visible (true); tui_show_locator_content (); tui_add_to_source_windows (base); - tui_set_current_layout_to (new_layout); + current_layout = new_layout; } void @@ -675,6 +684,6 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type) /* FIXME tui_cmd_window won't recreate the handle on make_visible, so we need this instead. */ tui_make_window (TUI_CMD_WIN, DONT_BOX_WINDOW); - tui_set_current_layout_to (layout_type); + current_layout = layout_type; } } |